├── .all-contributorsrc ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── add-good-first-issue-labels.yml │ ├── automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml │ ├── automerge-for-humans-merging.yml │ ├── automerge-for-humans-remove-ready-to-merge-label-on-edit.yml │ ├── automerge-orphans.yml │ ├── automerge.yml │ ├── autoupdate.yml │ ├── bounty-program-commands.yml │ ├── bump.yml │ ├── help-command.yml │ ├── if-nodejs-pr-testing.yml │ ├── if-nodejs-release.yml │ ├── if-nodejs-version-bump.yml │ ├── issues-prs-notifications.yml │ ├── lint-pr-title.yml │ ├── notify-tsc-members-mention.yml │ ├── please-take-a-look-command.yml │ ├── release-announcements.yml │ ├── scripts │ ├── README.md │ └── mailchimp │ │ ├── htmlContent.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── stale-issues-prs.yml │ ├── transfer-issue.yml │ ├── update-maintainers-trigger.yaml │ ├── update-pr.yml │ └── welcome-first-time-contrib.yml ├── .gitignore ├── .npmignore ├── .sonarcloud.properties ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Desktop ├── .editorconfig ├── .erb │ ├── configs │ │ ├── .eslintrc │ │ ├── webpack.config.base.ts │ │ ├── webpack.config.eslint.ts │ │ ├── webpack.config.main.prod.ts │ │ ├── webpack.config.renderer.dev.dll.ts │ │ ├── webpack.config.renderer.dev.ts │ │ ├── webpack.config.renderer.prod.ts │ │ └── webpack.paths.ts │ ├── img │ │ ├── erb-banner.svg │ │ └── erb-logo.png │ ├── mocks │ │ └── fileMock.js │ └── scripts │ │ ├── .eslintrc │ │ ├── check-build-exists.ts │ │ ├── check-native-dep.js │ │ ├── check-node-env.js │ │ ├── check-port-in-use.js │ │ ├── clean.js │ │ ├── delete-source-maps.js │ │ ├── electron-rebuild.js │ │ ├── link-modules.ts │ │ └── notarize.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── LICENSE ├── assets │ ├── assets.d.ts │ ├── entitlements.mac.plist │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ ├── icon.svg │ └── icons │ │ ├── 1024x1024.png │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ └── 96x96.png ├── package-lock.json ├── package.json ├── release │ └── app │ │ ├── package-lock.json │ │ └── package.json ├── src │ ├── __tests__ │ │ └── App.test.tsx │ ├── main │ │ ├── main.ts │ │ ├── menu.js │ │ ├── menu.ts │ │ ├── preload.js │ │ ├── renderer.js │ │ ├── setup.ts │ │ ├── temp.json │ │ ├── tempScenarioSave.js │ │ └── util.ts │ ├── parser │ │ ├── flowGenerator.ts │ │ └── utils │ │ │ └── layout.ts │ └── renderer │ │ ├── AddNodesDnD │ │ ├── AddButton.tsx │ │ ├── NodeInput │ │ │ ├── Application.tsx │ │ │ ├── Publish.tsx │ │ │ ├── Subscribe.tsx │ │ │ └── index.css │ │ └── index.css │ │ ├── App.css │ │ ├── App.global.css │ │ ├── App.tsx │ │ ├── GraphGenerator │ │ ├── ApiVisualizer.tsx │ │ └── index.css │ │ ├── Nodes │ │ ├── ApplicationNode.tsx │ │ ├── PublishNode.tsx │ │ ├── SubscribeNode.tsx │ │ └── index.tsx │ │ ├── containers │ │ ├── Editor │ │ │ ├── constants │ │ │ │ └── index.ts │ │ │ ├── index.tsx │ │ │ ├── reducers │ │ │ │ └── index.tsx │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── TitleBar │ │ │ ├── index.ts │ │ │ ├── menu-list-item.tsx │ │ │ ├── menu-list.tsx │ │ │ ├── menu.tsx │ │ │ ├── menuTemplate.ts │ │ │ ├── titlebar.tsx │ │ │ ├── utils.ts │ │ │ └── window-controls.tsx │ │ └── Workbench │ │ │ ├── components │ │ │ ├── ScenarioEditor.tsx │ │ │ ├── ScenarioVisualizer.tsx │ │ │ └── SideBar.tsx │ │ │ ├── index.tsx │ │ │ └── types │ │ │ └── index.ts │ │ ├── index.ejs │ │ └── index.tsx └── tsconfig.json ├── LICENSE ├── README.md ├── example-projects └── game-processor │ ├── .gitignore │ ├── AsyncAPI │ └── components │ │ ├── Parameters.yaml │ │ └── messages │ │ ├── PlayerConnected.yaml │ │ ├── PlayerDisconnected.yaml │ │ ├── PlayerHit.yaml │ │ ├── PlayerItemPickup.yaml │ │ └── PlayerUsedChat.yaml │ ├── Dockerfile │ ├── README.md │ ├── asyncapi.yaml │ ├── config.js │ ├── docker-compose.yaml │ ├── index.js │ ├── mosquitto │ └── config │ │ └── mosquitto.conf │ ├── package-lock.json │ ├── package.json │ └── scenario.yaml ├── github-repobanner-simulator.png ├── index.d.ts ├── index.js ├── mqtt.yaml ├── package.json ├── simulator_screenshot.JPG ├── src ├── RequestHandler │ ├── HandlerFactory.js │ ├── RequestManager.js │ └── mqttHandler.js ├── Schema │ ├── SimulationPlotSchema_0.0.1.json │ └── index.js ├── bin │ └── cli.js ├── index.js └── parser │ ├── GenerateOperationsAndScenarios.js │ ├── index.js │ ├── parseFiles.js │ └── tests │ ├── expectedOutputs.js │ ├── files │ ├── correct │ │ ├── CorrectlyFormattedAsyncApi.yaml │ │ └── CorrectlyFormattedScenario.yaml │ └── wrong │ │ ├── IncorrectlyFormattedAsyncApi.yaml │ │ └── IncorrectlyFormattedScenario.yaml │ ├── operationsGenerator.test.js │ └── parser.test.js └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/add-good-first-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/add-good-first-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-merging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/automerge-for-humans-merging.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-orphans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/automerge-orphans.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/bounty-program-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/bounty-program-commands.yml -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/help-command.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/if-nodejs-pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/if-nodejs-release.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/if-nodejs-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/issues-prs-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/issues-prs-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/notify-tsc-members-mention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/notify-tsc-members-mention.yml -------------------------------------------------------------------------------- /.github/workflows/please-take-a-look-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/please-take-a-look-command.yml -------------------------------------------------------------------------------- /.github/workflows/release-announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/release-announcements.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/scripts/README.md -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/scripts/mailchimp/htmlContent.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/scripts/mailchimp/index.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/scripts/mailchimp/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/scripts/mailchimp/package.json -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/transfer-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/transfer-issue.yml -------------------------------------------------------------------------------- /.github/workflows/update-maintainers-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/update-maintainers-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/update-pr.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.github/workflows/welcome-first-time-contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea 3 | /desktop/package-lock.json 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/.npmignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- 1 | sonar.cpd.exclusions=src/parser/tests/expectedOutputs.js 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Desktop/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.editorconfig -------------------------------------------------------------------------------- /Desktop/.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /Desktop/.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /Desktop/.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /Desktop/.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /Desktop/.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /Desktop/.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /Desktop/.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /Desktop/.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /Desktop/.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /Desktop/.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /Desktop/.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/clean.js -------------------------------------------------------------------------------- /Desktop/.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /Desktop/.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /Desktop/.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /Desktop/.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /Desktop/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.eslintignore -------------------------------------------------------------------------------- /Desktop/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.eslintrc.js -------------------------------------------------------------------------------- /Desktop/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.gitattributes -------------------------------------------------------------------------------- /Desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/.gitignore -------------------------------------------------------------------------------- /Desktop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/LICENSE -------------------------------------------------------------------------------- /Desktop/assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/assets.d.ts -------------------------------------------------------------------------------- /Desktop/assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /Desktop/assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icon.icns -------------------------------------------------------------------------------- /Desktop/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icon.ico -------------------------------------------------------------------------------- /Desktop/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icon.png -------------------------------------------------------------------------------- /Desktop/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icon.svg -------------------------------------------------------------------------------- /Desktop/assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /Desktop/assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/128x128.png -------------------------------------------------------------------------------- /Desktop/assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/16x16.png -------------------------------------------------------------------------------- /Desktop/assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/24x24.png -------------------------------------------------------------------------------- /Desktop/assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/256x256.png -------------------------------------------------------------------------------- /Desktop/assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/32x32.png -------------------------------------------------------------------------------- /Desktop/assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/48x48.png -------------------------------------------------------------------------------- /Desktop/assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/512x512.png -------------------------------------------------------------------------------- /Desktop/assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/64x64.png -------------------------------------------------------------------------------- /Desktop/assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/assets/icons/96x96.png -------------------------------------------------------------------------------- /Desktop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/package-lock.json -------------------------------------------------------------------------------- /Desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/package.json -------------------------------------------------------------------------------- /Desktop/release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/release/app/package-lock.json -------------------------------------------------------------------------------- /Desktop/release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/release/app/package.json -------------------------------------------------------------------------------- /Desktop/src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /Desktop/src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/main.ts -------------------------------------------------------------------------------- /Desktop/src/main/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/menu.js -------------------------------------------------------------------------------- /Desktop/src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/menu.ts -------------------------------------------------------------------------------- /Desktop/src/main/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/preload.js -------------------------------------------------------------------------------- /Desktop/src/main/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/renderer.js -------------------------------------------------------------------------------- /Desktop/src/main/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/setup.ts -------------------------------------------------------------------------------- /Desktop/src/main/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/temp.json -------------------------------------------------------------------------------- /Desktop/src/main/tempScenarioSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/tempScenarioSave.js -------------------------------------------------------------------------------- /Desktop/src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/main/util.ts -------------------------------------------------------------------------------- /Desktop/src/parser/flowGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/parser/flowGenerator.ts -------------------------------------------------------------------------------- /Desktop/src/parser/utils/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/parser/utils/layout.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/AddNodesDnD/AddButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/AddNodesDnD/AddButton.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/AddNodesDnD/NodeInput/Application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/AddNodesDnD/NodeInput/Application.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/AddNodesDnD/NodeInput/Publish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/AddNodesDnD/NodeInput/Publish.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/AddNodesDnD/NodeInput/Subscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/AddNodesDnD/NodeInput/Subscribe.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/AddNodesDnD/NodeInput/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/AddNodesDnD/NodeInput/index.css -------------------------------------------------------------------------------- /Desktop/src/renderer/AddNodesDnD/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/AddNodesDnD/index.css -------------------------------------------------------------------------------- /Desktop/src/renderer/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/App.css -------------------------------------------------------------------------------- /Desktop/src/renderer/App.global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/App.global.css -------------------------------------------------------------------------------- /Desktop/src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/App.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/GraphGenerator/ApiVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/GraphGenerator/ApiVisualizer.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/GraphGenerator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/GraphGenerator/index.css -------------------------------------------------------------------------------- /Desktop/src/renderer/Nodes/ApplicationNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/Nodes/ApplicationNode.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/Nodes/PublishNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/Nodes/PublishNode.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/Nodes/SubscribeNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/Nodes/SubscribeNode.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/Nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/Nodes/index.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Editor/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Editor/constants/index.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Editor/index.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Editor/reducers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Editor/reducers/index.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Editor/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Editor/types/index.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/index.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/menu-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/menu-list-item.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/menu-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/menu-list.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/menu.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/menuTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/menuTemplate.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/titlebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/titlebar.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/utils.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/TitleBar/window-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/TitleBar/window-controls.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Workbench/components/ScenarioEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Workbench/components/ScenarioEditor.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Workbench/components/ScenarioVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Workbench/components/ScenarioVisualizer.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Workbench/components/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Workbench/components/SideBar.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Workbench/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Workbench/index.tsx -------------------------------------------------------------------------------- /Desktop/src/renderer/containers/Workbench/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/containers/Workbench/types/index.ts -------------------------------------------------------------------------------- /Desktop/src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/index.ejs -------------------------------------------------------------------------------- /Desktop/src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/src/renderer/index.tsx -------------------------------------------------------------------------------- /Desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/Desktop/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/README.md -------------------------------------------------------------------------------- /example-projects/game-processor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/.gitignore -------------------------------------------------------------------------------- /example-projects/game-processor/AsyncAPI/components/Parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/AsyncAPI/components/Parameters.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/AsyncAPI/components/messages/PlayerConnected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/AsyncAPI/components/messages/PlayerConnected.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/AsyncAPI/components/messages/PlayerDisconnected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/AsyncAPI/components/messages/PlayerDisconnected.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/AsyncAPI/components/messages/PlayerHit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/AsyncAPI/components/messages/PlayerHit.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/AsyncAPI/components/messages/PlayerItemPickup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/AsyncAPI/components/messages/PlayerItemPickup.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/AsyncAPI/components/messages/PlayerUsedChat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/AsyncAPI/components/messages/PlayerUsedChat.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/Dockerfile -------------------------------------------------------------------------------- /example-projects/game-processor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/README.md -------------------------------------------------------------------------------- /example-projects/game-processor/asyncapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/asyncapi.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/config.js -------------------------------------------------------------------------------- /example-projects/game-processor/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/docker-compose.yaml -------------------------------------------------------------------------------- /example-projects/game-processor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/index.js -------------------------------------------------------------------------------- /example-projects/game-processor/mosquitto/config/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/mosquitto/config/mosquitto.conf -------------------------------------------------------------------------------- /example-projects/game-processor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/package-lock.json -------------------------------------------------------------------------------- /example-projects/game-processor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/package.json -------------------------------------------------------------------------------- /example-projects/game-processor/scenario.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/example-projects/game-processor/scenario.yaml -------------------------------------------------------------------------------- /github-repobanner-simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/github-repobanner-simulator.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/index.js -------------------------------------------------------------------------------- /mqtt.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/package.json -------------------------------------------------------------------------------- /simulator_screenshot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/simulator_screenshot.JPG -------------------------------------------------------------------------------- /src/RequestHandler/HandlerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/RequestHandler/HandlerFactory.js -------------------------------------------------------------------------------- /src/RequestHandler/RequestManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/RequestHandler/RequestManager.js -------------------------------------------------------------------------------- /src/RequestHandler/mqttHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/RequestHandler/mqttHandler.js -------------------------------------------------------------------------------- /src/Schema/SimulationPlotSchema_0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/Schema/SimulationPlotSchema_0.0.1.json -------------------------------------------------------------------------------- /src/Schema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/Schema/index.js -------------------------------------------------------------------------------- /src/bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/bin/cli.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parser/GenerateOperationsAndScenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/GenerateOperationsAndScenarios.js -------------------------------------------------------------------------------- /src/parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/index.js -------------------------------------------------------------------------------- /src/parser/parseFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/parseFiles.js -------------------------------------------------------------------------------- /src/parser/tests/expectedOutputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/expectedOutputs.js -------------------------------------------------------------------------------- /src/parser/tests/files/correct/CorrectlyFormattedAsyncApi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/files/correct/CorrectlyFormattedAsyncApi.yaml -------------------------------------------------------------------------------- /src/parser/tests/files/correct/CorrectlyFormattedScenario.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/files/correct/CorrectlyFormattedScenario.yaml -------------------------------------------------------------------------------- /src/parser/tests/files/wrong/IncorrectlyFormattedAsyncApi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/files/wrong/IncorrectlyFormattedAsyncApi.yaml -------------------------------------------------------------------------------- /src/parser/tests/files/wrong/IncorrectlyFormattedScenario.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/files/wrong/IncorrectlyFormattedScenario.yaml -------------------------------------------------------------------------------- /src/parser/tests/operationsGenerator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/operationsGenerator.test.js -------------------------------------------------------------------------------- /src/parser/tests/parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/src/parser/tests/parser.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/simulator/HEAD/tsconfig.json --------------------------------------------------------------------------------