@asyncapi/generator 2.3.0 → 2.4.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @asyncapi/generator
2
2
 
3
+ ## 2.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3a372c4: Removed the source-map-support package from the AsyncAPI Generator, as it is no longer required for version 2, which now supports Node.js version 18.12.0 and above.
8
+
9
+ ## 2.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 46114d8: Add `compile` option to enable rerun of transpilation of templates build with react engine. It is set to `true` by default. In future major releases it will be set to `false` and we will explain how to publish template to include transpilation files by default. Transpiled files are already included in [`html-template`](https://github.com/asyncapi/html-template/pull/575). It means that you can run generator for `html-template` (it's latest version) with `compile=false` and this will improve the speed of HTML generation for you.
14
+
3
15
  ## 2.3.0
4
16
 
5
17
  ### Minor Changes
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ Generator is a tool that you can use to generate whatever you want basing on the AsyncAPI specification file as an input. For more information [read the docs](https://www.asyncapi.com/docs/tools/generator).
2
+
3
+ There is a large number of templates that are ready to use and are officially supported by the AsyncAPI Initiative.
4
+
5
+ ## List of official generator templates
6
+
7
+ <!-- templates list is validated with GitHub Actions do not remove list markers -->
8
+ <!-- TEMPLATES-LIST:START -->
9
+
10
+ | Template Name | Description | Source code |
11
+ | --------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------------------- |
12
+ | `@asyncapi/nodejs-template` | Generates Nodejs service that uses Hermes package | [click here](https://github.com/asyncapi/nodejs-template) |
13
+ | `@asyncapi/nodejs-ws-template` | Generates Nodejs service that supports WebSockets protocol only | [click here](https://github.com/asyncapi/nodejs-ws-template) |
14
+ | `@asyncapi/java-template` | Generates Java JMS application | [click here](https://github.com/asyncapi/java-template) |
15
+ | `@asyncapi/java-spring-template` | Generates Java Spring service | [click here](https://github.com/asyncapi/java-spring-template) |
16
+ | `@asyncapi/java-spring-cloud-stream-template` | Generates Java Spring Cloud Stream service | [click here](https://github.com/asyncapi/java-spring-cloud-stream-template) |
17
+ | `@asyncapi/python-paho-template` | Generates Python service that uses Paho library | [click here](https://github.com/asyncapi/python-paho-template) |
18
+ | `@asyncapi/html-template` | Generates HTML documentation site | [click here](https://github.com/asyncapi/html-template) |
19
+ | `@asyncapi/markdown-template` | Generates documentation in Markdown file | [click here](https://github.com/asyncapi/markdown-template) |
20
+ | `@asyncapi/ts-nats-template` | Generates TypeScript NATS client | [click here](https://github.com/asyncapi/ts-nats-template/) |
21
+ | `@asyncapi/go-watermill-template` | Generates Go client using Watermill | [click here](https://github.com/asyncapi/go-watermill-template) |
22
+ | `@asyncapi/dotnet-nats-template` | Generates .NET C# client using NATS | [click here](https://github.com/asyncapi/dotnet-nats-template) |
23
+ | `@asyncapi/php-template` | Generates PHP client using RabbitMQ | [click here](https://github.com/asyncapi/php-template) |
24
+ | `@asyncapi/dotnet-rabbitmq-template` | Generates .NET C# client using RabbitMQ | [click here](https://github.com/asyncapi/dotnet-rabbitmq-template) |
25
+
26
+ <!-- TEMPLATES-LIST:END -->
27
+
28
+ You can find above templates and the ones provided by the community in **[this list](https://github.com/search?q=topic%3Aasyncapi+topic%3Agenerator+topic%3Atemplate)**
package/lib/generator.js CHANGED
@@ -27,7 +27,6 @@ const {
27
27
  fetchSpec,
28
28
  isReactTemplate,
29
29
  isJsFile,
30
- registerSourceMap,
31
30
  getTemplateDetails,
32
31
  convertCollectionToObject,
33
32
  } = require('./utils');
@@ -47,7 +46,7 @@ const DEFAULT_TEMPLATES_DIR = path.resolve(ROOT_DIR, 'node_modules');
47
46
 
48
47
  const TRANSPILED_TEMPLATE_LOCATION = '__transpiled';
49
48
  const TEMPLATE_CONTENT_DIRNAME = 'template';
50
- const GENERATOR_OPTIONS = ['debug', 'disabledHooks', 'entrypoint', 'forceWrite', 'install', 'noOverwriteGlobs', 'output', 'templateParams', 'mapBaseUrlToFolder', 'url', 'auth', 'token', 'registry'];
49
+ const GENERATOR_OPTIONS = ['debug', 'disabledHooks', 'entrypoint', 'forceWrite', 'install', 'noOverwriteGlobs', 'output', 'templateParams', 'mapBaseUrlToFolder', 'url', 'auth', 'token', 'registry', 'compile'];
51
50
  const logMessage = require('./logMessages');
52
51
 
53
52
  const shouldIgnoreFile = filePath =>
@@ -57,8 +56,6 @@ const shouldIgnoreDir = dirPath =>
57
56
  dirPath === '.git'
58
57
  || dirPath.startsWith(`.git${path.sep}`);
59
58
 
60
- registerSourceMap();
61
-
62
59
  class Generator {
63
60
  /**
64
61
  * Instantiates a new Generator object.
@@ -86,6 +83,7 @@ class Generator {
86
83
  * @param {Boolean} [options.forceWrite=false] Force writing of the generated files to given directory even if it is a git repo with unstaged files or not empty dir. Default is set to false.
87
84
  * @param {Boolean} [options.install=false] Install the template and its dependencies, even when the template has already been installed.
88
85
  * @param {Boolean} [options.debug=false] Enable more specific errors in the console. At the moment it only shows specific errors about filters. Keep in mind that as a result errors about template are less descriptive.
86
+ * @param {Boolean} [options.compile=true] Whether to compile the template or use the cached transpiled version provided by template in '__transpiled' folder
89
87
  * @param {Object<String, String>} [options.mapBaseUrlToFolder] Optional parameter to map schema references from a base url to a local base folder e.g. url=https://schema.example.com/crm/ folder=./test/docs/ .
90
88
  * @param {Object} [options.registry] Optional parameter with private registry configuration
91
89
  * @param {String} [options.registry.url] Parameter to pass npm registry url
@@ -93,13 +91,14 @@ class Generator {
93
91
  * @param {String} [options.registry.token] Optional parameter to pass npm registry auth token that you can grab from .npmrc file
94
92
  */
95
93
 
96
- constructor(templateName, targetDir, { templateParams = {}, entrypoint, noOverwriteGlobs, disabledHooks, output = 'fs', forceWrite = false, install = false, debug = false, mapBaseUrlToFolder = {}, registry = {}} = {}) {
94
+ constructor(templateName, targetDir, { templateParams = {}, entrypoint, noOverwriteGlobs, disabledHooks, output = 'fs', forceWrite = false, install = false, debug = false, mapBaseUrlToFolder = {}, registry = {}, compile = true } = {}) {
97
95
  const options = arguments[arguments.length - 1];
98
96
  this.verifyoptions(options);
99
97
  if (!templateName) throw new Error('No template name has been specified.');
100
98
  if (!entrypoint && !targetDir) throw new Error('No target directory has been specified.');
101
99
  if (!['fs', 'string'].includes(output)) throw new Error(`Invalid output type ${output}. Valid values are 'fs' and 'string'.`);
102
-
100
+ /** @type {Boolean} Whether to compile the template or use the cached transpiled version provided by template in '__transpiled' folder. */
101
+ this.compile = compile;
103
102
  /** @type {Object} Npm registry information. */
104
103
  this.registry = registry;
105
104
  /** @type {String} Name of the template to generate. */
@@ -393,7 +392,7 @@ class Generator {
393
392
  * Configure the templates based the desired renderer.
394
393
  */
395
394
  async configureTemplate() {
396
- if (isReactTemplate(this.templateConfig)) {
395
+ if (isReactTemplate(this.templateConfig) && this.compile) {
397
396
  await configureReact(this.templateDir, this.templateContentDir, TRANSPILED_TEMPLATE_LOCATION);
398
397
  } else {
399
398
  this.nunjucks = configureNunjucks(this.debug, this.templateDir);
@@ -46,6 +46,10 @@ function conditionalFilesMatched(relativeSourceFile) {
46
46
  return `${relativeSourceFile} was not generated because condition specified for this file in template configuration in conditionalFiles matched.`;
47
47
  }
48
48
 
49
+ function compileEnabled(dir, output_dir) {
50
+ return `Transpilation of files ${dir} into ${output_dir} started.`;
51
+ }
52
+
49
53
  module.exports = {
50
54
  TEMPLATE_INSTALL_FLAG_MSG,
51
55
  TEMPLATE_INSTALL_DISK_MSG,
@@ -59,5 +63,6 @@ module.exports = {
59
63
  templateSuccessfullyInstalled,
60
64
  relativeSourceFileNotGenerated,
61
65
  conditionalFilesMatched,
66
+ compileEnabled,
62
67
  skipOverwrite
63
68
  };
package/lib/parser.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const fs = require('fs');
2
2
  const { convertToOldAPI } = require('@asyncapi/parser');
3
- const { ConvertDocumentParserAPIVersion, NewParser } = require('@smoya/multi-parser');
3
+ const { ConvertDocumentParserAPIVersion, NewParser } = require('@asyncapi/multi-parser');
4
4
 
5
5
  const parser = module.exports;
6
6
 
@@ -16,9 +16,11 @@ const reactExport = module.exports;
16
16
  * @param {string} templateLocation located for thetemplate
17
17
  * @param {string} templateContentDir where the template content are located
18
18
  * @param {string} transpiledTemplateLocation folder for the transpiled code
19
+ * @param {Boolean} compile Whether to compile the template files or used the cached transpiled version provided by the template in the '__transpiled' folder
19
20
  */
20
21
  reactExport.configureReact = async (templateLocation, templateContentDir, transpiledTemplateLocation) => {
21
22
  const outputDir = path.resolve(templateLocation, `./${transpiledTemplateLocation}`);
23
+ log.debug(logMessage.compileEnabled(templateContentDir, outputDir));
22
24
  await AsyncReactSDK.transpileFiles(templateContentDir, outputDir, {
23
25
  recursive: true
24
26
  });
package/lib/utils.js CHANGED
@@ -134,16 +134,6 @@ utils.isAsyncFunction = (fn) => {
134
134
  return fn && fn.constructor && fn.constructor.name === 'AsyncFunction';
135
135
  };
136
136
 
137
- /**
138
- * Register `source-map-support` package.
139
- * This package provides source map support for stack traces in Node - also for transpiled code from TS.
140
- *
141
- * @private
142
- */
143
- utils.registerSourceMap = () => {
144
- require('source-map-support').install();
145
- };
146
-
147
137
  /**
148
138
  * Register TypeScript transpiler. It enables transpilation of TS filters and hooks on the fly.
149
139
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asyncapi/generator",
3
- "version": "2.3.0",
3
+ "version": "2.4.1",
4
4
  "description": "The AsyncAPI generator. It can generate documentation, code, anything!",
5
5
  "main": "./lib/generator.js",
6
6
  "bin": {
@@ -49,11 +49,12 @@
49
49
  "license": "Apache-2.0",
50
50
  "homepage": "https://github.com/asyncapi/generator",
51
51
  "dependencies": {
52
+ "@asyncapi/generator-react-sdk": "^1.1.1",
53
+ "@asyncapi/multi-parser": "^2.1.1",
54
+ "@asyncapi/nunjucks-filters": "*",
55
+ "@asyncapi/parser": "^3.0.14",
52
56
  "@npmcli/arborist": "5.6.3",
53
57
  "@npmcli/config": "^8.0.2",
54
- "@asyncapi/generator-react-sdk": "^1.0.18",
55
- "@asyncapi/parser": "^3.0.14",
56
- "@smoya/multi-parser": "^5.0.0",
57
58
  "ajv": "^8.12.0",
58
59
  "chokidar": "^3.4.0",
59
60
  "commander": "^6.1.0",
@@ -72,20 +73,19 @@
72
73
  "resolve-pkg": "^2.0.0",
73
74
  "semver": "^7.3.2",
74
75
  "simple-git": "^3.3.0",
75
- "source-map-support": "^0.5.19",
76
76
  "ts-node": "^10.9.1",
77
- "typescript": "^4.9.3",
78
- "@asyncapi/nunjucks-filters": "*"
77
+ "typescript": "^4.9.3"
79
78
  },
80
79
  "devDependencies": {
81
80
  "eslint": "^6.8.0",
82
81
  "eslint-plugin-jest": "^23.8.2",
83
- "eslint-plugin-sonarjs": "^0.5.0",
84
82
  "eslint-plugin-react": "^7.34.1",
83
+ "eslint-plugin-sonarjs": "^0.5.0",
85
84
  "jest": "^27.3.1",
86
85
  "jsdoc-to-markdown": "^7.1.1",
87
86
  "markdown-toc": "^1.2.0",
88
87
  "rimraf": "^3.0.2",
89
- "unixify": "^1.0.0"
88
+ "unixify": "^1.0.0",
89
+ "fs-extra": "9.1.0"
90
90
  }
91
91
  }
@@ -26,6 +26,7 @@ describe('Generator', () => {
26
26
  expect(gen.forceWrite).toStrictEqual(false);
27
27
  expect(gen.install).toStrictEqual(false);
28
28
  expect(gen.templateParams).toStrictEqual({});
29
+ expect(gen.compile).toStrictEqual(true);
29
30
  });
30
31
 
31
32
  it('works with all the params', () => {
@@ -39,6 +40,7 @@ describe('Generator', () => {
39
40
  templateParams: {
40
41
  test: true,
41
42
  },
43
+ compile: false,
42
44
  });
43
45
  expect(gen.templateName).toStrictEqual('testTemplate');
44
46
  expect(gen.targetDir).toStrictEqual(__dirname);
@@ -48,6 +50,7 @@ describe('Generator', () => {
48
50
  expect(gen.output).toStrictEqual('string');
49
51
  expect(gen.forceWrite).toStrictEqual(true);
50
52
  expect(gen.install).toStrictEqual(true);
53
+ expect(gen.compile).toStrictEqual(false);
51
54
  expect(() => gen.templateParams.test).toThrow('Template parameter "test" has not been defined in the package.json file under generator property. Please make sure it\'s listed there before you use it in your template.');
52
55
 
53
56
  // Mock params on templateConfig so it doesn't fail.
@@ -2,8 +2,9 @@
2
2
  * @jest-environment node
3
3
  */
4
4
 
5
- const { mkdir, writeFile, readFile } = require('fs').promises;
6
5
  const path = require('path');
6
+ const { readFile, writeFile, access, mkdir } = require('fs').promises;
7
+ const { copy } = require('fs-extra');
7
8
  const Generator = require('../lib/generator');
8
9
  const dummySpecPath = path.resolve(__dirname, './docs/dummy.yml');
9
10
  const refSpecPath = path.resolve(__dirname, './docs/apiwithref.json');
@@ -12,6 +13,8 @@ const crypto = require('crypto');
12
13
  const mainTestResultPath = 'test/temp/integrationTestResult';
13
14
  const reactTemplate = 'test/test-templates/react-template';
14
15
  const nunjucksTemplate = 'test/test-templates/nunjucks-template';
16
+ //temp location where react template is copied for each test that does some mutation on template files
17
+ const copyOfReactTemplate = 'test/temp/reactTemplate';
15
18
 
16
19
  describe('Integration testing generateFromFile() to make sure the result of the generation is not changend comparing to snapshot', () => {
17
20
  const generateFolderName = () => {
@@ -19,9 +22,28 @@ describe('Integration testing generateFromFile() to make sure the result of the
19
22
  return path.resolve(mainTestResultPath, crypto.randomBytes(4).toString('hex'));
20
23
  };
21
24
 
22
- jest.setTimeout(60000);
25
+ const getCleanReactTemplate = async () => {
26
+ //for each test new react template is needed in unique location
27
+ const newReactTemplateLocation = path.resolve(copyOfReactTemplate, crypto.randomBytes(4).toString('hex'));
28
+ await copy(reactTemplate, newReactTemplateLocation);
29
+ return newReactTemplateLocation;
30
+ };
31
+
32
+ jest.setTimeout(100000);
23
33
  const testOutputFile = 'test-file.md';
24
34
 
35
+ const tempJsContent = `
36
+ import { File, Text } from '@asyncapi/generator-react-sdk';
37
+
38
+ export default function() {
39
+ return (
40
+ <File name="temp.md">
41
+ <Text>Test</Text>
42
+ </File>
43
+ );
44
+ }
45
+ `;
46
+
25
47
  it('generated using Nunjucks template', async () => {
26
48
  const outputDir = generateFolderName();
27
49
  const generator = new Generator(nunjucksTemplate, outputDir, {
@@ -56,8 +78,52 @@ describe('Integration testing generateFromFile() to make sure the result of the
56
78
  expect(file).toMatchSnapshot();
57
79
  });
58
80
 
81
+ it('check if the temp.md file is created with compile option true', async () => {
82
+ const outputDir = generateFolderName();
83
+ const cleanReactTemplate = await getCleanReactTemplate();
84
+ // Create temp.md.js file dynamically
85
+
86
+ const tempJsPath = path.join(cleanReactTemplate, 'template/temp.md.js');
87
+ // Create temp.md.js file dynamically
88
+ await writeFile(tempJsPath, tempJsContent);
89
+
90
+ const generator = new Generator(cleanReactTemplate, outputDir, {
91
+ forceWrite: true,
92
+ compile: true,
93
+ debug: true,
94
+ });
95
+ await generator.generateFromFile(dummySpecPath);
96
+
97
+ const tempMdPath = path.join(outputDir, 'temp.md');
98
+
99
+ // Check the content of temp.md
100
+ const tempMdContent = await readFile(tempMdPath, 'utf8');
101
+ expect(tempMdContent.trim()).toBe('Test');
102
+ });
103
+
104
+ it('check if the temp.md file is not created when compile option is false', async () => {
105
+ const outputDir = generateFolderName();
106
+ const cleanReactTemplate = await getCleanReactTemplate();
107
+ // Create temp.md.js file dynamically
108
+ const tempJsPath = path.join(cleanReactTemplate, 'template/temp.md.js');
109
+ await writeFile(tempJsPath, tempJsContent);
110
+
111
+ const generator = new Generator(cleanReactTemplate, outputDir, {
112
+ forceWrite: true,
113
+ compile: false,
114
+ debug: true
115
+ });
116
+ await generator.generateFromFile(dummySpecPath);
117
+
118
+ // Check if temp.md is not created in the output directory
119
+ const tempMdPath = path.join(outputDir, 'temp.md');
120
+ const tempMdExists = await access(tempMdPath).then(() => true).catch(() => false);
121
+ expect(tempMdExists).toBe(false);
122
+ });
123
+
59
124
  it('should ignore specified files with noOverwriteGlobs', async () => {
60
125
  const outputDir = generateFolderName();
126
+ const cleanReactTemplate = await getCleanReactTemplate();
61
127
  // Manually create a file to test if it's not overwritten
62
128
  await mkdir(outputDir, { recursive: true });
63
129
  // Create a variable to store the file content
@@ -67,7 +133,7 @@ describe('Integration testing generateFromFile() to make sure the result of the
67
133
  await writeFile(testFilePath, testContent);
68
134
 
69
135
  // Manually create an output first, before generation, with additional custom file to validate if later it is still there, not overwritten
70
- const generator = new Generator(reactTemplate, outputDir, {
136
+ const generator = new Generator(cleanReactTemplate, outputDir, {
71
137
  forceWrite: true,
72
138
  noOverwriteGlobs: [`**/${testOutputFile}`],
73
139
  debug: true,
@@ -41,7 +41,7 @@ describe('Testing if markdown was generated with proper version of the template'
41
41
  it('Test B - generated markdown should contain new content because of explicit fresh installation of different template version (install: true)', async () => {
42
42
  const templateVersion = '0.0.2';
43
43
 
44
- const generator = new Generator(`${templateName}@${templateVersion}`, tempOutputResults, { forceWrite: true, install: true, debug: true, templateParams: { version: 'v1', mode: 'production' } });
44
+ const generator = new Generator(`${templateName}@${templateVersion}`, tempOutputResults, { compile: true, forceWrite: true, install: true, debug: true, templateParams: { version: 'v1', mode: 'production' } });
45
45
  await generator.generateFromFile(dummySpecPath);
46
46
 
47
47
  const file = await readFile(path.join(tempOutputResults, fileToCheck), 'utf8');
@@ -95,4 +95,4 @@ describe('Testing if markdown was generated with proper version of the template'
95
95
  expect(console.log).toHaveBeenCalledWith(logMessage.templateVersion(version));
96
96
  expect(console.log).toHaveBeenCalledWith(logMessage.NPM_INSTALL_TRIGGER);
97
97
  });
98
- });
98
+ });
@@ -16,6 +16,7 @@ describe('Integration testing generateFromFile() to make sure the template can b
16
16
  it('generated using private registory', async () => {
17
17
  const generator = new Generator('react-template', tempOutputResults,
18
18
  {
19
+ compile: true,
19
20
  debug: true,
20
21
  install: true,
21
22
  forceWrite: true,
@@ -41,6 +42,7 @@ describe('Integration testing generateFromFile() to make sure the template can b
41
42
  it('generated using private registory from npm config', async () => {
42
43
  const generator = new Generator('react-template', tempOutputResults,
43
44
  {
45
+ compile: true,
44
46
  debug: true,
45
47
  install: true,
46
48
  forceWrite: true,
@@ -8,7 +8,7 @@
8
8
  "name": "nunjucks-template",
9
9
  "version": "0.0.1",
10
10
  "dependencies": {
11
- "@asyncapi/generator-react-sdk": "^1.0.19"
11
+ "@asyncapi/generator-react-sdk": "^1.1.1"
12
12
  }
13
13
  },
14
14
  "node_modules/@ampproject/remapping": {
@@ -25,11 +25,11 @@
25
25
  }
26
26
  },
27
27
  "node_modules/@asyncapi/generator-react-sdk": {
28
- "version": "1.0.19",
29
- "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.19.tgz",
30
- "integrity": "sha512-J+uj7pptc8IUg4RLNWwoTB0AizYGKSbTjcN87BU3Ck8TwGxIuSRuk7Dz/SX0I/6bX0PWgZN8snsahBQ3j4HXYA==",
28
+ "version": "1.1.1",
29
+ "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.1.1.tgz",
30
+ "integrity": "sha512-R86Xa20wLtzI4fVf9HECR+UCSYvNE1B4WZs3eI5jAvGtONBTFOvkixd4SUL+uLP4DP96pU2DuKhih/PQbmMneQ==",
31
31
  "dependencies": {
32
- "@asyncapi/parser": "^3.0.15",
32
+ "@asyncapi/parser": "^3.1.0",
33
33
  "@babel/core": "7.12.9",
34
34
  "@babel/preset-env": "^7.12.7",
35
35
  "@babel/preset-react": "^7.12.7",
@@ -93,23 +93,23 @@
93
93
  }
94
94
  },
95
95
  "node_modules/@asyncapi/parser": {
96
- "version": "3.0.15",
97
- "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.15.tgz",
98
- "integrity": "sha512-tP4O6c9jM8pKimg8kw3+/SdPAKJQWPmYozO6ZFJB5ziVtsr3Z8Qe06V13QcBOg4LzIWAwontyG5lZ5jnyvuDPQ==",
96
+ "version": "3.2.2",
97
+ "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.2.2.tgz",
98
+ "integrity": "sha512-ved4ja3ANs6BcRhWLbK/A7JIhJyMQBYdV1GZwo6Ptf+qBkGIdvV3dt8M4T6TZqtIbUI2NOvmO2YUqtaPWTudgA==",
99
99
  "dependencies": {
100
100
  "@asyncapi/specs": "^6.6.0",
101
101
  "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0",
102
- "@stoplight/json": "^3.20.2",
102
+ "@stoplight/json": "3.21.0",
103
103
  "@stoplight/json-ref-readers": "^1.2.2",
104
104
  "@stoplight/json-ref-resolver": "^3.1.5",
105
- "@stoplight/spectral-core": "^1.16.1",
105
+ "@stoplight/spectral-core": "^1.18.3",
106
106
  "@stoplight/spectral-functions": "^1.7.2",
107
107
  "@stoplight/spectral-parsers": "^1.0.2",
108
108
  "@stoplight/spectral-ref-resolver": "^1.0.3",
109
109
  "@stoplight/types": "^13.12.0",
110
110
  "@types/json-schema": "^7.0.11",
111
111
  "@types/urijs": "^1.19.19",
112
- "ajv": "^8.11.0",
112
+ "ajv": "^8.17.1",
113
113
  "ajv-errors": "^3.0.0",
114
114
  "ajv-formats": "^2.1.1",
115
115
  "avsc": "^5.7.5",
@@ -2055,9 +2055,9 @@
2055
2055
  "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
2056
2056
  },
2057
2057
  "node_modules/@stoplight/spectral-functions": {
2058
- "version": "1.7.2",
2059
- "resolved": "https://registry.npmjs.org/@stoplight/spectral-functions/-/spectral-functions-1.7.2.tgz",
2060
- "integrity": "sha512-f+61/FtIkQeIo+a269CeaeqjpyRsgDyIk6DGr7iS4hyuk1PPk7Uf6MNRDs9FEIBh7CpdEJ+HSHbMLwgpymWTIw==",
2058
+ "version": "1.8.0",
2059
+ "resolved": "https://registry.npmjs.org/@stoplight/spectral-functions/-/spectral-functions-1.8.0.tgz",
2060
+ "integrity": "sha512-ZrAkYA/ZGbuQ6EyG1gisF4yQ5nWP/+glcqVoGmS6kH6ekaynz2Yp6FL0oIamWj3rWedFUN7ppwTRUdo+9f/uCw==",
2061
2061
  "dependencies": {
2062
2062
  "@stoplight/better-ajv-errors": "1.0.3",
2063
2063
  "@stoplight/json": "^3.17.1",
@@ -2232,11 +2232,11 @@
2232
2232
  "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
2233
2233
  },
2234
2234
  "node_modules/@types/node": {
2235
- "version": "20.14.2",
2236
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz",
2237
- "integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
2235
+ "version": "22.2.0",
2236
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.2.0.tgz",
2237
+ "integrity": "sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==",
2238
2238
  "dependencies": {
2239
- "undici-types": "~5.26.4"
2239
+ "undici-types": "~6.13.0"
2240
2240
  }
2241
2241
  },
2242
2242
  "node_modules/@types/urijs": {
@@ -2256,14 +2256,14 @@
2256
2256
  }
2257
2257
  },
2258
2258
  "node_modules/ajv": {
2259
- "version": "8.16.0",
2260
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz",
2261
- "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==",
2259
+ "version": "8.17.1",
2260
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
2261
+ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
2262
2262
  "dependencies": {
2263
2263
  "fast-deep-equal": "^3.1.3",
2264
+ "fast-uri": "^3.0.1",
2264
2265
  "json-schema-traverse": "^1.0.0",
2265
- "require-from-string": "^2.0.2",
2266
- "uri-js": "^4.4.1"
2266
+ "require-from-string": "^2.0.2"
2267
2267
  },
2268
2268
  "funding": {
2269
2269
  "type": "github",
@@ -2864,6 +2864,11 @@
2864
2864
  "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
2865
2865
  "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="
2866
2866
  },
2867
+ "node_modules/fast-uri": {
2868
+ "version": "3.0.1",
2869
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz",
2870
+ "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw=="
2871
+ },
2867
2872
  "node_modules/for-each": {
2868
2873
  "version": "0.3.3",
2869
2874
  "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
@@ -3310,9 +3315,9 @@
3310
3315
  }
3311
3316
  },
3312
3317
  "node_modules/jsep": {
3313
- "version": "1.3.8",
3314
- "resolved": "https://registry.npmjs.org/jsep/-/jsep-1.3.8.tgz",
3315
- "integrity": "sha512-qofGylTGgYj9gZFsHuyWAN4jr35eJ66qJCK4eKDnldohuUoQFbU3iZn2zjvEbd9wOAhP9Wx5DsAAduTyE1PSWQ==",
3318
+ "version": "1.3.9",
3319
+ "resolved": "https://registry.npmjs.org/jsep/-/jsep-1.3.9.tgz",
3320
+ "integrity": "sha512-i1rBX5N7VPl0eYb6+mHNp52sEuaS2Wi8CDYx1X5sn9naevL78+265XJqy1qENEk7mRKwS06NHpUqiBwR7qeodw==",
3316
3321
  "engines": {
3317
3322
  "node": ">= 10.16.0"
3318
3323
  }
@@ -3483,9 +3488,12 @@
3483
3488
  }
3484
3489
  },
3485
3490
  "node_modules/object-inspect": {
3486
- "version": "1.13.1",
3487
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
3488
- "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
3491
+ "version": "1.13.2",
3492
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz",
3493
+ "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==",
3494
+ "engines": {
3495
+ "node": ">= 0.4"
3496
+ },
3489
3497
  "funding": {
3490
3498
  "url": "https://github.com/sponsors/ljharb"
3491
3499
  }
@@ -3562,14 +3570,6 @@
3562
3570
  "react-is": "^16.13.1"
3563
3571
  }
3564
3572
  },
3565
- "node_modules/punycode": {
3566
- "version": "2.3.1",
3567
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3568
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3569
- "engines": {
3570
- "node": ">=6"
3571
- }
3572
- },
3573
3573
  "node_modules/react": {
3574
3574
  "version": "17.0.2",
3575
3575
  "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
@@ -3997,9 +3997,9 @@
3997
3997
  }
3998
3998
  },
3999
3999
  "node_modules/undici-types": {
4000
- "version": "5.26.5",
4001
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
4002
- "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
4000
+ "version": "6.13.0",
4001
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz",
4002
+ "integrity": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg=="
4003
4003
  },
4004
4004
  "node_modules/unicode-canonical-property-names-ecmascript": {
4005
4005
  "version": "2.0.0",
@@ -4066,14 +4066,6 @@
4066
4066
  "browserslist": ">= 4.21.0"
4067
4067
  }
4068
4068
  },
4069
- "node_modules/uri-js": {
4070
- "version": "4.4.1",
4071
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4072
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4073
- "dependencies": {
4074
- "punycode": "^2.1.0"
4075
- }
4076
- },
4077
4069
  "node_modules/urijs": {
4078
4070
  "version": "1.19.11",
4079
4071
  "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz",
@@ -16,6 +16,6 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "@asyncapi/generator-react-sdk": "^1.0.19"
19
+ "@asyncapi/generator-react-sdk": "^1.1.1"
20
20
  }
21
21
  }
@@ -8,7 +8,7 @@
8
8
  "name": "react-template",
9
9
  "version": "0.0.1",
10
10
  "dependencies": {
11
- "@asyncapi/generator-react-sdk": "^1.0.19"
11
+ "@asyncapi/generator-react-sdk": "^1.1.1"
12
12
  }
13
13
  },
14
14
  "node_modules/@ampproject/remapping": {
@@ -25,11 +25,11 @@
25
25
  }
26
26
  },
27
27
  "node_modules/@asyncapi/generator-react-sdk": {
28
- "version": "1.0.19",
29
- "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.19.tgz",
30
- "integrity": "sha512-J+uj7pptc8IUg4RLNWwoTB0AizYGKSbTjcN87BU3Ck8TwGxIuSRuk7Dz/SX0I/6bX0PWgZN8snsahBQ3j4HXYA==",
28
+ "version": "1.1.1",
29
+ "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.1.1.tgz",
30
+ "integrity": "sha512-R86Xa20wLtzI4fVf9HECR+UCSYvNE1B4WZs3eI5jAvGtONBTFOvkixd4SUL+uLP4DP96pU2DuKhih/PQbmMneQ==",
31
31
  "dependencies": {
32
- "@asyncapi/parser": "^3.0.15",
32
+ "@asyncapi/parser": "^3.1.0",
33
33
  "@babel/core": "7.12.9",
34
34
  "@babel/preset-env": "^7.12.7",
35
35
  "@babel/preset-react": "^7.12.7",
@@ -93,23 +93,23 @@
93
93
  }
94
94
  },
95
95
  "node_modules/@asyncapi/parser": {
96
- "version": "3.0.15",
97
- "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.15.tgz",
98
- "integrity": "sha512-tP4O6c9jM8pKimg8kw3+/SdPAKJQWPmYozO6ZFJB5ziVtsr3Z8Qe06V13QcBOg4LzIWAwontyG5lZ5jnyvuDPQ==",
96
+ "version": "3.2.2",
97
+ "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.2.2.tgz",
98
+ "integrity": "sha512-ved4ja3ANs6BcRhWLbK/A7JIhJyMQBYdV1GZwo6Ptf+qBkGIdvV3dt8M4T6TZqtIbUI2NOvmO2YUqtaPWTudgA==",
99
99
  "dependencies": {
100
100
  "@asyncapi/specs": "^6.6.0",
101
101
  "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0",
102
- "@stoplight/json": "^3.20.2",
102
+ "@stoplight/json": "3.21.0",
103
103
  "@stoplight/json-ref-readers": "^1.2.2",
104
104
  "@stoplight/json-ref-resolver": "^3.1.5",
105
- "@stoplight/spectral-core": "^1.16.1",
105
+ "@stoplight/spectral-core": "^1.18.3",
106
106
  "@stoplight/spectral-functions": "^1.7.2",
107
107
  "@stoplight/spectral-parsers": "^1.0.2",
108
108
  "@stoplight/spectral-ref-resolver": "^1.0.3",
109
109
  "@stoplight/types": "^13.12.0",
110
110
  "@types/json-schema": "^7.0.11",
111
111
  "@types/urijs": "^1.19.19",
112
- "ajv": "^8.11.0",
112
+ "ajv": "^8.17.1",
113
113
  "ajv-errors": "^3.0.0",
114
114
  "ajv-formats": "^2.1.1",
115
115
  "avsc": "^5.7.5",
@@ -2055,9 +2055,9 @@
2055
2055
  "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
2056
2056
  },
2057
2057
  "node_modules/@stoplight/spectral-functions": {
2058
- "version": "1.7.2",
2059
- "resolved": "https://registry.npmjs.org/@stoplight/spectral-functions/-/spectral-functions-1.7.2.tgz",
2060
- "integrity": "sha512-f+61/FtIkQeIo+a269CeaeqjpyRsgDyIk6DGr7iS4hyuk1PPk7Uf6MNRDs9FEIBh7CpdEJ+HSHbMLwgpymWTIw==",
2058
+ "version": "1.8.0",
2059
+ "resolved": "https://registry.npmjs.org/@stoplight/spectral-functions/-/spectral-functions-1.8.0.tgz",
2060
+ "integrity": "sha512-ZrAkYA/ZGbuQ6EyG1gisF4yQ5nWP/+glcqVoGmS6kH6ekaynz2Yp6FL0oIamWj3rWedFUN7ppwTRUdo+9f/uCw==",
2061
2061
  "dependencies": {
2062
2062
  "@stoplight/better-ajv-errors": "1.0.3",
2063
2063
  "@stoplight/json": "^3.17.1",
@@ -2232,11 +2232,11 @@
2232
2232
  "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
2233
2233
  },
2234
2234
  "node_modules/@types/node": {
2235
- "version": "20.14.2",
2236
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz",
2237
- "integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
2235
+ "version": "22.2.0",
2236
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.2.0.tgz",
2237
+ "integrity": "sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==",
2238
2238
  "dependencies": {
2239
- "undici-types": "~5.26.4"
2239
+ "undici-types": "~6.13.0"
2240
2240
  }
2241
2241
  },
2242
2242
  "node_modules/@types/urijs": {
@@ -2256,14 +2256,14 @@
2256
2256
  }
2257
2257
  },
2258
2258
  "node_modules/ajv": {
2259
- "version": "8.16.0",
2260
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz",
2261
- "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==",
2259
+ "version": "8.17.1",
2260
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
2261
+ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
2262
2262
  "dependencies": {
2263
2263
  "fast-deep-equal": "^3.1.3",
2264
+ "fast-uri": "^3.0.1",
2264
2265
  "json-schema-traverse": "^1.0.0",
2265
- "require-from-string": "^2.0.2",
2266
- "uri-js": "^4.4.1"
2266
+ "require-from-string": "^2.0.2"
2267
2267
  },
2268
2268
  "funding": {
2269
2269
  "type": "github",
@@ -2864,6 +2864,11 @@
2864
2864
  "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
2865
2865
  "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="
2866
2866
  },
2867
+ "node_modules/fast-uri": {
2868
+ "version": "3.0.1",
2869
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz",
2870
+ "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw=="
2871
+ },
2867
2872
  "node_modules/for-each": {
2868
2873
  "version": "0.3.3",
2869
2874
  "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
@@ -3310,9 +3315,9 @@
3310
3315
  }
3311
3316
  },
3312
3317
  "node_modules/jsep": {
3313
- "version": "1.3.8",
3314
- "resolved": "https://registry.npmjs.org/jsep/-/jsep-1.3.8.tgz",
3315
- "integrity": "sha512-qofGylTGgYj9gZFsHuyWAN4jr35eJ66qJCK4eKDnldohuUoQFbU3iZn2zjvEbd9wOAhP9Wx5DsAAduTyE1PSWQ==",
3318
+ "version": "1.3.9",
3319
+ "resolved": "https://registry.npmjs.org/jsep/-/jsep-1.3.9.tgz",
3320
+ "integrity": "sha512-i1rBX5N7VPl0eYb6+mHNp52sEuaS2Wi8CDYx1X5sn9naevL78+265XJqy1qENEk7mRKwS06NHpUqiBwR7qeodw==",
3316
3321
  "engines": {
3317
3322
  "node": ">= 10.16.0"
3318
3323
  }
@@ -3483,9 +3488,12 @@
3483
3488
  }
3484
3489
  },
3485
3490
  "node_modules/object-inspect": {
3486
- "version": "1.13.1",
3487
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
3488
- "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
3491
+ "version": "1.13.2",
3492
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz",
3493
+ "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==",
3494
+ "engines": {
3495
+ "node": ">= 0.4"
3496
+ },
3489
3497
  "funding": {
3490
3498
  "url": "https://github.com/sponsors/ljharb"
3491
3499
  }
@@ -3562,14 +3570,6 @@
3562
3570
  "react-is": "^16.13.1"
3563
3571
  }
3564
3572
  },
3565
- "node_modules/punycode": {
3566
- "version": "2.3.1",
3567
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3568
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3569
- "engines": {
3570
- "node": ">=6"
3571
- }
3572
- },
3573
3573
  "node_modules/react": {
3574
3574
  "version": "17.0.2",
3575
3575
  "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
@@ -3997,9 +3997,9 @@
3997
3997
  }
3998
3998
  },
3999
3999
  "node_modules/undici-types": {
4000
- "version": "5.26.5",
4001
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
4002
- "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
4000
+ "version": "6.13.0",
4001
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz",
4002
+ "integrity": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg=="
4003
4003
  },
4004
4004
  "node_modules/unicode-canonical-property-names-ecmascript": {
4005
4005
  "version": "2.0.0",
@@ -4066,14 +4066,6 @@
4066
4066
  "browserslist": ">= 4.21.0"
4067
4067
  }
4068
4068
  },
4069
- "node_modules/uri-js": {
4070
- "version": "4.4.1",
4071
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4072
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4073
- "dependencies": {
4074
- "punycode": "^2.1.0"
4075
- }
4076
- },
4077
4069
  "node_modules/urijs": {
4078
4070
  "version": "1.19.11",
4079
4071
  "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz",
@@ -18,6 +18,6 @@
18
18
  }
19
19
  },
20
20
  "dependencies": {
21
- "@asyncapi/generator-react-sdk": "^1.0.19"
21
+ "@asyncapi/generator-react-sdk": "^1.1.1"
22
22
  }
23
23
  }