@eventcatalog/core 1.2.7 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changeset/config.json +11 -0
- package/.github/CODEOWNERS +3 -0
- package/.github/ISSUE_TEMPLATE.md +1 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +18 -0
- package/.github/funding.yml +1 -0
- package/.github/workflows/lint.yml +22 -0
- package/.github/workflows/release.yml +34 -0
- package/.github/workflows/verify-build.yml +27 -0
- package/.prettierignore +7 -0
- package/.prettierrc +10 -0
- package/CHANGELOG.md +10 -577
- package/LICENSE.md +21 -0
- package/README.md +192 -5
- package/astro.config.mjs +57 -0
- package/bin/dist/eventcatalog.cjs +3139 -0
- package/bin/dist/eventcatalog.d.cts +1 -0
- package/bin/dist/eventcatalog.d.ts +1 -0
- package/bin/dist/eventcatalog.js +3141 -0
- package/images/example.png +0 -0
- package/package.json +59 -52
- package/public/icons/github.svg +1 -0
- package/public/icons/x-twitter.svg +1 -0
- package/public/logo.png +0 -0
- package/public/slack-icon.svg +1 -0
- package/scripts/build-ci.js +22 -0
- package/scripts/catalog-to-astro-content-directory.js +188 -0
- package/scripts/default-files-for-collections/commands.md +8 -0
- package/scripts/default-files-for-collections/domains.md +8 -0
- package/scripts/default-files-for-collections/events.md +8 -0
- package/scripts/default-files-for-collections/services.md +8 -0
- package/scripts/default-files-for-collections/teams.md +11 -0
- package/scripts/default-files-for-collections/users.md +11 -0
- package/scripts/start-catalog-locally.js +23 -0
- package/scripts/watcher.js +53 -0
- package/src/components/DocsNavigation.astro +110 -0
- package/src/components/Header.astro +65 -0
- package/src/components/Lists/BasicList.tsx +59 -0
- package/src/components/Lists/OwnersList.tsx +101 -0
- package/src/components/Lists/PillList.tsx +67 -0
- package/src/components/Lists/VersionList.astro +29 -0
- package/src/components/MDX/Accordion/Accordion.astro +10 -0
- package/src/components/MDX/Accordion/Accordion.tsx +29 -0
- package/src/components/MDX/Accordion/AccordionGroup.astro +16 -0
- package/{components/Mdx → src/components/MDX}/Admonition.tsx +6 -5
- package/src/components/MDX/File.tsx +43 -0
- package/src/components/MDX/NodeGraph/DownloadButton.tsx +58 -0
- package/src/components/MDX/NodeGraph/NodeGraph.astro +82 -0
- package/src/components/MDX/NodeGraph/NodeGraph.tsx +135 -0
- package/src/components/MDX/NodeGraph/NodeGraphPortal.tsx +15 -0
- package/src/components/MDX/NodeGraph/Nodes/Command.tsx +74 -0
- package/src/components/MDX/NodeGraph/Nodes/Event.tsx +74 -0
- package/src/components/MDX/NodeGraph/Nodes/Service.tsx +83 -0
- package/src/components/MDX/OpenAPI/OpenAPI.tsx +35 -0
- package/src/components/MDX/Schema.tsx +45 -0
- package/src/components/MDX/components.tsx +24 -0
- package/src/components/Search.astro +108 -0
- package/src/components/Seo.astro +79 -0
- package/src/components/SideBars/DomainSideBar.astro +42 -0
- package/src/components/SideBars/MessageSideBar.astro +81 -0
- package/src/components/SideBars/ServiceSideBar.astro +93 -0
- package/src/components/Tables/DebouncedInput.tsx +32 -0
- package/src/components/Tables/Table.tsx +228 -0
- package/src/components/Tables/columns/DomainTableColumns.tsx +118 -0
- package/src/components/Tables/columns/MessageTableColumns.tsx +159 -0
- package/src/components/Tables/columns/ServiceTableColumns.tsx +162 -0
- package/src/components/Tables/columns/index.tsx +17 -0
- package/src/components/Tables/filters/custom-filters.ts +14 -0
- package/src/content/config.ts +119 -0
- package/src/env.d.ts +2 -0
- package/src/layouts/CustomDocsPageLayout.astro +100 -0
- package/src/layouts/DiscoverLayout.astro +120 -0
- package/src/layouts/DocsLayout.astro +59 -0
- package/src/layouts/PlainPage.astro +29 -0
- package/src/layouts/VisualiserLayout.astro +73 -0
- package/src/pages/discover/[type]/index.astro +36 -0
- package/src/pages/docs/[type]/[id]/[version]/index.astro +215 -0
- package/src/pages/docs/[type]/[id]/[version]/spec/index.astro +93 -0
- package/src/pages/docs/index.md +4 -0
- package/src/pages/docs/teams/[id]/index.astro +127 -0
- package/src/pages/docs/users/[id]/index.astro +132 -0
- package/src/pages/visualiser/[type]/[id]/[version]/index.astro +46 -0
- package/src/pages/visualiser/index.astro +25 -0
- package/src/remark-plugins/mermaid.ts +27 -0
- package/src/remark-plugins/remark-modified-time.mjs +9 -0
- package/src/types/index.ts +2 -0
- package/src/utils/collections/util.ts +22 -0
- package/src/utils/colors.ts +14 -0
- package/src/utils/commands/node-graph.ts +107 -0
- package/src/utils/commands.ts +60 -0
- package/src/utils/config/catalog.ts +2 -0
- package/src/utils/domains/domains.ts +50 -0
- package/src/utils/domains/node-graph.ts +60 -0
- package/src/utils/events/node-graph.ts +108 -0
- package/src/utils/events.ts +62 -0
- package/src/utils/example-remark-plugin.mjs +6 -0
- package/src/utils/messages.ts +7 -0
- package/src/utils/node-graph-utils/utils.ts +31 -0
- package/src/utils/services/node-graph.ts +133 -0
- package/src/utils/services/services.ts +88 -0
- package/src/utils/teams.ts +47 -0
- package/src/utils/users.ts +59 -0
- package/tailwind.config.mjs +24 -0
- package/tsconfig.json +11 -26
- package/.next/BUILD_ID +0 -1
- package/.next/build-manifest.json +0 -246
- package/.next/cache/.tsbuildinfo +0 -1
- package/.next/cache/config.json +0 -7
- package/.next/cache/eslint/.cache_1bay4w0 +0 -1
- package/.next/cache/next-server.js.nft.json +0 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/export-detail.json +0 -1
- package/.next/export-marker.json +0 -1
- package/.next/images-manifest.json +0 -1
- package/.next/next-server.js.nft.json +0 -1
- package/.next/package.json +0 -1
- package/.next/prerender-manifest.json +0 -1
- package/.next/react-loadable-manifest.json +0 -2112
- package/.next/required-server-files.json +0 -1
- package/.next/routes-manifest.json +0 -1
- package/.next/server/chunks/109.js +0 -608
- package/.next/server/chunks/237.js +0 -109
- package/.next/server/chunks/267.js +0 -257
- package/.next/server/chunks/274.js +0 -32
- package/.next/server/chunks/29.js +0 -675
- package/.next/server/chunks/331.js +0 -750
- package/.next/server/chunks/362.js +0 -570
- package/.next/server/chunks/428.js +0 -84
- package/.next/server/chunks/50.js +0 -466
- package/.next/server/chunks/526.js +0 -159
- package/.next/server/chunks/537.js +0 -136
- package/.next/server/chunks/788.js +0 -162
- package/.next/server/chunks/797.js +0 -92
- package/.next/server/chunks/8.js +0 -173
- package/.next/server/chunks/854.js +0 -107
- package/.next/server/chunks/938.js +0 -140
- package/.next/server/chunks/944.js +0 -721
- package/.next/server/chunks/962.js +0 -13
- package/.next/server/chunks/97.js +0 -2829
- package/.next/server/chunks/992.js +0 -50
- package/.next/server/chunks/font-manifest.json +0 -1
- package/.next/server/font-manifest.json +0 -1
- package/.next/server/middleware-manifest.json +0 -6
- package/.next/server/pages/404.html +0 -12
- package/.next/server/pages/500.html +0 -12
- package/.next/server/pages/_app.js +0 -623
- package/.next/server/pages/_app.js.nft.json +0 -1
- package/.next/server/pages/_document.js +0 -120
- package/.next/server/pages/_document.js.nft.json +0 -1
- package/.next/server/pages/_error.js +0 -148
- package/.next/server/pages/_error.js.nft.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderComplete/logs.html +0 -1
- package/.next/server/pages/domains/Orders/events/OrderComplete/logs.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderComplete.html +0 -40
- package/.next/server/pages/domains/Orders/events/OrderComplete.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderConfirmed/logs.html +0 -1
- package/.next/server/pages/domains/Orders/events/OrderConfirmed/logs.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderConfirmed.html +0 -40
- package/.next/server/pages/domains/Orders/events/OrderConfirmed.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderCreated/logs.html +0 -1
- package/.next/server/pages/domains/Orders/events/OrderCreated/logs.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderCreated.html +0 -2
- package/.next/server/pages/domains/Orders/events/OrderCreated.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderRequested/logs.html +0 -1
- package/.next/server/pages/domains/Orders/events/OrderRequested/logs.json +0 -1
- package/.next/server/pages/domains/Orders/events/OrderRequested.html +0 -40
- package/.next/server/pages/domains/Orders/events/OrderRequested.json +0 -1
- package/.next/server/pages/domains/Orders/services/Orders Service.html +0 -2
- package/.next/server/pages/domains/Orders/services/Orders Service.json +0 -1
- package/.next/server/pages/domains/Orders.html +0 -2
- package/.next/server/pages/domains/Orders.json +0 -1
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart/logs.html +0 -1
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart/logs.json +0 -1
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.1.html +0 -59
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.1.json +0 -1
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.2.html +0 -66
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.2.json +0 -1
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart.html +0 -65
- package/.next/server/pages/domains/Shopping/events/AddedItemToCart.json +0 -1
- package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart/logs.html +0 -1
- package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart/logs.json +0 -1
- package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart.html +0 -48
- package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart.json +0 -1
- package/.next/server/pages/domains/Shopping.html +0 -2
- package/.next/server/pages/domains/Shopping.json +0 -1
- package/.next/server/pages/domains/[domain]/events/[name]/logs.js +0 -345
- package/.next/server/pages/domains/[domain]/events/[name]/logs.js.nft.json +0 -1
- package/.next/server/pages/domains/[domain]/events/[name]/v/[version].js +0 -435
- package/.next/server/pages/domains/[domain]/events/[name]/v/[version].js.nft.json +0 -1
- package/.next/server/pages/domains/[domain]/events/[name].js +0 -354
- package/.next/server/pages/domains/[domain]/events/[name].js.nft.json +0 -1
- package/.next/server/pages/domains/[domain]/services/[name].js +0 -402
- package/.next/server/pages/domains/[domain]/services/[name].js.nft.json +0 -1
- package/.next/server/pages/domains/[domain].js +0 -549
- package/.next/server/pages/domains/[domain].js.nft.json +0 -1
- package/.next/server/pages/domains.html +0 -3
- package/.next/server/pages/domains.js +0 -576
- package/.next/server/pages/domains.js.nft.json +0 -1
- package/.next/server/pages/domains.json +0 -1
- package/.next/server/pages/events/PaymentProcessed/logs.html +0 -1
- package/.next/server/pages/events/PaymentProcessed/logs.json +0 -1
- package/.next/server/pages/events/PaymentProcessed.html +0 -44
- package/.next/server/pages/events/PaymentProcessed.json +0 -1
- package/.next/server/pages/events/ShipmentDelivered/logs.html +0 -1
- package/.next/server/pages/events/ShipmentDelivered/logs.json +0 -1
- package/.next/server/pages/events/ShipmentDelivered.html +0 -44
- package/.next/server/pages/events/ShipmentDelivered.json +0 -1
- package/.next/server/pages/events/ShipmentDispatched/logs.html +0 -1
- package/.next/server/pages/events/ShipmentDispatched/logs.json +0 -1
- package/.next/server/pages/events/ShipmentDispatched.html +0 -44
- package/.next/server/pages/events/ShipmentDispatched.json +0 -1
- package/.next/server/pages/events/ShipmentPrepared/logs.html +0 -1
- package/.next/server/pages/events/ShipmentPrepared/logs.json +0 -1
- package/.next/server/pages/events/ShipmentPrepared.html +0 -2
- package/.next/server/pages/events/ShipmentPrepared.json +0 -1
- package/.next/server/pages/events/[name]/logs.js +0 -263
- package/.next/server/pages/events/[name]/logs.js.nft.json +0 -1
- package/.next/server/pages/events/[name]/v/[version].js +0 -431
- package/.next/server/pages/events/[name]/v/[version].js.nft.json +0 -1
- package/.next/server/pages/events/[name].js +0 -354
- package/.next/server/pages/events/[name].js.nft.json +0 -1
- package/.next/server/pages/events.html +0 -11
- package/.next/server/pages/events.js +0 -789
- package/.next/server/pages/events.js.nft.json +0 -1
- package/.next/server/pages/events.json +0 -1
- package/.next/server/pages/index.html +0 -1
- package/.next/server/pages/index.js.nft.json +0 -1
- package/.next/server/pages/overview.html +0 -1
- package/.next/server/pages/overview.js +0 -240
- package/.next/server/pages/overview.js.nft.json +0 -1
- package/.next/server/pages/overview.json +0 -1
- package/.next/server/pages/services/Orders Service.html +0 -1
- package/.next/server/pages/services/Orders Service.json +0 -1
- package/.next/server/pages/services/Payment Service.html +0 -2
- package/.next/server/pages/services/Payment Service.json +0 -1
- package/.next/server/pages/services/Shipping Service.html +0 -2
- package/.next/server/pages/services/Shipping Service.json +0 -1
- package/.next/server/pages/services/[name].js +0 -319
- package/.next/server/pages/services/[name].js.nft.json +0 -1
- package/.next/server/pages/services.html +0 -4
- package/.next/server/pages/services.js +0 -741
- package/.next/server/pages/services.js.nft.json +0 -1
- package/.next/server/pages/services.json +0 -1
- package/.next/server/pages/users/[id].js +0 -475
- package/.next/server/pages/users/[id].js.nft.json +0 -1
- package/.next/server/pages/users/dboyne.html +0 -16
- package/.next/server/pages/users/dboyne.json +0 -1
- package/.next/server/pages/users/mSmith.html +0 -13
- package/.next/server/pages/users/mSmith.json +0 -1
- package/.next/server/pages/users.html +0 -1
- package/.next/server/pages/users.js.nft.json +0 -1
- package/.next/server/pages/visualiser.html +0 -16
- package/.next/server/pages/visualiser.js +0 -739
- package/.next/server/pages/visualiser.js.nft.json +0 -1
- package/.next/server/pages/visualiser.json +0 -1
- package/.next/server/pages-manifest.json +0 -23
- package/.next/server/webpack-runtime.js +0 -259
- package/.next/static/chunks/020d8314.2bae2f29ef0060e4.js +0 -1
- package/.next/static/chunks/1093.67f04e0e6b50c9e5.js +0 -1
- package/.next/static/chunks/1178-c3c8c74ac08d7c77.js +0 -1
- package/.next/static/chunks/1254.a78e9444e102b061.js +0 -1
- package/.next/static/chunks/130.fa515915f80e17f9.js +0 -1
- package/.next/static/chunks/1318.a5349c1b3da2b184.js +0 -1
- package/.next/static/chunks/1415.55c7c89ef0a8aab1.js +0 -1
- package/.next/static/chunks/1455-8df9e334899797b2.js +0 -1
- package/.next/static/chunks/172-940ad0353b57ff98.js +0 -1
- package/.next/static/chunks/1733.1bead33faaa9eeb0.js +0 -1
- package/.next/static/chunks/1806.3ed762ab3ecedc9d.js +0 -1
- package/.next/static/chunks/2157.cd3aa9fee64d976e.js +0 -1
- package/.next/static/chunks/2566.4084969752c613a9.js +0 -1
- package/.next/static/chunks/2620-21775e17d8a6a407.js +0 -1
- package/.next/static/chunks/2edb282b-45c56c19221816df.js +0 -1
- package/.next/static/chunks/3116-446dd88b93c44018.js +0 -1
- package/.next/static/chunks/3193.f69abc67598575a9.js +0 -1
- package/.next/static/chunks/3260.00ac1405e82b8dd9.js +0 -1
- package/.next/static/chunks/3271.83723868c9b8e7c1.js +0 -1
- package/.next/static/chunks/3287.f50c49237cef9ae8.js +0 -1
- package/.next/static/chunks/39a9cf3f.8cc8ac3887be2999.js +0 -1
- package/.next/static/chunks/3ede58a6.44fda8e0e5284248.js +0 -1
- package/.next/static/chunks/40.16abe9d3c57256d6.js +0 -1
- package/.next/static/chunks/407.3078ab29e8d18c02.js +0 -1
- package/.next/static/chunks/438.dea6dada9bd4b683.js +0 -1
- package/.next/static/chunks/4384-8a28a71e7e3b8d8a.js +0 -1
- package/.next/static/chunks/4466.dc03dbcd026995cc.js +0 -1
- package/.next/static/chunks/4737.ae583b848d202a93.js +0 -1
- package/.next/static/chunks/5048.73fa7a6d734ba5ef.js +0 -1
- package/.next/static/chunks/5092.8ead508f86f4b11c.js +0 -1
- package/.next/static/chunks/5493-b00dc3d50ab46716.js +0 -1
- package/.next/static/chunks/5835.a9405ab0913544df.js +0 -1
- package/.next/static/chunks/6067.cc75c37618cf0147.js +0 -1
- package/.next/static/chunks/6121.758a43c0db92ca23.js +0 -1
- package/.next/static/chunks/6229.7a9f0c8b204b76dc.js +0 -1
- package/.next/static/chunks/6487.44c6e83c098ed47f.js +0 -1
- package/.next/static/chunks/6582.06af6897be0d24b3.js +0 -1
- package/.next/static/chunks/6724.ed1280c926906c76.js +0 -1
- package/.next/static/chunks/6772-fc6143a6584acf9b.js +0 -1
- package/.next/static/chunks/6790-f4527d80153a3e25.js +0 -1
- package/.next/static/chunks/7005-09e42f99859b8d03.js +0 -1
- package/.next/static/chunks/7109-c8d3fde4c3b6798e.js +0 -1
- package/.next/static/chunks/7374.a673e317f007d3b6.js +0 -1
- package/.next/static/chunks/74030e57.9636ad3c5c96940b.js +0 -1
- package/.next/static/chunks/7458.1de01a44cd67f6f0.js +0 -1
- package/.next/static/chunks/7469.d932a6b01168373b.js +0 -1
- package/.next/static/chunks/7636.9eaf88a09c2a88ed.js +0 -1
- package/.next/static/chunks/7f5d3f51-659399fe6f04b9eb.js +0 -1
- package/.next/static/chunks/8264-a1b0376ff4b3d4da.js +0 -1
- package/.next/static/chunks/828-1a4a120d2fbea802.js +0 -1
- package/.next/static/chunks/8341-b8d844d6f606aed5.js +0 -1
- package/.next/static/chunks/8470.c811187bd2982a8a.js +0 -1
- package/.next/static/chunks/9076.0a13d7d5aab7bfa1.js +0 -1
- package/.next/static/chunks/9097.1efc23284d82765c.js +0 -1
- package/.next/static/chunks/9270.a4c64e6be4a278a4.js +0 -1
- package/.next/static/chunks/9404.a44dfe8858add605.js +0 -1
- package/.next/static/chunks/9497.49670ee9a8bd76f7.js +0 -1
- package/.next/static/chunks/9930.28415573db2b7806.js +0 -7
- package/.next/static/chunks/b2f22a9c-0216e9400ac0ac1c.js +0 -1
- package/.next/static/chunks/b9e0c7b4-52b02c0d4f161186.js +0 -1
- package/.next/static/chunks/eb6e03f4.3dd8d555aebe18ff.js +0 -1
- package/.next/static/chunks/f4df0e03.56d1c15b5532ab26.js +0 -1
- package/.next/static/chunks/framework-6cc1bceeaaf75e91.js +0 -1
- package/.next/static/chunks/main-da37322a396d572a.js +0 -1
- package/.next/static/chunks/pages/_app-d40841fd52b70886.js +0 -1
- package/.next/static/chunks/pages/_error-c36fa6f7fd569cf6.js +0 -1
- package/.next/static/chunks/pages/domains/[domain]/events/[name]/logs-350f383eed1cf3f8.js +0 -1
- package/.next/static/chunks/pages/domains/[domain]/events/[name]/v/[version]-45b0d7bc42f6f81c.js +0 -1
- package/.next/static/chunks/pages/domains/[domain]/events/[name]-15bb0ef487953fa1.js +0 -1
- package/.next/static/chunks/pages/domains/[domain]/services/[name]-a4857d4d0aa4d04b.js +0 -1
- package/.next/static/chunks/pages/domains/[domain]-ea20e2daae1794fc.js +0 -1
- package/.next/static/chunks/pages/domains-71179cbdb719a0f8.js +0 -1
- package/.next/static/chunks/pages/events/[name]/logs-695c5b2cfd996539.js +0 -1
- package/.next/static/chunks/pages/events/[name]/v/[version]-b718302d7185dcb0.js +0 -1
- package/.next/static/chunks/pages/events/[name]-8cb0b3b469bd7845.js +0 -1
- package/.next/static/chunks/pages/events-83c9161a6e696533.js +0 -1
- package/.next/static/chunks/pages/index-68062a10328e7d10.js +0 -1
- package/.next/static/chunks/pages/overview-4251cc856f776fc2.js +0 -1
- package/.next/static/chunks/pages/services/[name]-7030da24d73a8ea3.js +0 -1
- package/.next/static/chunks/pages/services-7069c0a5295e53ae.js +0 -1
- package/.next/static/chunks/pages/users/[id]-00aeace648436383.js +0 -1
- package/.next/static/chunks/pages/users-412f257b1de51363.js +0 -1
- package/.next/static/chunks/pages/visualiser-8474d03175cf9d12.js +0 -1
- package/.next/static/chunks/polyfills-c67a75d1b6f99dc8.js +0 -1
- package/.next/static/chunks/webpack-1ea4cabfc6778694.js +0 -1
- package/.next/static/css/7e14b4dede1671ad.css +0 -1
- package/.next/static/css/94b9a747218712b2.css +0 -3
- package/.next/static/css/ae8abf3666c55019.css +0 -5
- package/.next/static/css/cc3c8fcadcf7a58b.css +0 -1
- package/.next/static/css/deb57cf90a65a90f.css +0 -1
- package/.next/static/css/ed97de5465a152bb.css +0 -1
- package/.next/static/wZIh57Hs672ULoPeUaYa1/_buildManifest.js +0 -1
- package/.next/static/wZIh57Hs672ULoPeUaYa1/_ssgManifest.js +0 -1
- package/.next/trace +0 -141
- package/bin/eventcatalog.js +0 -141
- package/components/BreadCrumbs.tsx +0 -50
- package/components/ContentView.tsx +0 -123
- package/components/Footer.tsx +0 -31
- package/components/Grids/DomainGrid.tsx +0 -61
- package/components/Grids/EventGrid.tsx +0 -102
- package/components/Grids/ServiceGrid.tsx +0 -84
- package/components/Grids/UserGrid.tsx +0 -55
- package/components/Header.tsx +0 -74
- package/components/Mdx/AsyncApiSpec.tsx +0 -25
- package/components/Mdx/Examples.tsx +0 -70
- package/components/Mdx/NodeGraph/GraphElements.tsx +0 -294
- package/components/Mdx/NodeGraph/GraphLayout.ts +0 -110
- package/components/Mdx/NodeGraph/Node.tsx +0 -15
- package/components/Mdx/NodeGraph/NodeGraph.tsx +0 -168
- package/components/Mdx/NodeGraph/__tests__/GraphElements.spec.ts +0 -102
- package/components/Mdx/NodeGraph/__tests__/GraphLayout.spec.ts +0 -115
- package/components/Mdx/NodeGraph/__tests__/__snapshots__/GraphElements.spec.ts.snap +0 -559
- package/components/Mdx/NodeGraph/__tests__/__snapshots__/GraphLayout.spec.ts.snap +0 -81
- package/components/Mdx/OpenApiSpec.tsx +0 -21
- package/components/Mdx/SchemaViewer/SchemaViewer.module.css +0 -5
- package/components/Mdx/SchemaViewer/SchemaViewer.tsx +0 -34
- package/components/Mermaid/index.tsx +0 -58
- package/components/NotFound/index.tsx +0 -40
- package/components/Sidebars/DomainSidebar.tsx +0 -55
- package/components/Sidebars/EventSidebar.tsx +0 -172
- package/components/Sidebars/ServiceSidebar.tsx +0 -128
- package/components/Sidebars/components/ExternalLinks.tsx +0 -28
- package/components/Sidebars/components/ItemList.tsx +0 -32
- package/components/Sidebars/components/Owners.tsx +0 -38
- package/components/Sidebars/components/Tags.tsx +0 -45
- package/components/SyntaxHighlighter.tsx +0 -42
- package/eventcatalog.config.js +0 -58
- package/eventcatalog.styles.css +0 -15
- package/hooks/EventCatalog.tsx +0 -54
- package/lib/__tests__/assets/domains/User/events/UserCreated/index.md +0 -20
- package/lib/__tests__/assets/domains/User/events/UserRemoved/examples/Basic.cs +0 -31
- package/lib/__tests__/assets/domains/User/events/UserRemoved/examples/Basic.js +0 -1
- package/lib/__tests__/assets/domains/User/events/UserRemoved/index.md +0 -16
- package/lib/__tests__/assets/domains/User/events/UserRemoved/schema.json +0 -4
- package/lib/__tests__/assets/domains/User/index.md +0 -16
- package/lib/__tests__/assets/domains/User/services/User Service/index.md +0 -19
- package/lib/__tests__/assets/events/AddedItemToCart/index.md +0 -25
- package/lib/__tests__/assets/events/EmailSent/index.md +0 -15
- package/lib/__tests__/assets/events/EventWithSchemaAndExamples/examples/Basic.cs +0 -31
- package/lib/__tests__/assets/events/EventWithSchemaAndExamples/examples/Basic.js +0 -1
- package/lib/__tests__/assets/events/EventWithSchemaAndExamples/index.md +0 -8
- package/lib/__tests__/assets/events/EventWithSchemaAndExamples/schema.json +0 -4
- package/lib/__tests__/assets/events/EventWithVersions/index.md +0 -10
- package/lib/__tests__/assets/events/EventWithVersions/versioned/0.0.1/index.md +0 -10
- package/lib/__tests__/assets/services/Basket Service/index.md +0 -26
- package/lib/__tests__/assets/services/Email Platform/index.md +0 -17
- package/lib/__tests__/assets/services/Payment Service/index.md +0 -7
- package/lib/__tests__/domains.spec.ts +0 -416
- package/lib/__tests__/events.spec.ts +0 -514
- package/lib/__tests__/file-reader.spec.ts +0 -69
- package/lib/__tests__/graphs.spec.ts +0 -88
- package/lib/__tests__/services.spec.ts +0 -268
- package/lib/analytics.ts +0 -30
- package/lib/domains.ts +0 -160
- package/lib/events.ts +0 -313
- package/lib/file-reader.ts +0 -76
- package/lib/graphs.ts +0 -92
- package/lib/services.ts +0 -126
- package/next-env.d.ts +0 -5
- package/next.config.js +0 -11
- package/out/404/index.html +0 -12
- package/out/404.html +0 -12
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderComplete/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderComplete.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderConfirmed/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderConfirmed.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderCreated/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderCreated.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderRequested/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/events/OrderRequested.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders/services/Orders Service.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Orders.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping/events/AddedItemToCart/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping/events/AddedItemToCart/v/0.0.1.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping/events/AddedItemToCart/v/0.0.2.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping/events/AddedItemToCart.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping/events/RemovedItemFromCart/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping/events/RemovedItemFromCart.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains/Shopping.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/domains.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/PaymentProcessed/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/PaymentProcessed.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/ShipmentDelivered/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/ShipmentDelivered.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/ShipmentDispatched/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/ShipmentDispatched.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/ShipmentPrepared/logs.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events/ShipmentPrepared.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/events.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/overview.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/services/Orders Service.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/services/Payment Service.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/services/Shipping Service.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/services.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/users/dboyne.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/users/mSmith.json +0 -1
- package/out/_next/data/wZIh57Hs672ULoPeUaYa1/visualiser.json +0 -1
- package/out/_next/static/chunks/020d8314.2bae2f29ef0060e4.js +0 -1
- package/out/_next/static/chunks/1093.67f04e0e6b50c9e5.js +0 -1
- package/out/_next/static/chunks/1178-c3c8c74ac08d7c77.js +0 -1
- package/out/_next/static/chunks/1254.a78e9444e102b061.js +0 -1
- package/out/_next/static/chunks/130.fa515915f80e17f9.js +0 -1
- package/out/_next/static/chunks/1318.a5349c1b3da2b184.js +0 -1
- package/out/_next/static/chunks/1415.55c7c89ef0a8aab1.js +0 -1
- package/out/_next/static/chunks/1455-8df9e334899797b2.js +0 -1
- package/out/_next/static/chunks/172-940ad0353b57ff98.js +0 -1
- package/out/_next/static/chunks/1733.1bead33faaa9eeb0.js +0 -1
- package/out/_next/static/chunks/1806.3ed762ab3ecedc9d.js +0 -1
- package/out/_next/static/chunks/2157.cd3aa9fee64d976e.js +0 -1
- package/out/_next/static/chunks/2566.4084969752c613a9.js +0 -1
- package/out/_next/static/chunks/2620-21775e17d8a6a407.js +0 -1
- package/out/_next/static/chunks/2edb282b-45c56c19221816df.js +0 -1
- package/out/_next/static/chunks/3116-446dd88b93c44018.js +0 -1
- package/out/_next/static/chunks/3193.f69abc67598575a9.js +0 -1
- package/out/_next/static/chunks/3260.00ac1405e82b8dd9.js +0 -1
- package/out/_next/static/chunks/3271.83723868c9b8e7c1.js +0 -1
- package/out/_next/static/chunks/3287.f50c49237cef9ae8.js +0 -1
- package/out/_next/static/chunks/39a9cf3f.8cc8ac3887be2999.js +0 -1
- package/out/_next/static/chunks/3ede58a6.44fda8e0e5284248.js +0 -1
- package/out/_next/static/chunks/40.16abe9d3c57256d6.js +0 -1
- package/out/_next/static/chunks/407.3078ab29e8d18c02.js +0 -1
- package/out/_next/static/chunks/438.dea6dada9bd4b683.js +0 -1
- package/out/_next/static/chunks/4384-8a28a71e7e3b8d8a.js +0 -1
- package/out/_next/static/chunks/4466.dc03dbcd026995cc.js +0 -1
- package/out/_next/static/chunks/4737.ae583b848d202a93.js +0 -1
- package/out/_next/static/chunks/5048.73fa7a6d734ba5ef.js +0 -1
- package/out/_next/static/chunks/5092.8ead508f86f4b11c.js +0 -1
- package/out/_next/static/chunks/5493-b00dc3d50ab46716.js +0 -1
- package/out/_next/static/chunks/5835.a9405ab0913544df.js +0 -1
- package/out/_next/static/chunks/6067.cc75c37618cf0147.js +0 -1
- package/out/_next/static/chunks/6121.758a43c0db92ca23.js +0 -1
- package/out/_next/static/chunks/6229.7a9f0c8b204b76dc.js +0 -1
- package/out/_next/static/chunks/6487.44c6e83c098ed47f.js +0 -1
- package/out/_next/static/chunks/6582.06af6897be0d24b3.js +0 -1
- package/out/_next/static/chunks/6724.ed1280c926906c76.js +0 -1
- package/out/_next/static/chunks/6772-fc6143a6584acf9b.js +0 -1
- package/out/_next/static/chunks/6790-f4527d80153a3e25.js +0 -1
- package/out/_next/static/chunks/7005-09e42f99859b8d03.js +0 -1
- package/out/_next/static/chunks/7109-c8d3fde4c3b6798e.js +0 -1
- package/out/_next/static/chunks/7374.a673e317f007d3b6.js +0 -1
- package/out/_next/static/chunks/74030e57.9636ad3c5c96940b.js +0 -1
- package/out/_next/static/chunks/7458.1de01a44cd67f6f0.js +0 -1
- package/out/_next/static/chunks/7469.d932a6b01168373b.js +0 -1
- package/out/_next/static/chunks/7636.9eaf88a09c2a88ed.js +0 -1
- package/out/_next/static/chunks/7f5d3f51-659399fe6f04b9eb.js +0 -1
- package/out/_next/static/chunks/8264-a1b0376ff4b3d4da.js +0 -1
- package/out/_next/static/chunks/828-1a4a120d2fbea802.js +0 -1
- package/out/_next/static/chunks/8341-b8d844d6f606aed5.js +0 -1
- package/out/_next/static/chunks/8470.c811187bd2982a8a.js +0 -1
- package/out/_next/static/chunks/9076.0a13d7d5aab7bfa1.js +0 -1
- package/out/_next/static/chunks/9097.1efc23284d82765c.js +0 -1
- package/out/_next/static/chunks/9270.a4c64e6be4a278a4.js +0 -1
- package/out/_next/static/chunks/9404.a44dfe8858add605.js +0 -1
- package/out/_next/static/chunks/9497.49670ee9a8bd76f7.js +0 -1
- package/out/_next/static/chunks/9930.28415573db2b7806.js +0 -7
- package/out/_next/static/chunks/b2f22a9c-0216e9400ac0ac1c.js +0 -1
- package/out/_next/static/chunks/b9e0c7b4-52b02c0d4f161186.js +0 -1
- package/out/_next/static/chunks/eb6e03f4.3dd8d555aebe18ff.js +0 -1
- package/out/_next/static/chunks/f4df0e03.56d1c15b5532ab26.js +0 -1
- package/out/_next/static/chunks/framework-6cc1bceeaaf75e91.js +0 -1
- package/out/_next/static/chunks/main-da37322a396d572a.js +0 -1
- package/out/_next/static/chunks/pages/_app-d40841fd52b70886.js +0 -1
- package/out/_next/static/chunks/pages/_error-c36fa6f7fd569cf6.js +0 -1
- package/out/_next/static/chunks/pages/domains/[domain]/events/[name]/logs-350f383eed1cf3f8.js +0 -1
- package/out/_next/static/chunks/pages/domains/[domain]/events/[name]/v/[version]-45b0d7bc42f6f81c.js +0 -1
- package/out/_next/static/chunks/pages/domains/[domain]/events/[name]-15bb0ef487953fa1.js +0 -1
- package/out/_next/static/chunks/pages/domains/[domain]/services/[name]-a4857d4d0aa4d04b.js +0 -1
- package/out/_next/static/chunks/pages/domains/[domain]-ea20e2daae1794fc.js +0 -1
- package/out/_next/static/chunks/pages/domains-71179cbdb719a0f8.js +0 -1
- package/out/_next/static/chunks/pages/events/[name]/logs-695c5b2cfd996539.js +0 -1
- package/out/_next/static/chunks/pages/events/[name]/v/[version]-b718302d7185dcb0.js +0 -1
- package/out/_next/static/chunks/pages/events/[name]-8cb0b3b469bd7845.js +0 -1
- package/out/_next/static/chunks/pages/events-83c9161a6e696533.js +0 -1
- package/out/_next/static/chunks/pages/index-68062a10328e7d10.js +0 -1
- package/out/_next/static/chunks/pages/overview-4251cc856f776fc2.js +0 -1
- package/out/_next/static/chunks/pages/services/[name]-7030da24d73a8ea3.js +0 -1
- package/out/_next/static/chunks/pages/services-7069c0a5295e53ae.js +0 -1
- package/out/_next/static/chunks/pages/users/[id]-00aeace648436383.js +0 -1
- package/out/_next/static/chunks/pages/users-412f257b1de51363.js +0 -1
- package/out/_next/static/chunks/pages/visualiser-8474d03175cf9d12.js +0 -1
- package/out/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js +0 -1
- package/out/_next/static/chunks/webpack-1ea4cabfc6778694.js +0 -1
- package/out/_next/static/css/7e14b4dede1671ad.css +0 -1
- package/out/_next/static/css/94b9a747218712b2.css +0 -3
- package/out/_next/static/css/ae8abf3666c55019.css +0 -5
- package/out/_next/static/css/cc3c8fcadcf7a58b.css +0 -1
- package/out/_next/static/css/deb57cf90a65a90f.css +0 -1
- package/out/_next/static/css/ed97de5465a152bb.css +0 -1
- package/out/_next/static/wZIh57Hs672ULoPeUaYa1/_buildManifest.js +0 -1
- package/out/_next/static/wZIh57Hs672ULoPeUaYa1/_ssgManifest.js +0 -1
- package/out/domains/Orders/events/OrderComplete/index.html +0 -40
- package/out/domains/Orders/events/OrderComplete/logs/index.html +0 -1
- package/out/domains/Orders/events/OrderConfirmed/index.html +0 -40
- package/out/domains/Orders/events/OrderConfirmed/logs/index.html +0 -1
- package/out/domains/Orders/events/OrderCreated/index.html +0 -2
- package/out/domains/Orders/events/OrderCreated/logs/index.html +0 -1
- package/out/domains/Orders/events/OrderRequested/index.html +0 -40
- package/out/domains/Orders/events/OrderRequested/logs/index.html +0 -1
- package/out/domains/Orders/index.html +0 -2
- package/out/domains/Orders/services/Orders Service/index.html +0 -2
- package/out/domains/Shopping/events/AddedItemToCart/index.html +0 -65
- package/out/domains/Shopping/events/AddedItemToCart/logs/index.html +0 -1
- package/out/domains/Shopping/events/AddedItemToCart/v/0.0.1/index.html +0 -59
- package/out/domains/Shopping/events/AddedItemToCart/v/0.0.2/index.html +0 -66
- package/out/domains/Shopping/events/RemovedItemFromCart/index.html +0 -48
- package/out/domains/Shopping/events/RemovedItemFromCart/logs/index.html +0 -1
- package/out/domains/Shopping/index.html +0 -2
- package/out/domains/index.html +0 -3
- package/out/events/PaymentProcessed/index.html +0 -44
- package/out/events/PaymentProcessed/logs/index.html +0 -1
- package/out/events/ShipmentDelivered/index.html +0 -44
- package/out/events/ShipmentDelivered/logs/index.html +0 -1
- package/out/events/ShipmentDispatched/index.html +0 -44
- package/out/events/ShipmentDispatched/logs/index.html +0 -1
- package/out/events/ShipmentPrepared/index.html +0 -2
- package/out/events/ShipmentPrepared/logs/index.html +0 -1
- package/out/events/index.html +0 -11
- package/out/favicon.ico +0 -0
- package/out/index.html +0 -1
- package/out/logo-random.svg +0 -114
- package/out/logo.svg +0 -44
- package/out/opengraph.png +0 -0
- package/out/overview/index.html +0 -1
- package/out/services/Orders Service/index.html +0 -1
- package/out/services/Payment Service/index.html +0 -2
- package/out/services/Shipping Service/index.html +0 -2
- package/out/services/index.html +0 -4
- package/out/users/dboyne/index.html +0 -16
- package/out/users/index.html +0 -1
- package/out/users/mSmith/index.html +0 -13
- package/out/visualiser/index.html +0 -16
- package/pages/_app.tsx +0 -111
- package/pages/_document.tsx +0 -18
- package/pages/domains/[domain]/events/[name]/logs.tsx +0 -35
- package/pages/domains/[domain]/events/[name]/v/[version].tsx +0 -39
- package/pages/domains/[domain]/events/[name].tsx +0 -46
- package/pages/domains/[domain]/index.tsx +0 -137
- package/pages/domains/[domain]/services/[name].tsx +0 -42
- package/pages/domains.tsx +0 -210
- package/pages/events/[name]/logs.tsx +0 -177
- package/pages/events/[name]/v/[version].tsx +0 -38
- package/pages/events/[name].tsx +0 -223
- package/pages/events.tsx +0 -357
- package/pages/index.tsx +0 -56
- package/pages/overview.tsx +0 -89
- package/pages/services/[name].tsx +0 -164
- package/pages/services.tsx +0 -311
- package/pages/users/[id].tsx +0 -101
- package/pages/users.tsx +0 -43
- package/pages/visualiser.tsx +0 -322
- package/postcss.config.js +0 -6
- package/public/logo-random.svg +0 -114
- package/public/logo.svg +0 -44
- package/scripts/__tests__/assets/eventcatalog.config.js +0 -32
- package/scripts/__tests__/generate.spec.ts +0 -36
- package/scripts/generate.js +0 -28
- package/scripts/move-schemas-for-download.js +0 -80
- package/styles/Home.module.css +0 -116
- package/styles/globals.css +0 -85
- package/tailwind.config.js +0 -36
- package/types/index.ts +0 -7
- package/utils/random-bg.ts +0 -13
- /package/{lib/__tests__/assets/services/Payment Service/openapi.yaml → public/openapi.yml} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,593 +1,26 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @eventcatalogtest/core-test
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.26
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 41d0bc0: chore(core): update logo
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## 2.0.25
|
|
10
10
|
|
|
11
11
|
### Patch Changes
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- 9ed0592: testing
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## 2.0.24
|
|
16
16
|
|
|
17
17
|
### Patch Changes
|
|
18
18
|
|
|
19
|
-
-
|
|
19
|
+
- 81bb9e5: feat(core): add ability to navigate between node graphs
|
|
20
|
+
- 4eb3d29: chore(fix): builds
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
## 1.2.4
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- [`821a1a7`](https://github.com/boyney123/eventcatalog/commit/821a1a7553dbfebb6793923d1e49a81fee27826d) [#482](https://github.com/boyney123/eventcatalog/pull/482) Thanks [@WaYdotNET](https://github.com/WaYdotNET)! - fix: visualization of asyncapi: 3.0.0 file
|
|
28
|
-
|
|
29
|
-
## 1.2.3
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- [`c2faad3`](https://github.com/boyney123/eventcatalog/commit/c2faad32c756589f4e11e82b7a5b659257e6b98b) [#480](https://github.com/boyney123/eventcatalog/pull/480) Thanks [@boyney123](https://github.com/boyney123)! - fix: bug when copy styles over
|
|
34
|
-
|
|
35
|
-
## 1.2.2
|
|
36
|
-
|
|
37
|
-
### Patch Changes
|
|
38
|
-
|
|
39
|
-
- [`e8846cb`](https://github.com/boyney123/eventcatalog/commit/e8846cb66620581e6cc33a0c8d36ddac912c78b9) [#477](https://github.com/boyney123/eventcatalog/pull/477) Thanks [@boyney123](https://github.com/boyney123)! - feat - fixing copy over
|
|
40
|
-
|
|
41
|
-
## 1.2.1
|
|
42
|
-
|
|
43
|
-
### Patch Changes
|
|
44
|
-
|
|
45
|
-
- [`65a46b1`](https://github.com/boyney123/eventcatalog/commit/65a46b1ecea14837f9cbfa5e66ba3b369f36646a) [#475](https://github.com/boyney123/eventcatalog/pull/475) Thanks [@boyney123](https://github.com/boyney123)! - feat - copy over styles on dev and build
|
|
46
|
-
|
|
47
|
-
## 1.2.0
|
|
48
|
-
|
|
49
|
-
### Minor Changes
|
|
50
|
-
|
|
51
|
-
- [`59fc853`](https://github.com/boyney123/eventcatalog/commit/59fc853878b1e3c5413f7c6fd5bf982b30165693) [#473](https://github.com/boyney123/eventcatalog/pull/473) Thanks [@boyney123](https://github.com/boyney123)! - feat - added ability to add css overrides
|
|
52
|
-
|
|
53
|
-
## 1.1.2
|
|
54
|
-
|
|
55
|
-
### Patch Changes
|
|
56
|
-
|
|
57
|
-
- [`b08f273`](https://github.com/boyney123/eventcatalog/commit/b08f2733b8f6cfea8b89e0708f3ad88bc2e9903f) [#470](https://github.com/boyney123/eventcatalog/pull/470) Thanks [@boyney123](https://github.com/boyney123)! - fix - fixed build with swagger version
|
|
58
|
-
|
|
59
|
-
## 1.1.1
|
|
60
|
-
|
|
61
|
-
### Patch Changes
|
|
62
|
-
|
|
63
|
-
- [`7eb8c93`](https://github.com/boyney123/eventcatalog/commit/7eb8c93a2f13088e45c725dc18699e4f66bdf2c5) [#462](https://github.com/boyney123/eventcatalog/pull/462) Thanks [@boyney123](https://github.com/boyney123)! - fix - copy config file on build
|
|
64
|
-
|
|
65
|
-
## 1.1.0
|
|
66
|
-
|
|
67
|
-
### Minor Changes
|
|
68
|
-
|
|
69
|
-
- [`4b34273`](https://github.com/boyney123/eventcatalog/commit/4b34273931e141a651c0a56e1bc6fba5543869eb) [#447](https://github.com/boyney123/eventcatalog/pull/447) Thanks [@rberger](https://github.com/rberger)! - Force the dependency trim to be version 0.0.3 with a resolution to eliminate a high vulnerability
|
|
70
|
-
|
|
71
|
-
## 1.0.7
|
|
72
|
-
|
|
73
|
-
### Patch Changes
|
|
74
|
-
|
|
75
|
-
- [`63abb59`](https://github.com/boyney123/eventcatalog/commit/63abb596bb2a63caad6349d93b201bac01434f79) [#445](https://github.com/boyney123/eventcatalog/pull/445) Thanks [@boyney123](https://github.com/boyney123)! - fix- build for typescript and react types
|
|
76
|
-
|
|
77
|
-
## 1.0.6
|
|
78
|
-
|
|
79
|
-
### Patch Changes
|
|
80
|
-
|
|
81
|
-
- [`fc2dcd5`](https://github.com/boyney123/eventcatalog/commit/fc2dcd5acc09ea8e03e796537e6b8597f08d5546) [#440](https://github.com/boyney123/eventcatalog/pull/440) Thanks [@rtoro](https://github.com/rtoro)! - feat - added new page for users
|
|
82
|
-
|
|
83
|
-
## 1.0.5
|
|
84
|
-
|
|
85
|
-
### Patch Changes
|
|
86
|
-
|
|
87
|
-
- [`4834e9f`](https://github.com/boyney123/eventcatalog/commit/4834e9f4d1761615e7e5d4740e98c66c00fdc99e) [#438](https://github.com/boyney123/eventcatalog/pull/438) Thanks [@boyney123](https://github.com/boyney123)! - fix: set key on rendered serices, no longer duplicates them
|
|
88
|
-
|
|
89
|
-
## 1.0.4
|
|
90
|
-
|
|
91
|
-
### Patch Changes
|
|
92
|
-
|
|
93
|
-
- [`40a6221`](https://github.com/boyney123/eventcatalog/commit/40a62216f4d9a2d4bfba525bd1f9c92cbd63ecdb) [#414](https://github.com/boyney123/eventcatalog/pull/414) Thanks [@pebbz](https://github.com/pebbz)! - chore(core) - FIX-408 - upgrade typescript
|
|
94
|
-
|
|
95
|
-
## 1.0.3
|
|
96
|
-
|
|
97
|
-
### Patch Changes
|
|
98
|
-
|
|
99
|
-
- [`9476d74`](https://github.com/boyney123/eventcatalog/commit/9476d74af8fc3af8f1aaceb4e6def77e61c5e17f) [#428](https://github.com/boyney123/eventcatalog/pull/428) Thanks [@jlee-spt](https://github.com/jlee-spt)! - feat: Allow fetching of remote asyncapi docs
|
|
100
|
-
|
|
101
|
-
## 1.0.2
|
|
102
|
-
|
|
103
|
-
### Patch Changes
|
|
104
|
-
|
|
105
|
-
- [`69298ce`](https://github.com/boyney123/eventcatalog/commit/69298ce8b46b77c2662ab789af7c00295cb7fe06) [#432](https://github.com/boyney123/eventcatalog/pull/432) Thanks [@boyney123](https://github.com/boyney123)! - chore - locking down Asyncapi version
|
|
106
|
-
|
|
107
|
-
- [`bfdd189`](https://github.com/boyney123/eventcatalog/commit/bfdd18917d3ec4e51a78dd6c4c93c445e6430e67) [#431](https://github.com/boyney123/eventcatalog/pull/431) Thanks [@jslim](https://github.com/jslim)! - Chore: including fs false by default
|
|
108
|
-
|
|
109
|
-
## 1.0.1
|
|
110
|
-
|
|
111
|
-
### Patch Changes
|
|
112
|
-
|
|
113
|
-
- [`a83e9e5`](https://github.com/boyney123/eventcatalog/commit/a83e9e5e7922689b6ac3326c680a84b9ce582c2a) [#415](https://github.com/boyney123/eventcatalog/pull/415) Thanks [@rafaelrenanpacheco](https://github.com/rafaelrenanpacheco)! - feat: sort sidebar filters
|
|
114
|
-
|
|
115
|
-
## 1.0.0
|
|
116
|
-
|
|
117
|
-
### Major Changes
|
|
118
|
-
|
|
119
|
-
- [`24634aa`](https://github.com/boyney123/eventcatalog/commit/24634aa00d14c05b56cf9fd6e5e7e7dcdd943b07) [#409](https://github.com/boyney123/eventcatalog/pull/409) Thanks [@pebbz](https://github.com/pebbz)! - FIX-276 - Fix bug 276 by upgrading packages
|
|
120
|
-
|
|
121
|
-
## 0.6.12
|
|
122
|
-
|
|
123
|
-
### Patch Changes
|
|
124
|
-
|
|
125
|
-
- [`3bf1979`](https://github.com/boyney123/eventcatalog/commit/3bf19799880cb379e8fbea1bf4cdc40b0c7be7b1) [#400](https://github.com/boyney123/eventcatalog/pull/400) Thanks [@boyney123](https://github.com/boyney123)! - feat- allow props to be used in openAPI components
|
|
126
|
-
|
|
127
|
-
## 0.6.11
|
|
128
|
-
|
|
129
|
-
### Patch Changes
|
|
130
|
-
|
|
131
|
-
- [`21c6260`](https://github.com/boyney123/eventcatalog/commit/21c6260b04bd849f93c11a571c6a6c9b55501911) [#397](https://github.com/boyney123/eventcatalog/pull/397) Thanks [@boyney123](https://github.com/boyney123)! - feta - Adding support for OpenAPI files in events.
|
|
132
|
-
|
|
133
|
-
## 0.6.10
|
|
134
|
-
|
|
135
|
-
### Patch Changes
|
|
136
|
-
|
|
137
|
-
- [`97c0da5`](https://github.com/boyney123/eventcatalog/commit/97c0da5c2976f024286f7760cd688e93b9c53701) [#340](https://github.com/boyney123/eventcatalog/pull/340) Thanks [@michelgrootjans](https://github.com/michelgrootjans)! - - feat - added ability to show node graphs on the event and service overview pages.
|
|
138
|
-
|
|
139
|
-
## 0.6.9
|
|
140
|
-
|
|
141
|
-
### Patch Changes
|
|
142
|
-
|
|
143
|
-
- [`264b6c8`](https://github.com/boyney123/eventcatalog/commit/264b6c8525e59c76bc28bec11d093c5740cf73bf) [#328](https://github.com/boyney123/eventcatalog/pull/328) Thanks [@dremonkey](https://github.com/dremonkey)! - fix: support spaces in projectDIR path
|
|
144
|
-
|
|
145
|
-
## 0.6.8
|
|
146
|
-
|
|
147
|
-
### Patch Changes
|
|
148
|
-
|
|
149
|
-
- [`78945be`](https://github.com/boyney123/eventcatalog/commit/78945be651c48e9194794eff4a73566cb8a045b4) [#360](https://github.com/boyney123/eventcatalog/pull/360) Thanks [@boyney123](https://github.com/boyney123)! - (fix) - fixing 404 issues with domain page
|
|
150
|
-
|
|
151
|
-
## 0.6.7
|
|
152
|
-
|
|
153
|
-
### Patch Changes
|
|
154
|
-
|
|
155
|
-
- [`a93ab13`](https://github.com/boyney123/eventcatalog/commit/a93ab13bf939d8ebdfc771cc6fff23167420a403) [#350](https://github.com/boyney123/eventcatalog/pull/350) Thanks [@ldiego73](https://github.com/ldiego73)! - fix to correctly display the user when there are no events associated with a domain.
|
|
156
|
-
|
|
157
|
-
- [`a93ab13`](https://github.com/boyney123/eventcatalog/commit/a93ab13bf939d8ebdfc771cc6fff23167420a403) [#350](https://github.com/boyney123/eventcatalog/pull/350) Thanks [@ldiego73](https://github.com/ldiego73)! - fix: correct display of users in domain
|
|
158
|
-
|
|
159
|
-
## 0.6.6
|
|
160
|
-
|
|
161
|
-
### Patch Changes
|
|
162
|
-
|
|
163
|
-
- [`c8b765b`](https://github.com/boyney123/eventcatalog/commit/c8b765b62446097781fd650675b04fe1d4daa287) [#354](https://github.com/boyney123/eventcatalog/pull/354) Thanks [@rafaelrenanpacheco](https://github.com/rafaelrenanpacheco)! - feat: add event tags
|
|
164
|
-
|
|
165
|
-
## 0.6.5
|
|
166
|
-
|
|
167
|
-
### Patch Changes
|
|
168
|
-
|
|
169
|
-
- [`b63773b`](https://github.com/boyney123/eventcatalog/commit/b63773bbb774a1bbf518f3dd0195bba6c09687cd) [#348](https://github.com/boyney123/eventcatalog/pull/348) Thanks [@boyney123](https://github.com/boyney123)! - fix for 260 - nodegraphs used over mermaid graphs when writing to eve…
|
|
170
|
-
|
|
171
|
-
## 0.6.4
|
|
172
|
-
|
|
173
|
-
### Patch Changes
|
|
174
|
-
|
|
175
|
-
- [`adeda51`](https://github.com/boyney123/eventcatalog/commit/adeda51f7f1f5c375e0b54248ac33d4dd2476054) Thanks [@boyney123](https://github.com/boyney123)! - OpenAPI component now supports remote spec files.
|
|
176
|
-
|
|
177
|
-
## 0.6.3
|
|
178
|
-
|
|
179
|
-
### Patch Changes
|
|
180
|
-
|
|
181
|
-
- [`16e792e`](https://github.com/boyney123/eventcatalog/commit/16e792ea72ed524ac80108754a16f655ec6a2a91) [#336](https://github.com/boyney123/eventcatalog/pull/336) Thanks [@boyney123](https://github.com/boyney123)! - adding fix for 324 - domains with services edit link now correct
|
|
182
|
-
|
|
183
|
-
## 0.6.2
|
|
184
|
-
|
|
185
|
-
### Patch Changes
|
|
186
|
-
|
|
187
|
-
- [`8f72480`](https://github.com/boyney123/eventcatalog/commit/8f724804873317940d62b2887aa8f54ced430260) [#330](https://github.com/boyney123/eventcatalog/pull/330) Thanks [@michelgrootjans](https://github.com/michelgrootjans)! - Fix to the 3D node graph
|
|
188
|
-
|
|
189
|
-
## 0.6.1
|
|
190
|
-
|
|
191
|
-
### Patch Changes
|
|
192
|
-
|
|
193
|
-
- [`9315416`](https://github.com/boyney123/eventcatalog/commit/931541626315a753d630593083e2f1f87c7c51cc) [#320](https://github.com/boyney123/eventcatalog/pull/320) Thanks [@mikaelvesavuori](https://github.com/mikaelvesavuori)! - Mermaid component not working
|
|
194
|
-
|
|
195
|
-
## 0.6.0
|
|
196
|
-
|
|
197
|
-
### Minor Changes
|
|
198
|
-
|
|
199
|
-
- [`34358f5`](https://github.com/boyney123/eventcatalog/commit/34358f5b55fa58a8502a81ed44fb9c4b1901bdd2) [#314](https://github.com/boyney123/eventcatalog/pull/314) Thanks [@martzcodes](https://github.com/martzcodes)! - Feature: Add Badge Filtering to Domains, Events, and Services
|
|
200
|
-
|
|
201
|
-
## 0.5.2
|
|
202
|
-
|
|
203
|
-
### Patch Changes
|
|
204
|
-
|
|
205
|
-
- [`7372407`](https://github.com/boyney123/eventcatalog/commit/73724077d528d48d16bfffaa97231e7f63e3903f) [#312](https://github.com/boyney123/eventcatalog/pull/312) Thanks [@boyney123](https://github.com/boyney123)! - fix version for spotlight
|
|
206
|
-
|
|
207
|
-
## 0.5.1
|
|
208
|
-
|
|
209
|
-
### Patch Changes
|
|
210
|
-
|
|
211
|
-
- [`8419a50`](https://github.com/boyney123/eventcatalog/commit/8419a506c7ffa686fb474235474261462949f888) [#308](https://github.com/boyney123/eventcatalog/pull/308) Thanks [@boyney123](https://github.com/boyney123)! - chore: updating to minify files and change cdn for font-awesome
|
|
212
|
-
|
|
213
|
-
## 0.5.0
|
|
214
|
-
|
|
215
|
-
### Minor Changes
|
|
216
|
-
|
|
217
|
-
- [`a790134`](https://github.com/boyney123/eventcatalog/commit/a7901349fc12efce430f5aeda87d5befb03bd628) [#303](https://github.com/boyney123/eventcatalog/pull/303) Thanks [@dpwdec](https://github.com/dpwdec)! - feat: added new badges for event, services and domains
|
|
218
|
-
|
|
219
|
-
## 0.4.0
|
|
220
|
-
|
|
221
|
-
### Minor Changes
|
|
222
|
-
|
|
223
|
-
- [`cda7105`](https://github.com/boyney123/eventcatalog/commit/cda7105b03e5d5aa6fc9451552cc89c1e88e8859) [#304](https://github.com/boyney123/eventcatalog/pull/304) Thanks [@lcsbltm](https://github.com/lcsbltm)! - feat: added support for asyncapi file in service directory. Now supports new AsyncAPI MDX component.
|
|
224
|
-
|
|
225
|
-
## 0.3.4
|
|
226
|
-
|
|
227
|
-
### Patch Changes
|
|
228
|
-
|
|
229
|
-
- [`390f0a1`](https://github.com/boyney123/eventcatalog/commit/390f0a103ca011afbb7611f88f69daf06a930bd5) [#297](https://github.com/boyney123/eventcatalog/pull/297) Thanks [@boyney123](https://github.com/boyney123)! - fix - autoprefix warning in console
|
|
230
|
-
|
|
231
|
-
## 0.3.3
|
|
232
|
-
|
|
233
|
-
### Patch Changes
|
|
234
|
-
|
|
235
|
-
- [`1e30f43`](https://github.com/boyney123/eventcatalog/commit/1e30f439364143022bac7094e06bfbed11e51af9) [#295](https://github.com/boyney123/eventcatalog/pull/295) Thanks [@boyney123](https://github.com/boyney123)! - chore - update mermaid package
|
|
236
|
-
|
|
237
|
-
## 0.3.2
|
|
238
|
-
|
|
239
|
-
### Patch Changes
|
|
240
|
-
|
|
241
|
-
- [`d7368d0`](https://github.com/boyney123/eventcatalog/commit/d7368d0a5dec261e99b3f556af4c90572d4bb38c) [#293](https://github.com/boyney123/eventcatalog/pull/293) Thanks [@boyney123](https://github.com/boyney123)! - fix - allow button configuration on the homescreen
|
|
242
|
-
|
|
243
|
-
## 0.3.1
|
|
244
|
-
|
|
245
|
-
### Patch Changes
|
|
246
|
-
|
|
247
|
-
- [`8ccc733`](https://github.com/boyney123/eventcatalog/commit/8ccc733c69b7b262c6d1d9751d331a101719de42) [#291](https://github.com/boyney123/eventcatalog/pull/291) Thanks [@boyney123](https://github.com/boyney123)! - fix - overflow issues with too many examples in the Examples MDX comp…
|
|
248
|
-
|
|
249
|
-
## 0.3.0
|
|
250
|
-
|
|
251
|
-
### Minor Changes
|
|
252
|
-
|
|
253
|
-
- [`93db111`](https://github.com/boyney123/eventcatalog/commit/93db11169279435a762a8098c2f50014a5698504) [#286](https://github.com/boyney123/eventcatalog/pull/286) Thanks [@boyney123](https://github.com/boyney123)! - feat - users can now edit header links
|
|
254
|
-
|
|
255
|
-
## 0.2.20
|
|
256
|
-
|
|
257
|
-
### Patch Changes
|
|
258
|
-
|
|
259
|
-
- [`3ca978a`](https://github.com/boyney123/eventcatalog/commit/3ca978a5fd16267f3479d67c54fa0f8007f94dc9) [#281](https://github.com/boyney123/eventcatalog/pull/281) Thanks [@dytyniuk](https://github.com/dytyniuk)! - Fix a broken link behind View in Visualiser button on the Event Details page
|
|
260
|
-
|
|
261
|
-
## 0.2.19
|
|
262
|
-
|
|
263
|
-
### Patch Changes
|
|
264
|
-
|
|
265
|
-
- [`6848067`](https://github.com/boyney123/eventcatalog/commit/68480677ed079bb73c0b8e19f60e15abb3aff707) [#264](https://github.com/boyney123/eventcatalog/pull/264) Thanks [@rtoro](https://github.com/rtoro)! - feat: adding search box into service page
|
|
266
|
-
|
|
267
|
-
## 0.2.18
|
|
268
|
-
|
|
269
|
-
### Patch Changes
|
|
270
|
-
|
|
271
|
-
- [`602f726`](https://github.com/boyney123/eventcatalog/commit/602f72693f9b4f3f9dd9838dd8cad2da6c4ff6a2) [#254](https://github.com/boyney123/eventcatalog/pull/254) Thanks [@drub0y](https://github.com/drub0y)! - fix(core): Fixes getEditUrl to build URLs w/URL vs just path.join
|
|
272
|
-
|
|
273
|
-
## 0.2.17
|
|
274
|
-
|
|
275
|
-
### Patch Changes
|
|
276
|
-
|
|
277
|
-
- [`c5330cd`](https://github.com/boyney123/eventcatalog/commit/c5330cd9776de26389271a2bd7b0c589a59b0982) [#265](https://github.com/boyney123/eventcatalog/pull/265) Thanks [@boyney123](https://github.com/boyney123)! - fix: fixing small padding issues on various pages
|
|
278
|
-
|
|
279
|
-
## 0.2.16
|
|
280
|
-
|
|
281
|
-
### Patch Changes
|
|
282
|
-
|
|
283
|
-
- [`6ffc4af`](https://github.com/boyney123/eventcatalog/commit/6ffc4afe7059b98c02b496349ca624c9b672dbcb) [#261](https://github.com/boyney123/eventcatalog/pull/261) Thanks [@boyney123](https://github.com/boyney123)! - fix(core): Fixes node domain service/event linking
|
|
284
|
-
|
|
285
|
-
## 0.2.15
|
|
286
|
-
|
|
287
|
-
### Patch Changes
|
|
288
|
-
|
|
289
|
-
- [`c5cb51f`](https://github.com/boyney123/eventcatalog/commit/c5cb51f60926d2edad806de59873aadab61e0d9d) [#258](https://github.com/boyney123/eventcatalog/pull/258) Thanks [@boyney123](https://github.com/boyney123)! - fix: now checks events folder in domains before moving them to public…
|
|
290
|
-
|
|
291
|
-
## 0.2.14
|
|
292
|
-
|
|
293
|
-
### Patch Changes
|
|
294
|
-
|
|
295
|
-
- [`17a5883`](https://github.com/boyney123/eventcatalog/commit/17a5883bcc15480872c2944296fcac503bfab8c4) [#251](https://github.com/boyney123/eventcatalog/pull/251) Thanks [@boyney123](https://github.com/boyney123)! - fix: build issues with eventcatalog core
|
|
296
|
-
|
|
297
|
-
## 0.2.13
|
|
298
|
-
|
|
299
|
-
### Patch Changes
|
|
300
|
-
|
|
301
|
-
- [`5211140`](https://github.com/boyney123/eventcatalog/commit/5211140b254353b7aa1c5baead6be416a853cc9d) [#240](https://github.com/boyney123/eventcatalog/pull/240) Thanks [@thim81](https://github.com/thim81)! - feat: Analytics - Added Google Analytics option
|
|
302
|
-
|
|
303
|
-
## 0.2.12
|
|
304
|
-
|
|
305
|
-
### Patch Changes
|
|
306
|
-
|
|
307
|
-
- [`4269b19`](https://github.com/boyney123/eventcatalog/commit/4269b199809807bd08968ce4f9c6e025c5d14794) [#241](https://github.com/boyney123/eventcatalog/pull/241) Thanks [@donaldpipowitch](https://github.com/donaldpipowitch)! - chore: improve typings
|
|
308
|
-
|
|
309
|
-
## 0.2.11
|
|
310
|
-
|
|
311
|
-
### Patch Changes
|
|
312
|
-
|
|
313
|
-
- [`8c3c719`](https://github.com/boyney123/eventcatalog/commit/8c3c719b94e005921f6caec16106466da3f86992) [#244](https://github.com/boyney123/eventcatalog/pull/244) Thanks [@otbe](https://github.com/otbe)! - Fix broken links for services that have no domain on events detail page
|
|
314
|
-
|
|
315
|
-
## 0.2.10
|
|
316
|
-
|
|
317
|
-
### Patch Changes
|
|
318
|
-
|
|
319
|
-
- [`41f6b5a`](https://github.com/boyney123/eventcatalog/commit/41f6b5a03645bfac2006f80c013ed7315cbe3add) [#229](https://github.com/boyney123/eventcatalog/pull/229) Thanks [@rtoro](https://github.com/rtoro)! - feat(core): allow the use of swagger ui in service pages
|
|
320
|
-
|
|
321
|
-
## 0.2.9
|
|
322
|
-
|
|
323
|
-
### Patch Changes
|
|
324
|
-
|
|
325
|
-
- [`3740427`](https://github.com/boyney123/eventcatalog/commit/37404275e021c4d55ae43f5efbf12e321bf65025) [#230](https://github.com/boyney123/eventcatalog/pull/230) Thanks [@boyney123](https://github.com/boyney123)! - fix: visualiser now supports long names in diagram (again)
|
|
326
|
-
|
|
327
|
-
## 0.2.8
|
|
328
|
-
|
|
329
|
-
### Patch Changes
|
|
330
|
-
|
|
331
|
-
- [`2985a14`](https://github.com/boyney123/eventcatalog/commit/2985a14ecdebb5f15ea0ff6512ee88f8863e676f) [#227](https://github.com/boyney123/eventcatalog/pull/227) Thanks [@boyney123](https://github.com/boyney123)! - feat: adding new node in visualiser to show all events and services
|
|
332
|
-
|
|
333
|
-
## 0.2.7
|
|
334
|
-
|
|
335
|
-
### Patch Changes
|
|
336
|
-
|
|
337
|
-
- [`4e03a95`](https://github.com/boyney123/eventcatalog/commit/4e03a95f1420c36169232723f277e88b12c3d5f7) [#224](https://github.com/boyney123/eventcatalog/pull/224) Thanks [@boyney123](https://github.com/boyney123)! - feat: visualiser on click now sets query params
|
|
338
|
-
|
|
339
|
-
## 0.2.6
|
|
340
|
-
|
|
341
|
-
### Patch Changes
|
|
342
|
-
|
|
343
|
-
- [`ccb524a`](https://github.com/boyney123/eventcatalog/commit/ccb524abc97ec7c58b66fd8b1fcb34b0f9a7bd02) [#217](https://github.com/boyney123/eventcatalog/pull/217) Thanks [@otbe](https://github.com/otbe)! - fix: add a stable render key for events/services in visualizer
|
|
344
|
-
|
|
345
|
-
## 0.2.5
|
|
346
|
-
|
|
347
|
-
### Patch Changes
|
|
348
|
-
|
|
349
|
-
- [`65ee3da`](https://github.com/boyney123/eventcatalog/commit/65ee3daab667c0f8b960733c738e3fb12f683144) [#215](https://github.com/boyney123/eventcatalog/pull/215) Thanks [@otbe](https://github.com/otbe)! - add a stable render key for events
|
|
350
|
-
|
|
351
|
-
## 0.2.4
|
|
352
|
-
|
|
353
|
-
### Patch Changes
|
|
354
|
-
|
|
355
|
-
- [`c833a2a`](https://github.com/boyney123/eventcatalog/commit/c833a2a74b049e231c804504550b942d4dc33e70) [#213](https://github.com/boyney123/eventcatalog/pull/213) Thanks [@boyney123](https://github.com/boyney123)! - chore: update to new nextjs version
|
|
356
|
-
|
|
357
|
-
## 0.2.3
|
|
358
|
-
|
|
359
|
-
### Patch Changes
|
|
360
|
-
|
|
361
|
-
- [`a0b90f9`](https://github.com/boyney123/eventcatalog/commit/a0b90f9a4ce9bfd0409b2dff44da5f00bafdfa87) [#211](https://github.com/boyney123/eventcatalog/pull/211) Thanks [@boyney123](https://github.com/boyney123)! - fix: fixing domain mappings and change log issues with domains
|
|
362
|
-
|
|
363
|
-
## 0.2.2
|
|
364
|
-
|
|
365
|
-
### Patch Changes
|
|
366
|
-
|
|
367
|
-
- [`7dcdd9e`](https://github.com/boyney123/eventcatalog/commit/7dcdd9efa077ab9beafcb92bf4789359f9eed02c) [#209](https://github.com/boyney123/eventcatalog/pull/209) Thanks [@boyney123](https://github.com/boyney123)! - fix: now check for events dir before moving schemas
|
|
368
|
-
|
|
369
|
-
## 0.2.1
|
|
370
|
-
|
|
371
|
-
### Patch Changes
|
|
372
|
-
|
|
373
|
-
- [`ccefeee`](https://github.com/boyney123/eventcatalog/commit/ccefeeee93e80620c1c3755676bd0dbe448b4a8a) [#206](https://github.com/boyney123/eventcatalog/pull/206) Thanks [@boyney123](https://github.com/boyney123)! - feat: fixing domains and adding them to create package
|
|
374
|
-
|
|
375
|
-
## 0.2.0
|
|
376
|
-
|
|
377
|
-
### Minor Changes
|
|
378
|
-
|
|
379
|
-
- [`8352416`](https://github.com/boyney123/eventcatalog/commit/835241609aa03cb8158b7a5a1c662c57f8e22505) [#204](https://github.com/boyney123/eventcatalog/pull/204) Thanks [@boyney123](https://github.com/boyney123)! - feat: adding domain support to eventcatalog
|
|
380
|
-
|
|
381
|
-
## 0.1.19
|
|
382
|
-
|
|
383
|
-
### Patch Changes
|
|
384
|
-
|
|
385
|
-
- [`a6f5ae3`](https://github.com/boyney123/eventcatalog/commit/a6f5ae3684279b57cbb4c337e98a5373a2facabb) [#195](https://github.com/boyney123/eventcatalog/pull/195) Thanks [@donaldpipowitch](https://github.com/donaldpipowitch)! - fix(logs): break line in diff view
|
|
386
|
-
|
|
387
|
-
* [`f48322a`](https://github.com/boyney123/eventcatalog/commit/f48322ab96be22a65baa4cbd5b5ce6d7a0fadd8b) [#167](https://github.com/boyney123/eventcatalog/pull/167) Thanks [@thim81](https://github.com/thim81)! - feat: set page title, description, favicon and og metadata
|
|
388
|
-
|
|
389
|
-
## 0.1.18
|
|
390
|
-
|
|
391
|
-
### Patch Changes
|
|
392
|
-
|
|
393
|
-
- [`3eb7f3b`](https://github.com/boyney123/eventcatalog/commit/3eb7f3b98ef5061beaff4d1ebfac3874cab33c95) [#190](https://github.com/boyney123/eventcatalog/pull/190) Thanks [@boyney123](https://github.com/boyney123)! - chore: added new footer link for visualiser
|
|
394
|
-
|
|
395
|
-
## 0.1.17
|
|
396
|
-
|
|
397
|
-
### Patch Changes
|
|
398
|
-
|
|
399
|
-
- [`d57e67b`](https://github.com/boyney123/eventcatalog/commit/d57e67bf38be9391841b3c6dee6ab360b2eb1325) [#188](https://github.com/boyney123/eventcatalog/pull/188) Thanks [@boyney123](https://github.com/boyney123)! - fixing visualiser for mobile devices
|
|
400
|
-
|
|
401
|
-
## 0.1.16
|
|
402
|
-
|
|
403
|
-
### Patch Changes
|
|
404
|
-
|
|
405
|
-
- [`2d10847`](https://github.com/boyney123/eventcatalog/commit/2d108470af945e1cec59c114627878c56d7385dd) [#186](https://github.com/boyney123/eventcatalog/pull/186) Thanks [@boyney123](https://github.com/boyney123)! - feat: added new visualiser feature
|
|
406
|
-
|
|
407
|
-
## 0.1.15
|
|
408
|
-
|
|
409
|
-
### Patch Changes
|
|
410
|
-
|
|
411
|
-
- [`60bea4d`](https://github.com/boyney123/eventcatalog/commit/60bea4db471bf3c63a936b86ce7ee549e73972a6) [#182](https://github.com/boyney123/eventcatalog/pull/182) Thanks [@thim81](https://github.com/thim81)! - fix: optional title for all MDX components
|
|
412
|
-
|
|
413
|
-
* [`bf5bab4`](https://github.com/boyney123/eventcatalog/commit/bf5bab44b9be92c5888c6548694c42d1fa83a678) [#184](https://github.com/boyney123/eventcatalog/pull/184) Thanks [@thim81](https://github.com/thim81)! - fix: increase node width for NodeGraph
|
|
414
|
-
|
|
415
|
-
## 0.1.14
|
|
416
|
-
|
|
417
|
-
### Patch Changes
|
|
418
|
-
|
|
419
|
-
- [`1558d17`](https://github.com/boyney123/eventcatalog/commit/1558d17b1c9f925c8e74d22b57edbfc4195a73a6) [#178](https://github.com/boyney123/eventcatalog/pull/178) Thanks [@boyney123](https://github.com/boyney123)! - feat: added better code example component
|
|
420
|
-
|
|
421
|
-
## 0.1.13
|
|
422
|
-
|
|
423
|
-
### Patch Changes
|
|
424
|
-
|
|
425
|
-
- [`ca01bef`](https://github.com/boyney123/eventcatalog/commit/ca01bef1659b2c364210a86e0f9e916f6c1fbaa4) [#166](https://github.com/boyney123/eventcatalog/pull/166) Thanks [@thim81](https://github.com/thim81)! - feat: new nodegraph component to render services and events
|
|
426
|
-
|
|
427
|
-
## 0.1.12
|
|
428
|
-
|
|
429
|
-
### Patch Changes
|
|
430
|
-
|
|
431
|
-
- [`5dcc188`](https://github.com/boyney123/eventcatalog/commit/5dcc188dbd68f70b867e38df91211ba077f14189) [#175](https://github.com/boyney123/eventcatalog/pull/175) Thanks [@thim81](https://github.com/thim81)! - fix: mermaid diagram with pub/sub of same service now shows correctly
|
|
432
|
-
|
|
433
|
-
## 0.1.11
|
|
434
|
-
|
|
435
|
-
### Patch Changes
|
|
436
|
-
|
|
437
|
-
- [`0976201`](https://github.com/boyney123/eventcatalog/commit/0976201a6949f4a78934a4ddfb75e7ea4598caae) [#172](https://github.com/boyney123/eventcatalog/pull/172) Thanks [@boyney123](https://github.com/boyney123)! - fix: header logo now reads from config
|
|
438
|
-
|
|
439
|
-
## 0.1.10
|
|
440
|
-
|
|
441
|
-
### Patch Changes
|
|
442
|
-
|
|
443
|
-
- [`b44bd6c`](https://github.com/boyney123/eventcatalog/commit/b44bd6ca73194165e6448abebd020e3d6f3007a2) [#169](https://github.com/boyney123/eventcatalog/pull/169) Thanks [@thim81](https://github.com/thim81)! - fix: logic for services publish & subscribe nodes
|
|
444
|
-
|
|
445
|
-
## 0.1.9
|
|
446
|
-
|
|
447
|
-
### Patch Changes
|
|
448
|
-
|
|
449
|
-
- [`c4d78c7`](https://github.com/boyney123/eventcatalog/commit/c4d78c77da6bc18638c6612e865c2c8cdd596e0b) [#139](https://github.com/boyney123/eventcatalog/pull/139) Thanks [@thim81](https://github.com/thim81)! - feat: add new eventcatalog config property to set homepage url
|
|
450
|
-
|
|
451
|
-
## 0.1.8
|
|
452
|
-
|
|
453
|
-
### Patch Changes
|
|
454
|
-
|
|
455
|
-
- [`fd9b26a`](https://github.com/boyney123/eventcatalog/commit/fd9b26a24fd94e298b79b59777f148988a7c89b1) [#151](https://github.com/boyney123/eventcatalog/pull/151) Thanks [@thim81](https://github.com/thim81)! - feat: new mdx component json schema viewer
|
|
456
|
-
|
|
457
|
-
## 0.1.7
|
|
458
|
-
|
|
459
|
-
### Patch Changes
|
|
460
|
-
|
|
461
|
-
- [`740c504`](https://github.com/boyney123/eventcatalog/commit/740c5041f033aff975a7ce89e99b3722b271e2b3) [#154](https://github.com/boyney123/eventcatalog/pull/154) Thanks [@boyney123](https://github.com/boyney123)! - fix: trying to fix npm versions problem
|
|
462
|
-
|
|
463
|
-
## 0.1.6
|
|
464
|
-
|
|
465
|
-
### Patch Changes
|
|
466
|
-
|
|
467
|
-
- [`00e3c89`](https://github.com/boyney123/eventcatalog/commit/00e3c898ca8bf72bd563d246d6a2ee8620dd8284) [#143](https://github.com/boyney123/eventcatalog/pull/143) Thanks [@thim81](https://github.com/thim81)! - feat: mermaid name and link
|
|
468
|
-
|
|
469
|
-
* [`b4774fb`](https://github.com/boyney123/eventcatalog/commit/b4774fbf9773e66e1f85d71e99992e699833bf99) [#141](https://github.com/boyney123/eventcatalog/pull/141) Thanks [@thim81](https://github.com/thim81)! - bug: use title when setting page title
|
|
470
|
-
|
|
471
|
-
## 0.1.5
|
|
472
|
-
|
|
473
|
-
### Patch Changes
|
|
474
|
-
|
|
475
|
-
- [`1975995`](https://github.com/boyney123/eventcatalog/commit/1975995e2a77662742e8f7d95b827ff3cb0e4ac2) [#136](https://github.com/boyney123/eventcatalog/pull/136) Thanks [@boyney123](https://github.com/boyney123)! - fix: header link now goes to landing page
|
|
476
|
-
|
|
477
|
-
## 0.1.4
|
|
478
|
-
|
|
479
|
-
### Patch Changes
|
|
480
|
-
|
|
481
|
-
- [`71d0b85`](https://github.com/boyney123/eventcatalog/commit/71d0b85139cb057db718c10bf5f5aa6017cfe43c) [#132](https://github.com/boyney123/eventcatalog/pull/132) Thanks [@boyney123](https://github.com/boyney123)! - fix: build directory is now copied over to the users proejct dir
|
|
482
|
-
|
|
483
|
-
## 0.1.3
|
|
484
|
-
|
|
485
|
-
### Patch Changes
|
|
486
|
-
|
|
487
|
-
- [`904c4df`](https://github.com/boyney123/eventcatalog/commit/904c4dff59bfdac681d8c18879a5840862aeb616) [#127](https://github.com/boyney123/eventcatalog/pull/127) Thanks [@boyney123](https://github.com/boyney123)! - bug: fixed issue with purging css from the admonition component
|
|
488
|
-
|
|
489
|
-
## 0.1.2
|
|
490
|
-
|
|
491
|
-
### Patch Changes
|
|
492
|
-
|
|
493
|
-
- [`cc8eb2f`](https://github.com/boyney123/eventcatalog/commit/cc8eb2fe14501447206bdb8fe141a0575c753636) [#121](https://github.com/boyney123/eventcatalog/pull/121) Thanks [@otbe](https://github.com/otbe)! - Allow to configure "trailingSlash"
|
|
494
|
-
|
|
495
|
-
* [`dacd9eb`](https://github.com/boyney123/eventcatalog/commit/dacd9eb41e3f519341f32e60c4de27df5a9137b7) [#120](https://github.com/boyney123/eventcatalog/pull/120) Thanks [@thim81](https://github.com/thim81)! - feat: Hide owners section if the events has owners defined
|
|
496
|
-
|
|
497
|
-
## 0.1.1
|
|
498
|
-
|
|
499
|
-
### Patch Changes
|
|
500
|
-
|
|
501
|
-
- [`23930c8`](https://github.com/boyney123/eventcatalog/commit/23930c8f4f4a9234e037473aaeccae3dafdfe385) [#114](https://github.com/boyney123/eventcatalog/pull/114) Thanks [@boyney123](https://github.com/boyney123)! - feat: adding search to events page
|
|
502
|
-
|
|
503
|
-
* [`e37ff4b`](https://github.com/boyney123/eventcatalog/commit/e37ff4b31c06779ae89f2b17beb14cb409d464e3) [#113](https://github.com/boyney123/eventcatalog/pull/113) Thanks [@otbe](https://github.com/otbe)! - Configure base path
|
|
504
|
-
|
|
505
|
-
## 0.1.0
|
|
506
|
-
|
|
507
|
-
### Minor Changes
|
|
508
|
-
|
|
509
|
-
- [`688e2da`](https://github.com/boyney123/eventcatalog/commit/688e2da9ade503e4276c6710c77e45f4652e19a1) [#111](https://github.com/boyney123/eventcatalog/pull/111) Thanks [@boyney123](https://github.com/boyney123)! - feat: catalog now staticlly exports rather than using server code
|
|
510
|
-
|
|
511
|
-
## 0.0.14
|
|
512
|
-
|
|
513
|
-
### Patch Changes
|
|
514
|
-
|
|
515
|
-
- [`7c23703`](https://github.com/boyney123/eventcatalog/commit/7c237039535d7f5d6f229396cf59eb5cbf5b0645) [#109](https://github.com/boyney123/eventcatalog/pull/109) Thanks [@boyney123](https://github.com/boyney123)! - fix: issue with long names for services and events rendering incorrectly
|
|
516
|
-
|
|
517
|
-
## 0.0.13
|
|
518
|
-
|
|
519
|
-
### Patch Changes
|
|
520
|
-
|
|
521
|
-
- [`732dac2`](https://github.com/boyney123/eventcatalog/commit/732dac24c1de62537732083a53c2218c2794773a) [#102](https://github.com/boyney123/eventcatalog/pull/102) Thanks [@boyney123](https://github.com/boyney123)! - feat: allow default frontmatter when creating events
|
|
522
|
-
|
|
523
|
-
## 0.0.12
|
|
524
|
-
|
|
525
|
-
### Patch Changes
|
|
526
|
-
|
|
527
|
-
- [`dd1b29f`](https://github.com/boyney123/eventcatalog/commit/dd1b29f81658a3c5bea9ed92c1cf54265c7feb0b) [#98](https://github.com/boyney123/eventcatalog/pull/98) Thanks [@boyney123](https://github.com/boyney123)! - feat: adding more mermaid support in mdx
|
|
528
|
-
|
|
529
|
-
## 0.0.11
|
|
530
|
-
|
|
531
|
-
### Patch Changes
|
|
532
|
-
|
|
533
|
-
- [`97e447a`](https://github.com/boyney123/eventcatalog/commit/97e447aa0ec255b2c879eac7fa83d7b705230790) [#95](https://github.com/boyney123/eventcatalog/pull/95) Thanks [@boyney123](https://github.com/boyney123)! - fix: edit url is now optional in not found pages and no longer fetche…
|
|
534
|
-
|
|
535
|
-
## 0.0.10
|
|
536
|
-
|
|
537
|
-
### Patch Changes
|
|
538
|
-
|
|
539
|
-
- [`df372c6`](https://github.com/boyney123/eventcatalog/commit/df372c675e76a4a5980740222ccf8268c0c71540) [#91](https://github.com/boyney123/eventcatalog/pull/91) Thanks [@boyney123](https://github.com/boyney123)! - feat: fix-generator
|
|
540
|
-
|
|
541
|
-
## 0.0.9
|
|
542
|
-
|
|
543
|
-
### Patch Changes
|
|
544
|
-
|
|
545
|
-
- [`b7202dc`](https://github.com/boyney123/eventcatalog/commit/b7202dcd7548d1d0f406ce9d979182cd4c09232a) [#82](https://github.com/boyney123/eventcatalog/pull/82) Thanks [@boyney123](https://github.com/boyney123)! - fix: event log page now displays correct name
|
|
546
|
-
|
|
547
|
-
## 0.0.8
|
|
548
|
-
|
|
549
|
-
### Patch Changes
|
|
550
|
-
|
|
551
|
-
- [`534bec1`](https://github.com/boyney123/eventcatalog/commit/534bec11f57bcabe7f79f40338ae02bef134efc2) [#78](https://github.com/boyney123/eventcatalog/pull/78) Thanks [@thim81](https://github.com/thim81)! - feat: externalLinks for services
|
|
552
|
-
|
|
553
|
-
* [`b557ff8`](https://github.com/boyney123/eventcatalog/commit/b557ff8f7186b939cbe1e23f2c0e1e9a7254c907) [#79](https://github.com/boyney123/eventcatalog/pull/79) Thanks [@boyney123](https://github.com/boyney123)! - fix: adding keys on maps in react
|
|
554
|
-
|
|
555
|
-
- [`407d9e0`](https://github.com/boyney123/eventcatalog/commit/407d9e0d7f8d5eab4747ce0af6d5079204b53d21) [#75](https://github.com/boyney123/eventcatalog/pull/75) Thanks [@thim81](https://github.com/thim81)! - feat: optional editUrl config
|
|
556
|
-
|
|
557
|
-
* [`9eb7463`](https://github.com/boyney123/eventcatalog/commit/9eb7463b32baa09a6dd693e7f0eede63e33cd39c) [#71](https://github.com/boyney123/eventcatalog/pull/71) Thanks [@thim81](https://github.com/thim81)! - feat: link to external event documentation added
|
|
558
|
-
|
|
559
|
-
## 0.0.7
|
|
560
|
-
|
|
561
|
-
### Patch Changes
|
|
562
|
-
|
|
563
|
-
- [`ee17db8`](https://github.com/boyney123/eventcatalog/commit/ee17db8958ac6368f7d833f0d3ebec2604722e42) [#56](https://github.com/boyney123/eventcatalog/pull/56) Thanks [@boyney123](https://github.com/boyney123)! - feat: changelog.md files now belong inside the versioned folders
|
|
564
|
-
|
|
565
|
-
## 0.0.6
|
|
566
|
-
|
|
567
|
-
### Patch Changes
|
|
568
|
-
|
|
569
|
-
- [`ad66a66`](https://github.com/boyney123/eventcatalog/commit/ad66a66b526a167cc8da43dd2371642c9f9029f2) [#49](https://github.com/boyney123/eventcatalog/pull/49) Thanks [@boyney123](https://github.com/boyney123)! - fix: now supports any extension for event examples also added missing docs
|
|
570
|
-
|
|
571
|
-
## 0.0.5
|
|
572
|
-
|
|
573
|
-
### Patch Changes
|
|
574
|
-
|
|
575
|
-
- [`576debd`](https://github.com/boyney123/eventcatalog/commit/576debdfc5dbc2fbbf98e2b3f4d78b84f9a07669) [#46](https://github.com/boyney123/eventcatalog/pull/46) Thanks [@boyney123](https://github.com/boyney123)! - fix: using cross-env to fix issues with windows OS
|
|
576
|
-
|
|
577
|
-
## 0.0.4
|
|
578
|
-
|
|
579
|
-
### Patch Changes
|
|
580
|
-
|
|
581
|
-
- [`1eb4572`](https://github.com/boyney123/eventcatalog/commit/1eb4572918ac06afb64554fef2fc1a3877fbf06d) [#44](https://github.com/boyney123/eventcatalog/pull/44) Thanks [@boyney123](https://github.com/boyney123)! - feat: added more customise options and documentation for them
|
|
582
|
-
|
|
583
|
-
## 0.0.3
|
|
584
|
-
|
|
585
|
-
### Patch Changes
|
|
586
|
-
|
|
587
|
-
- [`23a96fc`](https://github.com/boyney123/eventcatalog/commit/23a96fc651907517cee937657be14cbf9fe95fb9) [#42](https://github.com/boyney123/eventcatalog/pull/42) Thanks [@boyney123](https://github.com/boyney123)! - fix: now remove the .next folder before we start the dev server foric…
|
|
588
|
-
|
|
589
|
-
## 0.0.2
|
|
22
|
+
## 2.0.23
|
|
590
23
|
|
|
591
24
|
### Patch Changes
|
|
592
25
|
|
|
593
|
-
-
|
|
26
|
+
- bce8313: feat: setting up project for github
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022-2024 boyney123
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|