diff --git a/.github/workflows/help-command.yml b/.github/workflows/help-command.yml index d4ba4a44c..55353bb89 100644 --- a/.github/workflows/help-command.yml +++ b/.github/workflows/help-command.yml @@ -31,6 +31,7 @@ jobs: At the moment the following comments are supported in pull requests: + - \`/please-take-a-look\` or \`/ptal\` - This comment will add a comment to the PR asking for attention from the reviewrs who have not reviewed the PR yet. - \`/ready-to-merge\` or \`/rtm\` - This comment will trigger automerge of PR in case all required checks are green, approvals in place and do-not-merge label is not added - \`/do-not-merge\` or \`/dnm\` - This comment will block automerging even if all conditions are met and ready-to-merge label is added - \`/autoupdate\` or \`/au\` - This comment will add \`autoupdate\` label to the PR and keeps your PR up-to-date to the target branch's future changes. Unless there is a merge conflict or it is a draft PR.` diff --git a/.github/workflows/if-nodejs-pr-testing.yml b/.github/workflows/if-nodejs-pr-testing.yml index 75eaaac7b..66ea65528 100644 --- a/.github/workflows/if-nodejs-pr-testing.yml +++ b/.github/workflows/if-nodejs-pr-testing.yml @@ -39,9 +39,10 @@ jobs: run: | git config --global core.autocrlf false git config --global core.eol lf + shell: bash - if: steps.should_run.outputs.shouldrun == 'true' name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - if: steps.should_run.outputs.shouldrun == 'true' name: Check if Node.js project and has package.json id: packagejson @@ -53,27 +54,26 @@ jobs: id: lockversion - if: steps.packagejson.outputs.exists == 'true' name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "${{ steps.lockversion.outputs.version }}" - cache: 'npm' - cache-dependency-path: '**/package-lock.json' + - if: steps.lockversion.outputs.version == '18' && matrix.os == 'windows-latest' + #npm cli 10 is buggy because of some cache issue + name: Install npm cli 8 + shell: bash + run: npm install -g npm@8.19.4 - if: steps.packagejson.outputs.exists == 'true' name: Install dependencies - id: first-installation + shell: bash run: npm ci - continue-on-error: true - - if: steps.first-installation.outputs.status == 'failure' && steps.packagejson.outputs.exists == 'true' - name: Clear NPM cache and install deps again - run: | - npm cache clean --force - npm ci - if: steps.packagejson.outputs.exists == 'true' name: Test run: npm test --if-present - - if: steps.packagejson.outputs.exists == 'true' + - if: steps.packagejson.outputs.exists == 'true' && matrix.os == 'ubuntu-latest' + #linting should run just one and not on all possible operating systems name: Run linter run: npm run lint --if-present - if: steps.packagejson.outputs.exists == 'true' name: Run release assets generation to make sure PR does not break it + shell: bash run: npm run generate:assets --if-present diff --git a/.github/workflows/please-take-a-look-command.yml b/.github/workflows/please-take-a-look-command.yml new file mode 100644 index 000000000..b26cbc41a --- /dev/null +++ b/.github/workflows/please-take-a-look-command.yml @@ -0,0 +1,54 @@ +# This action is centrally managed in https://github.com/asyncapi/.github/ +# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo + +# It uses Github actions to listen for comments on issues and pull requests and +# if the comment contains /please-take-a-look or /ptal it will add a comment pinging +# the code-owners who are reviewers for PR + +name: Please take a Look + +on: + issue_comment: + types: [created] + +jobs: + ping-for-attention: + if: > + github.event.issue.pull_request && + github.event.issue.state != 'closed' && + github.actor != 'asyncapi-bot' && + ( + contains(github.event.comment.body, '/please-take-a-look') || + contains(github.event.comment.body, '/ptal') || + contains(github.event.comment.body, '/PTAL') + ) + runs-on: ubuntu-latest + steps: + - name: Check for Please Take a Look Command + uses: actions/github-script@v6 + with: + github-token: ${{ secrets.GH_TOKEN }} + script: | + const prDetailsUrl = context.payload.issue.pull_request.url; + const { data: pull } = await github.request(prDetailsUrl); + const reviewers = pull.requested_reviewers.map(reviewer => reviewer.login); + + const { data: reviews } = await github.rest.pulls.listReviews({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: context.issue.number + }); + + const reviewersWhoHaveReviewed = reviews.map(review => review.user.login); + + const reviewersWhoHaveNotReviewed = reviewers.filter(reviewer => !reviewersWhoHaveReviewed.includes(reviewer)); + + if (reviewersWhoHaveNotReviewed.length > 0) { + const comment = reviewersWhoHaveNotReviewed.filter(reviewer => reviewer !== 'asyncapi-bot-eve' ).map(reviewer => `@${reviewer}`).join(' '); + await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: `${comment} Please take a look at this PR. Thanks! :wave:` + }); + } diff --git a/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx b/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx index 394eeabae..da87e3ae4 100644 --- a/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx +++ b/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import { VisualEditor, CodeEditor, Examples } from '@asyncapi/studio-ui'; -export default { +const VisualEditorStory = { component: VisualEditor, parameters: { layout: 'fullscreen', @@ -282,3 +282,4 @@ export const nestead_array = () => ( /> ); +export default VisualEditorStory \ No newline at end of file diff --git a/apps/studio-next/src/components/Editor/Editor.tsx b/apps/studio-next/src/components/Editor/Editor.tsx index c48ba7b52..1caa69ee0 100644 --- a/apps/studio-next/src/components/Editor/Editor.tsx +++ b/apps/studio-next/src/components/Editor/Editor.tsx @@ -3,9 +3,7 @@ import { useFilesState } from '@/state/files.state'; import { CodeMirror } from './CodeMirror'; -interface IEditorProps {} - -export const Editor = (props: IEditorProps) => { +export const Editor = () => { const { language, content } = useFilesState(state => state.files['asyncapi']); const handleUpdateFile = useFilesState(state => state.updateFile); diff --git a/apps/studio/package.json b/apps/studio/package.json index 23344ae2a..5c7055b69 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -22,13 +22,13 @@ "./LICENSE" ], "dependencies": { - "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.16", - "@asyncapi/openapi-schema-parser": "^3.0.18", - "@asyncapi/parser": "^3.0.11", - "@asyncapi/protobuf-schema-parser": "^3.2.8", + "@asyncapi/avro-schema-parser": "^3.0.21", + "@asyncapi/converter": "^1.4.18", + "@asyncapi/openapi-schema-parser": "^3.0.21", + "@asyncapi/parser": "^3.0.13", + "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@ebay/nice-modal-react": "^1.2.10", "@headlessui/react": "^1.7.4", "@hookstate/core": "^4.0.0-rc21", @@ -75,8 +75,8 @@ }, "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.72", - "@asyncapi/html-template": "^2.3.0", + "@asyncapi/go-watermill-template": "^0.2.74", + "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", "@asyncapi/java-template": "^0.2.1", diff --git a/package-lock.json b/package-lock.json index 05367294a..baa53e976 100644 --- a/package-lock.json +++ b/package-lock.json @@ -498,13 +498,13 @@ "version": "0.21.0", "license": "Apache-2.0", "dependencies": { - "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.16", - "@asyncapi/openapi-schema-parser": "^3.0.18", - "@asyncapi/parser": "^3.0.11", - "@asyncapi/protobuf-schema-parser": "^3.2.8", + "@asyncapi/avro-schema-parser": "^3.0.21", + "@asyncapi/converter": "^1.4.18", + "@asyncapi/openapi-schema-parser": "^3.0.21", + "@asyncapi/parser": "^3.0.13", + "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@ebay/nice-modal-react": "^1.2.10", "@headlessui/react": "^1.7.4", "@hookstate/core": "^4.0.0-rc21", @@ -524,8 +524,8 @@ }, "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.72", - "@asyncapi/html-template": "^2.3.0", + "@asyncapi/go-watermill-template": "^0.2.74", + "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", "@asyncapi/java-template": "^0.2.1", @@ -617,11 +617,11 @@ } }, "apps/studio/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -643,9 +643,9 @@ } }, "apps/studio/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -1002,21 +1002,21 @@ } }, "node_modules/@asyncapi/avro-schema-parser": { - "version": "3.0.19", - "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.19.tgz", - "integrity": "sha512-1+qwxeAbSpp2OQw1TkjWemS7v646lSVM2RMJzDAh5qP5w33hM2xLXcuYC2O72l2AbCl4bkRfXTjTWLLq8qiPAA==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.21.tgz", + "integrity": "sha512-ybHSI5yLWm/10BK8DEUrpecHP6JX8GgFzCbM3oRnohyTc27eWXXA0GRIhAJtb3FvqgG1GuuWvZH+jAlUuSJBMg==", "dependencies": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.13", "@types/json-schema": "^7.0.11", "avsc": "^5.7.6" } }, "node_modules/@asyncapi/avro-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1038,9 +1038,9 @@ } }, "node_modules/@asyncapi/avro-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -1065,20 +1065,20 @@ } }, "node_modules/@asyncapi/converter": { - "version": "1.4.16", - "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.16.tgz", - "integrity": "sha512-j2Rvi9xOoT+w8V3b6Jf5ChE3tK3I7Y9U5CckNiBrh6+nT7lXtDeo7NzEBKUzz6SgBfxf+9oSngclcTnIbUJ28g==", + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.18.tgz", + "integrity": "sha512-4L4U+FX67FoqNfnIKHPIQmb5aOxT8TlJdV6Ek30JtI5sraz6odwdc7B7bxaF0FG1NqV2nawH9zOPLrWYWy7MPA==", "dependencies": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.13", "js-yaml": "^3.14.1" } }, "node_modules/@asyncapi/converter/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1116,9 +1116,9 @@ } }, "node_modules/@asyncapi/converter/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -1320,15 +1320,15 @@ } }, "node_modules/@asyncapi/go-watermill-template": { - "version": "0.2.72", - "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.72.tgz", - "integrity": "sha512-y7bCIgaTKgTsscc3x5A4nnJRgUP9+h4IXhGJpqHGLvcQe/QPlpVZo8kft2m10C4ka2wzNX1ws+edbcUeEQGFAg==", + "version": "0.2.74", + "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.74.tgz", + "integrity": "sha512-x5fJEX1l8DbGMZBJO6Y4UKsdmjQYNGTivuxo2n10uxEADfZovT7T2YssSkgQ8axGEOZ+ETuy0FAhn3jWEsJicQ==", "dev": true, "dependencies": { "@asyncapi/generator-filters": "^2.0.0", "@asyncapi/generator-hooks": "^0.1.0", "@asyncapi/generator-react-sdk": "^0.2.23", - "@asyncapi/modelina": "^3.4.5" + "@asyncapi/modelina": "^3.4.7" } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@apidevtools/json-schema-ref-parser": { @@ -1349,14 +1349,14 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/modelina": { - "version": "3.4.5", - "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.5.tgz", - "integrity": "sha512-OcpNHDFeeIISiIsM+fGF+N8PeK6IBuaPrAm1uTjoja5n61ZQatD97Lo8l7Ff1tdxTVuEfjhkMyTvi19PkFDCbA==", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.7.tgz", + "integrity": "sha512-kUSsfGMRQt3iXgqTapl+ETlGujbG4Kwe/dUGkxC/TXoXbG5byHFfswMp23yLli8gOy8S0JY1E187UbFLoORtgw==", "dev": true, "dependencies": { "@apidevtools/json-schema-ref-parser": "^11.1.0", "@apidevtools/swagger-parser": "^10.1.0", - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.13", "@smoya/multi-parser": "^5.0.1", "@swc/core": "^1.3.5", "@swc/jest": "^0.2.23", @@ -1372,12 +1372,12 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1399,18 +1399,18 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@types/node": { - "version": "20.11.27", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.27.tgz", - "integrity": "sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1437,13 +1437,13 @@ } }, "node_modules/@asyncapi/html-template": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.0.tgz", - "integrity": "sha512-2OSvxLHWCDkyDP6I40gijmYG190mG0DLMJvnlrsNGE83nHOFdoZg2EIR0brrwM7OjNL+EuCifcHdh6r6uli1bA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.2.tgz", + "integrity": "sha512-HjdTZnRIP12frH6yqPaZcvEkA6r0N4SDwEtCRuAEJfX++jkVvrv0kXqCpIhYQf/N1ktIIudCyBk34XRQmRAIrg==", "dev": true, "dependencies": { - "@asyncapi/generator-react-sdk": "^1.0.15", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/generator-react-sdk": "^1.0.16", + "@asyncapi/parser": "^3.0.12", "@asyncapi/react-component": "^1.2.13", "highlight.js": "10.7.3", "puppeteer": "^14.1.0", @@ -1453,12 +1453,12 @@ } }, "node_modules/@asyncapi/html-template/node_modules/@asyncapi/generator-react-sdk": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.15.tgz", - "integrity": "sha512-2ewO8pWSw39NkL3fvG3YMgou6VXMaIuxYE7Uw5MEE/o4Iy8v8uHfR1UM6Ppy3t4PCzpSdN8VkePAaNeuAZz/YA==", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.16.tgz", + "integrity": "sha512-zmngpZpW3Xb9nGLLp7Q9g58EMLBIIDE6kRyUM2ISbh/zj9PTndsD+Ox7gonJ4TRuD9qYtlK+F12J1pVMXrAOUg==", "dev": true, "dependencies": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@babel/core": "7.12.9", "@babel/preset-env": "^7.12.7", "@babel/preset-react": "^7.12.7", @@ -1471,12 +1471,12 @@ } }, "node_modules/@asyncapi/html-template/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1498,9 +1498,9 @@ } }, "node_modules/@asyncapi/html-template/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -2111,11 +2111,11 @@ } }, "node_modules/@asyncapi/openapi-schema-parser": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.18.tgz", - "integrity": "sha512-azKEwm9wel7QS/Fz0y1C9eCUIfUEZE/JrQlGybPmQKHS213RKyo5Rjpzo9nqGc4VT7o1URDIMaYTnYdgfMitew==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.21.tgz", + "integrity": "sha512-lecylfA49DLTzrSAjFuuj1u8joffgIpX860dISjky0/CqNX408tLTqEhcL/jsGBsbhqNBh5lc4foJQZyWxlNJw==", "dependencies": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.13", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "ajv": "^8.11.0", "ajv-errors": "^3.0.0", @@ -2123,11 +2123,11 @@ } }, "node_modules/@asyncapi/openapi-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -2149,9 +2149,9 @@ } }, "node_modules/@asyncapi/openapi-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -2230,21 +2230,21 @@ } }, "node_modules/@asyncapi/protobuf-schema-parser": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.8.tgz", - "integrity": "sha512-qYKutNQTkMNrf8BB9d6o2JS/4LC+r6Fkugvg46gW66kN9dKMU2nguHWM+MdcG89nk5keM2Olz4IN8AvWqX9iew==", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.11.tgz", + "integrity": "sha512-zmN5Rb4OMuTKCFi1qWG2x+Q7gwk622jVRu3biAisHNjvJn80GtQwXB66tJ2FGhSfd9OcreU8sEfDKf+KzjqMAA==", "dependencies": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.13", "@types/protocol-buffers-schema": "^3.4.1", "protobufjs": "^7.2.6" } }, "node_modules/@asyncapi/protobuf-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -2266,9 +2266,9 @@ } }, "node_modules/@asyncapi/protobuf-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -9323,9 +9323,9 @@ } }, "node_modules/@smoya/multi-parser": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.3.tgz", - "integrity": "sha512-XrSIsLdBeWOo7f61qpaoSPFyE5ctuspSAJZ7pZ08OqY3M7zLiTQi8w37AV4rxOg35+2VRGorzYBycx2bvwe4uw==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.5.tgz", + "integrity": "sha512-xslTCMvNl5maGphjU6cWXsDKS7PZH+7yyAiuv4F2XBUOm4s3IcKfRIqnGAGgEgYm5fb/oZzq5Rv2kZMETyniuA==", "dev": true, "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.3", @@ -9334,7 +9334,7 @@ "@asyncapi/raml-dt-schema-parser": "^4.0.4", "parserapiv1": "npm:@asyncapi/parser@^2.1.0", "parserapiv2": "npm:@asyncapi/parser@3.0.0-next-major-spec.8", - "parserapiv3": "npm:@asyncapi/parser@^3.0.7" + "parserapiv3": "npm:@asyncapi/parser@^3.0.12" } }, "node_modules/@stoplight/better-ajv-errors": { @@ -27652,9 +27652,9 @@ } }, "node_modules/parserapiv2/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -27682,12 +27682,12 @@ }, "node_modules/parserapiv3": { "name": "@asyncapi/parser", - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -27709,9 +27709,9 @@ } }, "node_modules/parserapiv3/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -34229,9 +34229,9 @@ } }, "node_modules/typescript-json-schema/node_modules/@types/node": { - "version": "16.18.89", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.89.tgz", - "integrity": "sha512-QlrE8QI5z62nfnkiUZysUsAaxWaTMoGqFVcB3PvK1WxJ0c699bacErV4Fabe9Hki6ZnaHalgzihLbTl2d34XfQ==", + "version": "16.18.96", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.96.tgz", + "integrity": "sha512-84iSqGXoO+Ha16j8pRZ/L90vDMKX04QTYMTfYeE1WrjWaZXuchBehGUZEpNgx7JnmlrIHdnABmpjrQjhCnNldQ==", "dev": true }, "node_modules/typescript-json-schema/node_modules/cliui": { @@ -36451,21 +36451,21 @@ } }, "@asyncapi/avro-schema-parser": { - "version": "3.0.19", - "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.19.tgz", - "integrity": "sha512-1+qwxeAbSpp2OQw1TkjWemS7v646lSVM2RMJzDAh5qP5w33hM2xLXcuYC2O72l2AbCl4bkRfXTjTWLLq8qiPAA==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.21.tgz", + "integrity": "sha512-ybHSI5yLWm/10BK8DEUrpecHP6JX8GgFzCbM3oRnohyTc27eWXXA0GRIhAJtb3FvqgG1GuuWvZH+jAlUuSJBMg==", "requires": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.13", "@types/json-schema": "^7.0.11", "avsc": "^5.7.6" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36487,9 +36487,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -36505,20 +36505,20 @@ } }, "@asyncapi/converter": { - "version": "1.4.16", - "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.16.tgz", - "integrity": "sha512-j2Rvi9xOoT+w8V3b6Jf5ChE3tK3I7Y9U5CckNiBrh6+nT7lXtDeo7NzEBKUzz6SgBfxf+9oSngclcTnIbUJ28g==", + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.18.tgz", + "integrity": "sha512-4L4U+FX67FoqNfnIKHPIQmb5aOxT8TlJdV6Ek30JtI5sraz6odwdc7B7bxaF0FG1NqV2nawH9zOPLrWYWy7MPA==", "requires": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.13", "js-yaml": "^3.14.1" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36555,9 +36555,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -36712,15 +36712,15 @@ } }, "@asyncapi/go-watermill-template": { - "version": "0.2.72", - "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.72.tgz", - "integrity": "sha512-y7bCIgaTKgTsscc3x5A4nnJRgUP9+h4IXhGJpqHGLvcQe/QPlpVZo8kft2m10C4ka2wzNX1ws+edbcUeEQGFAg==", + "version": "0.2.74", + "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.74.tgz", + "integrity": "sha512-x5fJEX1l8DbGMZBJO6Y4UKsdmjQYNGTivuxo2n10uxEADfZovT7T2YssSkgQ8axGEOZ+ETuy0FAhn3jWEsJicQ==", "dev": true, "requires": { "@asyncapi/generator-filters": "^2.0.0", "@asyncapi/generator-hooks": "^0.1.0", "@asyncapi/generator-react-sdk": "^0.2.23", - "@asyncapi/modelina": "^3.4.5" + "@asyncapi/modelina": "^3.4.7" }, "dependencies": { "@apidevtools/json-schema-ref-parser": { @@ -36735,14 +36735,14 @@ } }, "@asyncapi/modelina": { - "version": "3.4.5", - "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.5.tgz", - "integrity": "sha512-OcpNHDFeeIISiIsM+fGF+N8PeK6IBuaPrAm1uTjoja5n61ZQatD97Lo8l7Ff1tdxTVuEfjhkMyTvi19PkFDCbA==", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.7.tgz", + "integrity": "sha512-kUSsfGMRQt3iXgqTapl+ETlGujbG4Kwe/dUGkxC/TXoXbG5byHFfswMp23yLli8gOy8S0JY1E187UbFLoORtgw==", "dev": true, "requires": { "@apidevtools/json-schema-ref-parser": "^11.1.0", "@apidevtools/swagger-parser": "^10.1.0", - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.13", "@smoya/multi-parser": "^5.0.1", "@swc/core": "^1.3.5", "@swc/jest": "^0.2.23", @@ -36755,12 +36755,12 @@ } }, "@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36782,18 +36782,18 @@ } }, "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" } }, "@types/node": { - "version": "20.11.27", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.27.tgz", - "integrity": "sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, "requires": { "undici-types": "~5.26.4" @@ -36811,13 +36811,13 @@ } }, "@asyncapi/html-template": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.0.tgz", - "integrity": "sha512-2OSvxLHWCDkyDP6I40gijmYG190mG0DLMJvnlrsNGE83nHOFdoZg2EIR0brrwM7OjNL+EuCifcHdh6r6uli1bA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.2.tgz", + "integrity": "sha512-HjdTZnRIP12frH6yqPaZcvEkA6r0N4SDwEtCRuAEJfX++jkVvrv0kXqCpIhYQf/N1ktIIudCyBk34XRQmRAIrg==", "dev": true, "requires": { - "@asyncapi/generator-react-sdk": "^1.0.15", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/generator-react-sdk": "^1.0.16", + "@asyncapi/parser": "^3.0.12", "@asyncapi/react-component": "^1.2.13", "highlight.js": "10.7.3", "puppeteer": "^14.1.0", @@ -36827,12 +36827,12 @@ }, "dependencies": { "@asyncapi/generator-react-sdk": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.15.tgz", - "integrity": "sha512-2ewO8pWSw39NkL3fvG3YMgou6VXMaIuxYE7Uw5MEE/o4Iy8v8uHfR1UM6Ppy3t4PCzpSdN8VkePAaNeuAZz/YA==", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.16.tgz", + "integrity": "sha512-zmngpZpW3Xb9nGLLp7Q9g58EMLBIIDE6kRyUM2ISbh/zj9PTndsD+Ox7gonJ4TRuD9qYtlK+F12J1pVMXrAOUg==", "dev": true, "requires": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@babel/core": "7.12.9", "@babel/preset-env": "^7.12.7", "@babel/preset-react": "^7.12.7", @@ -36845,12 +36845,12 @@ } }, "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36872,9 +36872,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -37365,11 +37365,11 @@ } }, "@asyncapi/openapi-schema-parser": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.18.tgz", - "integrity": "sha512-azKEwm9wel7QS/Fz0y1C9eCUIfUEZE/JrQlGybPmQKHS213RKyo5Rjpzo9nqGc4VT7o1URDIMaYTnYdgfMitew==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.21.tgz", + "integrity": "sha512-lecylfA49DLTzrSAjFuuj1u8joffgIpX860dISjky0/CqNX408tLTqEhcL/jsGBsbhqNBh5lc4foJQZyWxlNJw==", "requires": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.13", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "ajv": "^8.11.0", "ajv-errors": "^3.0.0", @@ -37377,11 +37377,11 @@ }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37403,9 +37403,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37464,21 +37464,21 @@ } }, "@asyncapi/protobuf-schema-parser": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.8.tgz", - "integrity": "sha512-qYKutNQTkMNrf8BB9d6o2JS/4LC+r6Fkugvg46gW66kN9dKMU2nguHWM+MdcG89nk5keM2Olz4IN8AvWqX9iew==", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.11.tgz", + "integrity": "sha512-zmN5Rb4OMuTKCFi1qWG2x+Q7gwk622jVRu3biAisHNjvJn80GtQwXB66tJ2FGhSfd9OcreU8sEfDKf+KzjqMAA==", "requires": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.13", "@types/protocol-buffers-schema": "^3.4.1", "protobufjs": "^7.2.6" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37500,9 +37500,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37679,23 +37679,23 @@ "@asyncapi/studio": { "version": "file:apps/studio", "requires": { - "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.16", + "@asyncapi/avro-schema-parser": "^3.0.21", + "@asyncapi/converter": "^1.4.18", "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.72", - "@asyncapi/html-template": "^2.3.0", + "@asyncapi/go-watermill-template": "^0.2.74", + "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", "@asyncapi/java-template": "^0.2.1", "@asyncapi/markdown-template": "^1.5.0", "@asyncapi/nodejs-template": "^2.0.1", "@asyncapi/nodejs-ws-template": "^0.9.33", - "@asyncapi/openapi-schema-parser": "^3.0.18", - "@asyncapi/parser": "^3.0.11", - "@asyncapi/protobuf-schema-parser": "^3.2.8", + "@asyncapi/openapi-schema-parser": "^3.0.21", + "@asyncapi/parser": "^3.0.13", + "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/python-paho-template": "^0.2.13", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@asyncapi/ts-nats-template": "^0.10.3", "@craco/craco": "^7.1.0", "@ebay/nice-modal-react": "^1.2.10", @@ -37754,11 +37754,11 @@ }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37780,9 +37780,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -42340,9 +42340,9 @@ } }, "@smoya/multi-parser": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.3.tgz", - "integrity": "sha512-XrSIsLdBeWOo7f61qpaoSPFyE5ctuspSAJZ7pZ08OqY3M7zLiTQi8w37AV4rxOg35+2VRGorzYBycx2bvwe4uw==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.5.tgz", + "integrity": "sha512-xslTCMvNl5maGphjU6cWXsDKS7PZH+7yyAiuv4F2XBUOm4s3IcKfRIqnGAGgEgYm5fb/oZzq5Rv2kZMETyniuA==", "dev": true, "requires": { "@asyncapi/avro-schema-parser": "^3.0.3", @@ -42351,7 +42351,7 @@ "@asyncapi/raml-dt-schema-parser": "^4.0.4", "parserapiv1": "npm:@asyncapi/parser@^2.1.0", "parserapiv2": "npm:@asyncapi/parser@3.0.0-next-major-spec.8", - "parserapiv3": "npm:@asyncapi/parser@^3.0.7" + "parserapiv3": "npm:@asyncapi/parser@^3.0.12" } }, "@stoplight/better-ajv-errors": { @@ -54650,9 +54650,9 @@ }, "dependencies": { "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -54670,12 +54670,12 @@ } }, "parserapiv3": { - "version": "npm:@asyncapi/parser@3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "npm:@asyncapi/parser@3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -54697,9 +54697,9 @@ }, "dependencies": { "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -58820,9 +58820,9 @@ }, "dependencies": { "@types/node": { - "version": "16.18.89", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.89.tgz", - "integrity": "sha512-QlrE8QI5z62nfnkiUZysUsAaxWaTMoGqFVcB3PvK1WxJ0c699bacErV4Fabe9Hki6ZnaHalgzihLbTl2d34XfQ==", + "version": "16.18.96", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.96.tgz", + "integrity": "sha512-84iSqGXoO+Ha16j8pRZ/L90vDMKX04QTYMTfYeE1WrjWaZXuchBehGUZEpNgx7JnmlrIHdnABmpjrQjhCnNldQ==", "dev": true }, "cliui": {