@eventcatalog/core 1.2.6 → 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.
Files changed (614) hide show
  1. package/.changeset/config.json +11 -0
  2. package/.github/CODEOWNERS +3 -0
  3. package/.github/ISSUE_TEMPLATE.md +1 -0
  4. package/.github/PULL_REQUEST_TEMPLATE.md +18 -0
  5. package/.github/funding.yml +1 -0
  6. package/.github/workflows/lint.yml +22 -0
  7. package/.github/workflows/release.yml +34 -0
  8. package/.github/workflows/verify-build.yml +27 -0
  9. package/.prettierignore +7 -0
  10. package/.prettierrc +10 -0
  11. package/CHANGELOG.md +10 -571
  12. package/LICENSE.md +21 -0
  13. package/README.md +192 -5
  14. package/astro.config.mjs +57 -0
  15. package/bin/dist/eventcatalog.cjs +3139 -0
  16. package/bin/dist/eventcatalog.d.cts +1 -0
  17. package/bin/dist/eventcatalog.d.ts +1 -0
  18. package/bin/dist/eventcatalog.js +3141 -0
  19. package/images/example.png +0 -0
  20. package/package.json +59 -52
  21. package/public/icons/github.svg +1 -0
  22. package/public/icons/x-twitter.svg +1 -0
  23. package/public/logo.png +0 -0
  24. package/public/slack-icon.svg +1 -0
  25. package/scripts/build-ci.js +22 -0
  26. package/scripts/catalog-to-astro-content-directory.js +188 -0
  27. package/scripts/default-files-for-collections/commands.md +8 -0
  28. package/scripts/default-files-for-collections/domains.md +8 -0
  29. package/scripts/default-files-for-collections/events.md +8 -0
  30. package/scripts/default-files-for-collections/services.md +8 -0
  31. package/scripts/default-files-for-collections/teams.md +11 -0
  32. package/scripts/default-files-for-collections/users.md +11 -0
  33. package/scripts/start-catalog-locally.js +23 -0
  34. package/scripts/watcher.js +53 -0
  35. package/src/components/DocsNavigation.astro +110 -0
  36. package/src/components/Header.astro +65 -0
  37. package/src/components/Lists/BasicList.tsx +59 -0
  38. package/src/components/Lists/OwnersList.tsx +101 -0
  39. package/src/components/Lists/PillList.tsx +67 -0
  40. package/src/components/Lists/VersionList.astro +29 -0
  41. package/src/components/MDX/Accordion/Accordion.astro +10 -0
  42. package/src/components/MDX/Accordion/Accordion.tsx +29 -0
  43. package/src/components/MDX/Accordion/AccordionGroup.astro +16 -0
  44. package/{components/Mdx → src/components/MDX}/Admonition.tsx +6 -5
  45. package/src/components/MDX/File.tsx +43 -0
  46. package/src/components/MDX/NodeGraph/DownloadButton.tsx +58 -0
  47. package/src/components/MDX/NodeGraph/NodeGraph.astro +82 -0
  48. package/src/components/MDX/NodeGraph/NodeGraph.tsx +135 -0
  49. package/src/components/MDX/NodeGraph/NodeGraphPortal.tsx +15 -0
  50. package/src/components/MDX/NodeGraph/Nodes/Command.tsx +74 -0
  51. package/src/components/MDX/NodeGraph/Nodes/Event.tsx +74 -0
  52. package/src/components/MDX/NodeGraph/Nodes/Service.tsx +83 -0
  53. package/src/components/MDX/OpenAPI/OpenAPI.tsx +35 -0
  54. package/src/components/MDX/Schema.tsx +45 -0
  55. package/src/components/MDX/components.tsx +24 -0
  56. package/src/components/Search.astro +108 -0
  57. package/src/components/Seo.astro +79 -0
  58. package/src/components/SideBars/DomainSideBar.astro +42 -0
  59. package/src/components/SideBars/MessageSideBar.astro +81 -0
  60. package/src/components/SideBars/ServiceSideBar.astro +93 -0
  61. package/src/components/Tables/DebouncedInput.tsx +32 -0
  62. package/src/components/Tables/Table.tsx +228 -0
  63. package/src/components/Tables/columns/DomainTableColumns.tsx +118 -0
  64. package/src/components/Tables/columns/MessageTableColumns.tsx +159 -0
  65. package/src/components/Tables/columns/ServiceTableColumns.tsx +162 -0
  66. package/src/components/Tables/columns/index.tsx +17 -0
  67. package/src/components/Tables/filters/custom-filters.ts +14 -0
  68. package/src/content/config.ts +119 -0
  69. package/src/env.d.ts +2 -0
  70. package/src/layouts/CustomDocsPageLayout.astro +100 -0
  71. package/src/layouts/DiscoverLayout.astro +120 -0
  72. package/src/layouts/DocsLayout.astro +59 -0
  73. package/src/layouts/PlainPage.astro +29 -0
  74. package/src/layouts/VisualiserLayout.astro +73 -0
  75. package/src/pages/discover/[type]/index.astro +36 -0
  76. package/src/pages/docs/[type]/[id]/[version]/index.astro +215 -0
  77. package/src/pages/docs/[type]/[id]/[version]/spec/index.astro +93 -0
  78. package/src/pages/docs/index.md +4 -0
  79. package/src/pages/docs/teams/[id]/index.astro +127 -0
  80. package/src/pages/docs/users/[id]/index.astro +132 -0
  81. package/src/pages/visualiser/[type]/[id]/[version]/index.astro +46 -0
  82. package/src/pages/visualiser/index.astro +25 -0
  83. package/src/remark-plugins/mermaid.ts +27 -0
  84. package/src/remark-plugins/remark-modified-time.mjs +9 -0
  85. package/src/types/index.ts +2 -0
  86. package/src/utils/collections/util.ts +22 -0
  87. package/src/utils/colors.ts +14 -0
  88. package/src/utils/commands/node-graph.ts +107 -0
  89. package/src/utils/commands.ts +60 -0
  90. package/src/utils/config/catalog.ts +2 -0
  91. package/src/utils/domains/domains.ts +50 -0
  92. package/src/utils/domains/node-graph.ts +60 -0
  93. package/src/utils/events/node-graph.ts +108 -0
  94. package/src/utils/events.ts +62 -0
  95. package/src/utils/example-remark-plugin.mjs +6 -0
  96. package/src/utils/messages.ts +7 -0
  97. package/src/utils/node-graph-utils/utils.ts +31 -0
  98. package/src/utils/services/node-graph.ts +133 -0
  99. package/src/utils/services/services.ts +88 -0
  100. package/src/utils/teams.ts +47 -0
  101. package/src/utils/users.ts +59 -0
  102. package/tailwind.config.mjs +24 -0
  103. package/tsconfig.json +11 -26
  104. package/.next/BUILD_ID +0 -1
  105. package/.next/build-manifest.json +0 -246
  106. package/.next/cache/.tsbuildinfo +0 -1
  107. package/.next/cache/config.json +0 -7
  108. package/.next/cache/eslint/.cache_1bay4w0 +0 -1
  109. package/.next/cache/next-server.js.nft.json +0 -1
  110. package/.next/cache/webpack/client-production/0.pack +0 -0
  111. package/.next/cache/webpack/client-production/index.pack +0 -0
  112. package/.next/cache/webpack/server-production/0.pack +0 -0
  113. package/.next/cache/webpack/server-production/index.pack +0 -0
  114. package/.next/export-detail.json +0 -1
  115. package/.next/export-marker.json +0 -1
  116. package/.next/images-manifest.json +0 -1
  117. package/.next/next-server.js.nft.json +0 -1
  118. package/.next/package.json +0 -1
  119. package/.next/prerender-manifest.json +0 -1
  120. package/.next/react-loadable-manifest.json +0 -2082
  121. package/.next/required-server-files.json +0 -1
  122. package/.next/routes-manifest.json +0 -1
  123. package/.next/server/chunks/109.js +0 -608
  124. package/.next/server/chunks/237.js +0 -109
  125. package/.next/server/chunks/267.js +0 -257
  126. package/.next/server/chunks/274.js +0 -32
  127. package/.next/server/chunks/29.js +0 -675
  128. package/.next/server/chunks/331.js +0 -750
  129. package/.next/server/chunks/362.js +0 -570
  130. package/.next/server/chunks/428.js +0 -84
  131. package/.next/server/chunks/50.js +0 -466
  132. package/.next/server/chunks/526.js +0 -159
  133. package/.next/server/chunks/537.js +0 -136
  134. package/.next/server/chunks/788.js +0 -162
  135. package/.next/server/chunks/797.js +0 -92
  136. package/.next/server/chunks/8.js +0 -173
  137. package/.next/server/chunks/854.js +0 -107
  138. package/.next/server/chunks/938.js +0 -140
  139. package/.next/server/chunks/944.js +0 -721
  140. package/.next/server/chunks/962.js +0 -13
  141. package/.next/server/chunks/97.js +0 -2829
  142. package/.next/server/chunks/992.js +0 -50
  143. package/.next/server/chunks/font-manifest.json +0 -1
  144. package/.next/server/font-manifest.json +0 -1
  145. package/.next/server/middleware-manifest.json +0 -6
  146. package/.next/server/pages/404.html +0 -12
  147. package/.next/server/pages/500.html +0 -12
  148. package/.next/server/pages/_app.js +0 -623
  149. package/.next/server/pages/_app.js.nft.json +0 -1
  150. package/.next/server/pages/_document.js +0 -120
  151. package/.next/server/pages/_document.js.nft.json +0 -1
  152. package/.next/server/pages/_error.js +0 -148
  153. package/.next/server/pages/_error.js.nft.json +0 -1
  154. package/.next/server/pages/domains/Orders/events/OrderComplete/logs.html +0 -1
  155. package/.next/server/pages/domains/Orders/events/OrderComplete/logs.json +0 -1
  156. package/.next/server/pages/domains/Orders/events/OrderComplete.html +0 -40
  157. package/.next/server/pages/domains/Orders/events/OrderComplete.json +0 -1
  158. package/.next/server/pages/domains/Orders/events/OrderConfirmed/logs.html +0 -1
  159. package/.next/server/pages/domains/Orders/events/OrderConfirmed/logs.json +0 -1
  160. package/.next/server/pages/domains/Orders/events/OrderConfirmed.html +0 -40
  161. package/.next/server/pages/domains/Orders/events/OrderConfirmed.json +0 -1
  162. package/.next/server/pages/domains/Orders/events/OrderCreated/logs.html +0 -1
  163. package/.next/server/pages/domains/Orders/events/OrderCreated/logs.json +0 -1
  164. package/.next/server/pages/domains/Orders/events/OrderCreated.html +0 -2
  165. package/.next/server/pages/domains/Orders/events/OrderCreated.json +0 -1
  166. package/.next/server/pages/domains/Orders/events/OrderRequested/logs.html +0 -1
  167. package/.next/server/pages/domains/Orders/events/OrderRequested/logs.json +0 -1
  168. package/.next/server/pages/domains/Orders/events/OrderRequested.html +0 -40
  169. package/.next/server/pages/domains/Orders/events/OrderRequested.json +0 -1
  170. package/.next/server/pages/domains/Orders/services/Orders Service.html +0 -2
  171. package/.next/server/pages/domains/Orders/services/Orders Service.json +0 -1
  172. package/.next/server/pages/domains/Orders.html +0 -2
  173. package/.next/server/pages/domains/Orders.json +0 -1
  174. package/.next/server/pages/domains/Shopping/events/AddedItemToCart/logs.html +0 -1
  175. package/.next/server/pages/domains/Shopping/events/AddedItemToCart/logs.json +0 -1
  176. package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.1.html +0 -59
  177. package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.1.json +0 -1
  178. package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.2.html +0 -66
  179. package/.next/server/pages/domains/Shopping/events/AddedItemToCart/v/0.0.2.json +0 -1
  180. package/.next/server/pages/domains/Shopping/events/AddedItemToCart.html +0 -65
  181. package/.next/server/pages/domains/Shopping/events/AddedItemToCart.json +0 -1
  182. package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart/logs.html +0 -1
  183. package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart/logs.json +0 -1
  184. package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart.html +0 -48
  185. package/.next/server/pages/domains/Shopping/events/RemovedItemFromCart.json +0 -1
  186. package/.next/server/pages/domains/Shopping.html +0 -2
  187. package/.next/server/pages/domains/Shopping.json +0 -1
  188. package/.next/server/pages/domains/[domain]/events/[name]/logs.js +0 -345
  189. package/.next/server/pages/domains/[domain]/events/[name]/logs.js.nft.json +0 -1
  190. package/.next/server/pages/domains/[domain]/events/[name]/v/[version].js +0 -435
  191. package/.next/server/pages/domains/[domain]/events/[name]/v/[version].js.nft.json +0 -1
  192. package/.next/server/pages/domains/[domain]/events/[name].js +0 -354
  193. package/.next/server/pages/domains/[domain]/events/[name].js.nft.json +0 -1
  194. package/.next/server/pages/domains/[domain]/services/[name].js +0 -402
  195. package/.next/server/pages/domains/[domain]/services/[name].js.nft.json +0 -1
  196. package/.next/server/pages/domains/[domain].js +0 -549
  197. package/.next/server/pages/domains/[domain].js.nft.json +0 -1
  198. package/.next/server/pages/domains.html +0 -3
  199. package/.next/server/pages/domains.js +0 -576
  200. package/.next/server/pages/domains.js.nft.json +0 -1
  201. package/.next/server/pages/domains.json +0 -1
  202. package/.next/server/pages/events/PaymentProcessed/logs.html +0 -1
  203. package/.next/server/pages/events/PaymentProcessed/logs.json +0 -1
  204. package/.next/server/pages/events/PaymentProcessed.html +0 -44
  205. package/.next/server/pages/events/PaymentProcessed.json +0 -1
  206. package/.next/server/pages/events/ShipmentDelivered/logs.html +0 -1
  207. package/.next/server/pages/events/ShipmentDelivered/logs.json +0 -1
  208. package/.next/server/pages/events/ShipmentDelivered.html +0 -44
  209. package/.next/server/pages/events/ShipmentDelivered.json +0 -1
  210. package/.next/server/pages/events/ShipmentDispatched/logs.html +0 -1
  211. package/.next/server/pages/events/ShipmentDispatched/logs.json +0 -1
  212. package/.next/server/pages/events/ShipmentDispatched.html +0 -44
  213. package/.next/server/pages/events/ShipmentDispatched.json +0 -1
  214. package/.next/server/pages/events/ShipmentPrepared/logs.html +0 -1
  215. package/.next/server/pages/events/ShipmentPrepared/logs.json +0 -1
  216. package/.next/server/pages/events/ShipmentPrepared.html +0 -2
  217. package/.next/server/pages/events/ShipmentPrepared.json +0 -1
  218. package/.next/server/pages/events/[name]/logs.js +0 -263
  219. package/.next/server/pages/events/[name]/logs.js.nft.json +0 -1
  220. package/.next/server/pages/events/[name]/v/[version].js +0 -431
  221. package/.next/server/pages/events/[name]/v/[version].js.nft.json +0 -1
  222. package/.next/server/pages/events/[name].js +0 -354
  223. package/.next/server/pages/events/[name].js.nft.json +0 -1
  224. package/.next/server/pages/events.html +0 -11
  225. package/.next/server/pages/events.js +0 -789
  226. package/.next/server/pages/events.js.nft.json +0 -1
  227. package/.next/server/pages/events.json +0 -1
  228. package/.next/server/pages/index.html +0 -1
  229. package/.next/server/pages/index.js.nft.json +0 -1
  230. package/.next/server/pages/overview.html +0 -1
  231. package/.next/server/pages/overview.js +0 -240
  232. package/.next/server/pages/overview.js.nft.json +0 -1
  233. package/.next/server/pages/overview.json +0 -1
  234. package/.next/server/pages/services/Orders Service.html +0 -1
  235. package/.next/server/pages/services/Orders Service.json +0 -1
  236. package/.next/server/pages/services/Payment Service.html +0 -2
  237. package/.next/server/pages/services/Payment Service.json +0 -1
  238. package/.next/server/pages/services/Shipping Service.html +0 -2
  239. package/.next/server/pages/services/Shipping Service.json +0 -1
  240. package/.next/server/pages/services/[name].js +0 -319
  241. package/.next/server/pages/services/[name].js.nft.json +0 -1
  242. package/.next/server/pages/services.html +0 -4
  243. package/.next/server/pages/services.js +0 -741
  244. package/.next/server/pages/services.js.nft.json +0 -1
  245. package/.next/server/pages/services.json +0 -1
  246. package/.next/server/pages/users/[id].js +0 -475
  247. package/.next/server/pages/users/[id].js.nft.json +0 -1
  248. package/.next/server/pages/users/dboyne.html +0 -16
  249. package/.next/server/pages/users/dboyne.json +0 -1
  250. package/.next/server/pages/users/mSmith.html +0 -13
  251. package/.next/server/pages/users/mSmith.json +0 -1
  252. package/.next/server/pages/users.html +0 -1
  253. package/.next/server/pages/users.js.nft.json +0 -1
  254. package/.next/server/pages/visualiser.html +0 -16
  255. package/.next/server/pages/visualiser.js +0 -739
  256. package/.next/server/pages/visualiser.js.nft.json +0 -1
  257. package/.next/server/pages/visualiser.json +0 -1
  258. package/.next/server/pages-manifest.json +0 -23
  259. package/.next/server/webpack-runtime.js +0 -259
  260. package/.next/static/chunks/020d8314.2bae2f29ef0060e4.js +0 -1
  261. package/.next/static/chunks/1178-011609b6f3b123b3.js +0 -1
  262. package/.next/static/chunks/1476.eb11ab1feb4c5940.js +0 -1
  263. package/.next/static/chunks/1484.274df63eb11d9d68.js +0 -1
  264. package/.next/static/chunks/172-940ad0353b57ff98.js +0 -1
  265. package/.next/static/chunks/1750.a25eb3336a8c3a36.js +0 -1
  266. package/.next/static/chunks/2017.1b67898bd26fe157.js +0 -1
  267. package/.next/static/chunks/2027.80b01f1a7005a770.js +0 -1
  268. package/.next/static/chunks/2076.21cb0bf760a8055d.js +0 -1
  269. package/.next/static/chunks/2583.56889bb376087220.js +0 -1
  270. package/.next/static/chunks/2620-21775e17d8a6a407.js +0 -1
  271. package/.next/static/chunks/2765.dda8bae3343b6d41.js +0 -1
  272. package/.next/static/chunks/2edb282b-45c56c19221816df.js +0 -1
  273. package/.next/static/chunks/3082.62ff47793d562412.js +0 -1
  274. package/.next/static/chunks/3116-e9a578a270d9e013.js +0 -1
  275. package/.next/static/chunks/3260.00ac1405e82b8dd9.js +0 -1
  276. package/.next/static/chunks/3706.64742528652de3dd.js +0 -1
  277. package/.next/static/chunks/3ede58a6.ff6c02b372da8155.js +0 -1
  278. package/.next/static/chunks/4042.98f113bfbf744466.js +0 -1
  279. package/.next/static/chunks/4079.75a5db02e1a11105.js +0 -1
  280. package/.next/static/chunks/438.dea6dada9bd4b683.js +0 -1
  281. package/.next/static/chunks/4384-8a28a71e7e3b8d8a.js +0 -1
  282. package/.next/static/chunks/4637.6819aa53bf80d6ff.js +0 -1
  283. package/.next/static/chunks/4816.03f53c476d2a5924.js +0 -1
  284. package/.next/static/chunks/5048.73fa7a6d734ba5ef.js +0 -1
  285. package/.next/static/chunks/5202.6f686702cbb58a65.js +0 -1
  286. package/.next/static/chunks/5464.4c916df2382b5ba9.js +0 -1
  287. package/.next/static/chunks/5493-b00dc3d50ab46716.js +0 -1
  288. package/.next/static/chunks/5644.b4ffa0632405fc9f.js +0 -1
  289. package/.next/static/chunks/5a7b57ef.d0702578743545b0.js +0 -1
  290. package/.next/static/chunks/60.40ff539d26f28401.js +0 -1
  291. package/.next/static/chunks/6101.a35579324b3356df.js +0 -1
  292. package/.next/static/chunks/6194.045435de6d19fc72.js +0 -1
  293. package/.next/static/chunks/6772-fba69ba8e4fa1ef4.js +0 -1
  294. package/.next/static/chunks/6778.7885dc0a314c5a9c.js +0 -1
  295. package/.next/static/chunks/6790-f4527d80153a3e25.js +0 -1
  296. package/.next/static/chunks/7005-09e42f99859b8d03.js +0 -1
  297. package/.next/static/chunks/7109-c8d3fde4c3b6798e.js +0 -1
  298. package/.next/static/chunks/7195.2768b2bb31a65f2f.js +0 -1
  299. package/.next/static/chunks/7458.1de01a44cd67f6f0.js +0 -1
  300. package/.next/static/chunks/7f5d3f51-659399fe6f04b9eb.js +0 -1
  301. package/.next/static/chunks/8264-a1b0376ff4b3d4da.js +0 -1
  302. package/.next/static/chunks/828-ef0e36f29db31dde.js +0 -1
  303. package/.next/static/chunks/8341-b8d844d6f606aed5.js +0 -1
  304. package/.next/static/chunks/8720.e06d4cca843573db.js +0 -1
  305. package/.next/static/chunks/8785.1331b2a6d4be82c3.js +0 -1
  306. package/.next/static/chunks/8829-386c887227aab68c.js +0 -1
  307. package/.next/static/chunks/9054.ae9ffec47aacae76.js +0 -1
  308. package/.next/static/chunks/9097.1efc23284d82765c.js +0 -1
  309. package/.next/static/chunks/9231.af30fa4fedab9f01.js +0 -1
  310. package/.next/static/chunks/9497.49670ee9a8bd76f7.js +0 -1
  311. package/.next/static/chunks/9600.f70c0583d23764a8.js +0 -1
  312. package/.next/static/chunks/9822.0ad553e5c697208c.js +0 -1
  313. package/.next/static/chunks/9930.28415573db2b7806.js +0 -7
  314. package/.next/static/chunks/b9e0c7b4-52b02c0d4f161186.js +0 -1
  315. package/.next/static/chunks/d57e5a30-463f9ed8df724792.js +0 -1
  316. package/.next/static/chunks/eb6e03f4.2276f931f02e235c.js +0 -1
  317. package/.next/static/chunks/f4df0e03.56d1c15b5532ab26.js +0 -1
  318. package/.next/static/chunks/framework-6cc1bceeaaf75e91.js +0 -1
  319. package/.next/static/chunks/main-da37322a396d572a.js +0 -1
  320. package/.next/static/chunks/pages/_app-d40841fd52b70886.js +0 -1
  321. package/.next/static/chunks/pages/_error-c36fa6f7fd569cf6.js +0 -1
  322. package/.next/static/chunks/pages/domains/[domain]/events/[name]/logs-350f383eed1cf3f8.js +0 -1
  323. package/.next/static/chunks/pages/domains/[domain]/events/[name]/v/[version]-175a58a05deb2eda.js +0 -1
  324. package/.next/static/chunks/pages/domains/[domain]/events/[name]-7c7c2526e7d63883.js +0 -1
  325. package/.next/static/chunks/pages/domains/[domain]/services/[name]-f447208842a47b40.js +0 -1
  326. package/.next/static/chunks/pages/domains/[domain]-ea20e2daae1794fc.js +0 -1
  327. package/.next/static/chunks/pages/domains-71179cbdb719a0f8.js +0 -1
  328. package/.next/static/chunks/pages/events/[name]/logs-695c5b2cfd996539.js +0 -1
  329. package/.next/static/chunks/pages/events/[name]/v/[version]-af687afaafd7fd45.js +0 -1
  330. package/.next/static/chunks/pages/events/[name]-24bc568718357116.js +0 -1
  331. package/.next/static/chunks/pages/events-05ca59359ab07aa2.js +0 -1
  332. package/.next/static/chunks/pages/index-68062a10328e7d10.js +0 -1
  333. package/.next/static/chunks/pages/overview-68b31b232c5ef1ff.js +0 -1
  334. package/.next/static/chunks/pages/services/[name]-b59b95836832898e.js +0 -1
  335. package/.next/static/chunks/pages/services-2c63507ae596def3.js +0 -1
  336. package/.next/static/chunks/pages/users/[id]-7306f8a1d8a7012a.js +0 -1
  337. package/.next/static/chunks/pages/users-412f257b1de51363.js +0 -1
  338. package/.next/static/chunks/pages/visualiser-8474d03175cf9d12.js +0 -1
  339. package/.next/static/chunks/polyfills-c67a75d1b6f99dc8.js +0 -1
  340. package/.next/static/chunks/webpack-7e93d0cba2ccf996.js +0 -1
  341. package/.next/static/css/7e14b4dede1671ad.css +0 -1
  342. package/.next/static/css/94b9a747218712b2.css +0 -3
  343. package/.next/static/css/ae8abf3666c55019.css +0 -5
  344. package/.next/static/css/cc3c8fcadcf7a58b.css +0 -1
  345. package/.next/static/css/deb57cf90a65a90f.css +0 -1
  346. package/.next/static/css/ed97de5465a152bb.css +0 -1
  347. package/.next/static/rP51t_ISuRqZMVs4QvwfY/_buildManifest.js +0 -1
  348. package/.next/static/rP51t_ISuRqZMVs4QvwfY/_ssgManifest.js +0 -1
  349. package/.next/trace +0 -141
  350. package/bin/eventcatalog.js +0 -141
  351. package/components/BreadCrumbs.tsx +0 -50
  352. package/components/ContentView.tsx +0 -123
  353. package/components/Footer.tsx +0 -31
  354. package/components/Grids/DomainGrid.tsx +0 -61
  355. package/components/Grids/EventGrid.tsx +0 -102
  356. package/components/Grids/ServiceGrid.tsx +0 -84
  357. package/components/Grids/UserGrid.tsx +0 -55
  358. package/components/Header.tsx +0 -74
  359. package/components/Mdx/AsyncApiSpec.tsx +0 -25
  360. package/components/Mdx/Examples.tsx +0 -70
  361. package/components/Mdx/NodeGraph/GraphElements.tsx +0 -294
  362. package/components/Mdx/NodeGraph/GraphLayout.ts +0 -110
  363. package/components/Mdx/NodeGraph/Node.tsx +0 -15
  364. package/components/Mdx/NodeGraph/NodeGraph.tsx +0 -168
  365. package/components/Mdx/NodeGraph/__tests__/GraphElements.spec.ts +0 -102
  366. package/components/Mdx/NodeGraph/__tests__/GraphLayout.spec.ts +0 -115
  367. package/components/Mdx/NodeGraph/__tests__/__snapshots__/GraphElements.spec.ts.snap +0 -559
  368. package/components/Mdx/NodeGraph/__tests__/__snapshots__/GraphLayout.spec.ts.snap +0 -81
  369. package/components/Mdx/OpenApiSpec.tsx +0 -21
  370. package/components/Mdx/SchemaViewer/SchemaViewer.module.css +0 -5
  371. package/components/Mdx/SchemaViewer/SchemaViewer.tsx +0 -34
  372. package/components/Mermaid/index.tsx +0 -58
  373. package/components/NotFound/index.tsx +0 -40
  374. package/components/Sidebars/DomainSidebar.tsx +0 -55
  375. package/components/Sidebars/EventSidebar.tsx +0 -172
  376. package/components/Sidebars/ServiceSidebar.tsx +0 -128
  377. package/components/Sidebars/components/ExternalLinks.tsx +0 -28
  378. package/components/Sidebars/components/ItemList.tsx +0 -32
  379. package/components/Sidebars/components/Owners.tsx +0 -38
  380. package/components/Sidebars/components/Tags.tsx +0 -45
  381. package/components/SyntaxHighlighter.tsx +0 -42
  382. package/eventcatalog.config.js +0 -58
  383. package/eventcatalog.styles.css +0 -15
  384. package/hooks/EventCatalog.tsx +0 -54
  385. package/lib/__tests__/assets/domains/User/events/UserCreated/index.md +0 -20
  386. package/lib/__tests__/assets/domains/User/events/UserRemoved/examples/Basic.cs +0 -31
  387. package/lib/__tests__/assets/domains/User/events/UserRemoved/examples/Basic.js +0 -1
  388. package/lib/__tests__/assets/domains/User/events/UserRemoved/index.md +0 -16
  389. package/lib/__tests__/assets/domains/User/events/UserRemoved/schema.json +0 -4
  390. package/lib/__tests__/assets/domains/User/index.md +0 -16
  391. package/lib/__tests__/assets/domains/User/services/User Service/index.md +0 -19
  392. package/lib/__tests__/assets/events/AddedItemToCart/index.md +0 -25
  393. package/lib/__tests__/assets/events/EmailSent/index.md +0 -15
  394. package/lib/__tests__/assets/events/EventWithSchemaAndExamples/examples/Basic.cs +0 -31
  395. package/lib/__tests__/assets/events/EventWithSchemaAndExamples/examples/Basic.js +0 -1
  396. package/lib/__tests__/assets/events/EventWithSchemaAndExamples/index.md +0 -8
  397. package/lib/__tests__/assets/events/EventWithSchemaAndExamples/schema.json +0 -4
  398. package/lib/__tests__/assets/events/EventWithVersions/index.md +0 -10
  399. package/lib/__tests__/assets/events/EventWithVersions/versioned/0.0.1/index.md +0 -10
  400. package/lib/__tests__/assets/services/Basket Service/index.md +0 -26
  401. package/lib/__tests__/assets/services/Email Platform/index.md +0 -17
  402. package/lib/__tests__/assets/services/Payment Service/index.md +0 -7
  403. package/lib/__tests__/domains.spec.ts +0 -416
  404. package/lib/__tests__/events.spec.ts +0 -514
  405. package/lib/__tests__/file-reader.spec.ts +0 -69
  406. package/lib/__tests__/graphs.spec.ts +0 -88
  407. package/lib/__tests__/services.spec.ts +0 -268
  408. package/lib/analytics.ts +0 -30
  409. package/lib/domains.ts +0 -160
  410. package/lib/events.ts +0 -313
  411. package/lib/file-reader.ts +0 -76
  412. package/lib/graphs.ts +0 -92
  413. package/lib/services.ts +0 -126
  414. package/next-env.d.ts +0 -5
  415. package/next.config.js +0 -11
  416. package/out/404/index.html +0 -12
  417. package/out/404.html +0 -12
  418. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderComplete/logs.json +0 -1
  419. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderComplete.json +0 -1
  420. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderConfirmed/logs.json +0 -1
  421. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderConfirmed.json +0 -1
  422. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderCreated/logs.json +0 -1
  423. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderCreated.json +0 -1
  424. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderRequested/logs.json +0 -1
  425. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/events/OrderRequested.json +0 -1
  426. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders/services/Orders Service.json +0 -1
  427. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Orders.json +0 -1
  428. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping/events/AddedItemToCart/logs.json +0 -1
  429. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping/events/AddedItemToCart/v/0.0.1.json +0 -1
  430. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping/events/AddedItemToCart/v/0.0.2.json +0 -1
  431. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping/events/AddedItemToCart.json +0 -1
  432. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping/events/RemovedItemFromCart/logs.json +0 -1
  433. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping/events/RemovedItemFromCart.json +0 -1
  434. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains/Shopping.json +0 -1
  435. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/domains.json +0 -1
  436. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/PaymentProcessed/logs.json +0 -1
  437. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/PaymentProcessed.json +0 -1
  438. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/ShipmentDelivered/logs.json +0 -1
  439. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/ShipmentDelivered.json +0 -1
  440. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/ShipmentDispatched/logs.json +0 -1
  441. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/ShipmentDispatched.json +0 -1
  442. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/ShipmentPrepared/logs.json +0 -1
  443. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events/ShipmentPrepared.json +0 -1
  444. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/events.json +0 -1
  445. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/overview.json +0 -1
  446. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/services/Orders Service.json +0 -1
  447. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/services/Payment Service.json +0 -1
  448. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/services/Shipping Service.json +0 -1
  449. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/services.json +0 -1
  450. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/users/dboyne.json +0 -1
  451. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/users/mSmith.json +0 -1
  452. package/out/_next/data/rP51t_ISuRqZMVs4QvwfY/visualiser.json +0 -1
  453. package/out/_next/static/chunks/020d8314.2bae2f29ef0060e4.js +0 -1
  454. package/out/_next/static/chunks/1178-011609b6f3b123b3.js +0 -1
  455. package/out/_next/static/chunks/1476.eb11ab1feb4c5940.js +0 -1
  456. package/out/_next/static/chunks/1484.274df63eb11d9d68.js +0 -1
  457. package/out/_next/static/chunks/172-940ad0353b57ff98.js +0 -1
  458. package/out/_next/static/chunks/1750.a25eb3336a8c3a36.js +0 -1
  459. package/out/_next/static/chunks/2017.1b67898bd26fe157.js +0 -1
  460. package/out/_next/static/chunks/2027.80b01f1a7005a770.js +0 -1
  461. package/out/_next/static/chunks/2076.21cb0bf760a8055d.js +0 -1
  462. package/out/_next/static/chunks/2583.56889bb376087220.js +0 -1
  463. package/out/_next/static/chunks/2620-21775e17d8a6a407.js +0 -1
  464. package/out/_next/static/chunks/2765.dda8bae3343b6d41.js +0 -1
  465. package/out/_next/static/chunks/2edb282b-45c56c19221816df.js +0 -1
  466. package/out/_next/static/chunks/3082.62ff47793d562412.js +0 -1
  467. package/out/_next/static/chunks/3116-e9a578a270d9e013.js +0 -1
  468. package/out/_next/static/chunks/3260.00ac1405e82b8dd9.js +0 -1
  469. package/out/_next/static/chunks/3706.64742528652de3dd.js +0 -1
  470. package/out/_next/static/chunks/3ede58a6.ff6c02b372da8155.js +0 -1
  471. package/out/_next/static/chunks/4042.98f113bfbf744466.js +0 -1
  472. package/out/_next/static/chunks/4079.75a5db02e1a11105.js +0 -1
  473. package/out/_next/static/chunks/438.dea6dada9bd4b683.js +0 -1
  474. package/out/_next/static/chunks/4384-8a28a71e7e3b8d8a.js +0 -1
  475. package/out/_next/static/chunks/4637.6819aa53bf80d6ff.js +0 -1
  476. package/out/_next/static/chunks/4816.03f53c476d2a5924.js +0 -1
  477. package/out/_next/static/chunks/5048.73fa7a6d734ba5ef.js +0 -1
  478. package/out/_next/static/chunks/5202.6f686702cbb58a65.js +0 -1
  479. package/out/_next/static/chunks/5464.4c916df2382b5ba9.js +0 -1
  480. package/out/_next/static/chunks/5493-b00dc3d50ab46716.js +0 -1
  481. package/out/_next/static/chunks/5644.b4ffa0632405fc9f.js +0 -1
  482. package/out/_next/static/chunks/5a7b57ef.d0702578743545b0.js +0 -1
  483. package/out/_next/static/chunks/60.40ff539d26f28401.js +0 -1
  484. package/out/_next/static/chunks/6101.a35579324b3356df.js +0 -1
  485. package/out/_next/static/chunks/6194.045435de6d19fc72.js +0 -1
  486. package/out/_next/static/chunks/6772-fba69ba8e4fa1ef4.js +0 -1
  487. package/out/_next/static/chunks/6778.7885dc0a314c5a9c.js +0 -1
  488. package/out/_next/static/chunks/6790-f4527d80153a3e25.js +0 -1
  489. package/out/_next/static/chunks/7005-09e42f99859b8d03.js +0 -1
  490. package/out/_next/static/chunks/7109-c8d3fde4c3b6798e.js +0 -1
  491. package/out/_next/static/chunks/7195.2768b2bb31a65f2f.js +0 -1
  492. package/out/_next/static/chunks/7458.1de01a44cd67f6f0.js +0 -1
  493. package/out/_next/static/chunks/7f5d3f51-659399fe6f04b9eb.js +0 -1
  494. package/out/_next/static/chunks/8264-a1b0376ff4b3d4da.js +0 -1
  495. package/out/_next/static/chunks/828-ef0e36f29db31dde.js +0 -1
  496. package/out/_next/static/chunks/8341-b8d844d6f606aed5.js +0 -1
  497. package/out/_next/static/chunks/8720.e06d4cca843573db.js +0 -1
  498. package/out/_next/static/chunks/8785.1331b2a6d4be82c3.js +0 -1
  499. package/out/_next/static/chunks/8829-386c887227aab68c.js +0 -1
  500. package/out/_next/static/chunks/9054.ae9ffec47aacae76.js +0 -1
  501. package/out/_next/static/chunks/9097.1efc23284d82765c.js +0 -1
  502. package/out/_next/static/chunks/9231.af30fa4fedab9f01.js +0 -1
  503. package/out/_next/static/chunks/9497.49670ee9a8bd76f7.js +0 -1
  504. package/out/_next/static/chunks/9600.f70c0583d23764a8.js +0 -1
  505. package/out/_next/static/chunks/9822.0ad553e5c697208c.js +0 -1
  506. package/out/_next/static/chunks/9930.28415573db2b7806.js +0 -7
  507. package/out/_next/static/chunks/b9e0c7b4-52b02c0d4f161186.js +0 -1
  508. package/out/_next/static/chunks/d57e5a30-463f9ed8df724792.js +0 -1
  509. package/out/_next/static/chunks/eb6e03f4.2276f931f02e235c.js +0 -1
  510. package/out/_next/static/chunks/f4df0e03.56d1c15b5532ab26.js +0 -1
  511. package/out/_next/static/chunks/framework-6cc1bceeaaf75e91.js +0 -1
  512. package/out/_next/static/chunks/main-da37322a396d572a.js +0 -1
  513. package/out/_next/static/chunks/pages/_app-d40841fd52b70886.js +0 -1
  514. package/out/_next/static/chunks/pages/_error-c36fa6f7fd569cf6.js +0 -1
  515. package/out/_next/static/chunks/pages/domains/[domain]/events/[name]/logs-350f383eed1cf3f8.js +0 -1
  516. package/out/_next/static/chunks/pages/domains/[domain]/events/[name]/v/[version]-175a58a05deb2eda.js +0 -1
  517. package/out/_next/static/chunks/pages/domains/[domain]/events/[name]-7c7c2526e7d63883.js +0 -1
  518. package/out/_next/static/chunks/pages/domains/[domain]/services/[name]-f447208842a47b40.js +0 -1
  519. package/out/_next/static/chunks/pages/domains/[domain]-ea20e2daae1794fc.js +0 -1
  520. package/out/_next/static/chunks/pages/domains-71179cbdb719a0f8.js +0 -1
  521. package/out/_next/static/chunks/pages/events/[name]/logs-695c5b2cfd996539.js +0 -1
  522. package/out/_next/static/chunks/pages/events/[name]/v/[version]-af687afaafd7fd45.js +0 -1
  523. package/out/_next/static/chunks/pages/events/[name]-24bc568718357116.js +0 -1
  524. package/out/_next/static/chunks/pages/events-05ca59359ab07aa2.js +0 -1
  525. package/out/_next/static/chunks/pages/index-68062a10328e7d10.js +0 -1
  526. package/out/_next/static/chunks/pages/overview-68b31b232c5ef1ff.js +0 -1
  527. package/out/_next/static/chunks/pages/services/[name]-b59b95836832898e.js +0 -1
  528. package/out/_next/static/chunks/pages/services-2c63507ae596def3.js +0 -1
  529. package/out/_next/static/chunks/pages/users/[id]-7306f8a1d8a7012a.js +0 -1
  530. package/out/_next/static/chunks/pages/users-412f257b1de51363.js +0 -1
  531. package/out/_next/static/chunks/pages/visualiser-8474d03175cf9d12.js +0 -1
  532. package/out/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js +0 -1
  533. package/out/_next/static/chunks/webpack-7e93d0cba2ccf996.js +0 -1
  534. package/out/_next/static/css/7e14b4dede1671ad.css +0 -1
  535. package/out/_next/static/css/94b9a747218712b2.css +0 -3
  536. package/out/_next/static/css/ae8abf3666c55019.css +0 -5
  537. package/out/_next/static/css/cc3c8fcadcf7a58b.css +0 -1
  538. package/out/_next/static/css/deb57cf90a65a90f.css +0 -1
  539. package/out/_next/static/css/ed97de5465a152bb.css +0 -1
  540. package/out/_next/static/rP51t_ISuRqZMVs4QvwfY/_buildManifest.js +0 -1
  541. package/out/_next/static/rP51t_ISuRqZMVs4QvwfY/_ssgManifest.js +0 -1
  542. package/out/domains/Orders/events/OrderComplete/index.html +0 -40
  543. package/out/domains/Orders/events/OrderComplete/logs/index.html +0 -1
  544. package/out/domains/Orders/events/OrderConfirmed/index.html +0 -40
  545. package/out/domains/Orders/events/OrderConfirmed/logs/index.html +0 -1
  546. package/out/domains/Orders/events/OrderCreated/index.html +0 -2
  547. package/out/domains/Orders/events/OrderCreated/logs/index.html +0 -1
  548. package/out/domains/Orders/events/OrderRequested/index.html +0 -40
  549. package/out/domains/Orders/events/OrderRequested/logs/index.html +0 -1
  550. package/out/domains/Orders/index.html +0 -2
  551. package/out/domains/Orders/services/Orders Service/index.html +0 -2
  552. package/out/domains/Shopping/events/AddedItemToCart/index.html +0 -65
  553. package/out/domains/Shopping/events/AddedItemToCart/logs/index.html +0 -1
  554. package/out/domains/Shopping/events/AddedItemToCart/v/0.0.1/index.html +0 -59
  555. package/out/domains/Shopping/events/AddedItemToCart/v/0.0.2/index.html +0 -66
  556. package/out/domains/Shopping/events/RemovedItemFromCart/index.html +0 -48
  557. package/out/domains/Shopping/events/RemovedItemFromCart/logs/index.html +0 -1
  558. package/out/domains/Shopping/index.html +0 -2
  559. package/out/domains/index.html +0 -3
  560. package/out/events/PaymentProcessed/index.html +0 -44
  561. package/out/events/PaymentProcessed/logs/index.html +0 -1
  562. package/out/events/ShipmentDelivered/index.html +0 -44
  563. package/out/events/ShipmentDelivered/logs/index.html +0 -1
  564. package/out/events/ShipmentDispatched/index.html +0 -44
  565. package/out/events/ShipmentDispatched/logs/index.html +0 -1
  566. package/out/events/ShipmentPrepared/index.html +0 -2
  567. package/out/events/ShipmentPrepared/logs/index.html +0 -1
  568. package/out/events/index.html +0 -11
  569. package/out/favicon.ico +0 -0
  570. package/out/index.html +0 -1
  571. package/out/logo-random.svg +0 -114
  572. package/out/logo.svg +0 -44
  573. package/out/opengraph.png +0 -0
  574. package/out/overview/index.html +0 -1
  575. package/out/services/Orders Service/index.html +0 -1
  576. package/out/services/Payment Service/index.html +0 -2
  577. package/out/services/Shipping Service/index.html +0 -2
  578. package/out/services/index.html +0 -4
  579. package/out/users/dboyne/index.html +0 -16
  580. package/out/users/index.html +0 -1
  581. package/out/users/mSmith/index.html +0 -13
  582. package/out/visualiser/index.html +0 -16
  583. package/pages/_app.tsx +0 -111
  584. package/pages/_document.tsx +0 -18
  585. package/pages/domains/[domain]/events/[name]/logs.tsx +0 -35
  586. package/pages/domains/[domain]/events/[name]/v/[version].tsx +0 -39
  587. package/pages/domains/[domain]/events/[name].tsx +0 -46
  588. package/pages/domains/[domain]/index.tsx +0 -137
  589. package/pages/domains/[domain]/services/[name].tsx +0 -42
  590. package/pages/domains.tsx +0 -210
  591. package/pages/events/[name]/logs.tsx +0 -177
  592. package/pages/events/[name]/v/[version].tsx +0 -38
  593. package/pages/events/[name].tsx +0 -223
  594. package/pages/events.tsx +0 -357
  595. package/pages/index.tsx +0 -56
  596. package/pages/overview.tsx +0 -89
  597. package/pages/services/[name].tsx +0 -164
  598. package/pages/services.tsx +0 -311
  599. package/pages/users/[id].tsx +0 -101
  600. package/pages/users.tsx +0 -43
  601. package/pages/visualiser.tsx +0 -322
  602. package/postcss.config.js +0 -6
  603. package/public/logo-random.svg +0 -114
  604. package/public/logo.svg +0 -44
  605. package/scripts/__tests__/assets/eventcatalog.config.js +0 -32
  606. package/scripts/__tests__/generate.spec.ts +0 -36
  607. package/scripts/generate.js +0 -28
  608. package/scripts/move-schemas-for-download.js +0 -80
  609. package/styles/Home.module.css +0 -116
  610. package/styles/globals.css +0 -85
  611. package/tailwind.config.js +0 -36
  612. package/types/index.ts +0 -7
  613. package/utils/random-bg.ts +0 -13
  614. /package/{lib/__tests__/assets/services/Payment Service/openapi.yaml → public/openapi.yml} +0 -0
@@ -1,16 +0,0 @@
1
- <!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><meta name="description" content="Discover, Explore and Document your Event Driven Architectures"/><link rel="icon" href="/favicon.ico"/><meta property="og:url" content="https://eventcatalog.dev/"/><meta property="og:type" content="website"/><meta property="og:title" content="EventCatalog"/><meta property="og:description" content="Discover, Explore and Document your Event Driven Architectures"/><meta property="og:image" content="https://eventcatalog.dev/img/opengraph.png"/><meta property="og:image:alt" content="EventCatalog | Discover, Explore and Document your Event Driven Architectures"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="600"/><meta property="og:locale" content="en-GB"/><meta name="author" content="David Boyne"/><title>EventCatalog - Visualiser</title><meta name="next-head-count" content="15"/><script src="//unpkg.com/three@0.145.0/build/three.min.js"></script><script src="//unpkg.com/three@0.145.0/examples/js/renderers/CSS2DRenderer.js"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/atom-one-light.min.css"/><link rel="preload" href="/_next/static/css/94b9a747218712b2.css" as="style"/><link rel="stylesheet" href="/_next/static/css/94b9a747218712b2.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-7e93d0cba2ccf996.js" defer=""></script><script src="/_next/static/chunks/framework-6cc1bceeaaf75e91.js" defer=""></script><script src="/_next/static/chunks/main-da37322a396d572a.js" defer=""></script><script src="/_next/static/chunks/pages/_app-d40841fd52b70886.js" defer=""></script><script src="/_next/static/chunks/b9e0c7b4-52b02c0d4f161186.js" defer=""></script><script src="/_next/static/chunks/172-940ad0353b57ff98.js" defer=""></script><script src="/_next/static/chunks/7109-c8d3fde4c3b6798e.js" defer=""></script><script src="/_next/static/chunks/pages/visualiser-8474d03175cf9d12.js" defer=""></script><script src="/_next/static/rP51t_ISuRqZMVs4QvwfY/_buildManifest.js" defer=""></script><script src="/_next/static/rP51t_ISuRqZMVs4QvwfY/_ssgManifest.js" defer=""></script></head><body><div id="__next" data-reactroot=""><div class="bg-gray-800"><div class="max-w-7xl mx-auto "><div class="relative flex items-center justify-between h-16"><div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start"><div class="flex-shrink-0 flex items-center text-white font-bold"><a class="flex items-center" href="/"><img alt="logo" class="text-white w-8 inline-block mr-3" src="/logo.svg"/><span class="text-xl">EventCatalog</span></a></div></div><div class="hidden sm:block sm:ml-6"><div class="flex space-x-4"><a class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium" href="/events/">Events</a><a class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium" href="/services/">Services</a><a class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium" href="/domains/">Domains</a><a class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium" href="/users/">Users</a><a class="bg-gray-900 text-white px-3 py-2 rounded-md text-sm font-medium" aria-current="page" href="/visualiser/">Visualiser</a><a class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium" href="/overview/">3D Node Graph</a></div></div></div></div></div><div class="h-screen overflow-hidden"><div class="sm:hidden px-4 py-2 bg-gray-200 border-b border-gray-300"><div class="relative rounded-md shadow-sm"><select class=" block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm rounded-md"><option>Please select your event or service</option><option value="{&quot;label&quot;:&quot;AddedItemToCart&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;AddedItemToCart&quot;,&quot;version&quot;:&quot;0.0.2&quot;,&quot;summary&quot;:&quot;Holds information about what the user added to their shopping cart.\n&quot;,&quot;domain&quot;:&quot;Shopping&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[&quot;0.0.2&quot;,&quot;0.0.1&quot;],&quot;producers&quot;:[{&quot;name&quot;:&quot;Basket Service&quot;}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: AddedItemToCart&quot;},&quot;type&quot;:&quot;event&quot;}">Event: AddedItemToCart</option><option value="{&quot;label&quot;:&quot;OrderComplete&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: OrderComplete&quot;},&quot;type&quot;:&quot;event&quot;}">Event: OrderComplete</option><option value="{&quot;label&quot;:&quot;OrderConfirmed&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: OrderConfirmed&quot;},&quot;type&quot;:&quot;event&quot;}">Event: OrderConfirmed</option><option value="{&quot;label&quot;:&quot;OrderCreated&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: OrderCreated&quot;},&quot;type&quot;:&quot;event&quot;}">Event: OrderCreated</option><option value="{&quot;label&quot;:&quot;OrderRequested&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;OrderRequested&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the customers order.\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Payment Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[{&quot;label&quot;:&quot;Topic: order-requested&quot;},{&quot;label&quot;:&quot;Broker: kafka&quot;,&quot;url&quot;:&quot;https://kafka.apache.org&quot;}],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Basket Service&quot;}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Payment Service&quot;,&quot;summary&quot;:&quot;Event based application that integrates with Stripe.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;},{&quot;content&quot;:&quot;Payment Process&quot;,&quot;backgroundColor&quot;:&quot;yellow&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderRequested&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the customers order.\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Payment Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[{&quot;label&quot;:&quot;Topic: order-requested&quot;},{&quot;label&quot;:&quot;Broker: kafka&quot;,&quot;url&quot;:&quot;https://kafka.apache.org&quot;}],&quot;historicVersions&quot;:[]}]}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: OrderRequested&quot;},&quot;type&quot;:&quot;event&quot;}">Event: OrderRequested</option><option value="{&quot;label&quot;:&quot;PaymentProcessed&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Payment Service&quot;,&quot;summary&quot;:&quot;Event based application that integrates with Stripe.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;},{&quot;content&quot;:&quot;Payment Process&quot;,&quot;backgroundColor&quot;:&quot;yellow&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderRequested&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the customers order.\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Payment Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[{&quot;label&quot;:&quot;Topic: order-requested&quot;},{&quot;label&quot;:&quot;Broker: kafka&quot;,&quot;url&quot;:&quot;https://kafka.apache.org&quot;}],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: PaymentProcessed&quot;},&quot;type&quot;:&quot;event&quot;}">Event: PaymentProcessed</option><option value="{&quot;label&quot;:&quot;RemovedItemFromCart&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;RemovedItemFromCart&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about what the user removed from their cart.\n&quot;,&quot;domain&quot;:&quot;Shopping&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Basket Service&quot;}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: RemovedItemFromCart&quot;},&quot;type&quot;:&quot;event&quot;}">Event: RemovedItemFromCart</option><option value="{&quot;label&quot;:&quot;ShipmentDelivered&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Order Service&quot;},{&quot;name&quot;:&quot;Data Lake&quot;}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: ShipmentDelivered&quot;},&quot;type&quot;:&quot;event&quot;}">Event: ShipmentDelivered</option><option value="{&quot;label&quot;:&quot;ShipmentDispatched&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: ShipmentDispatched&quot;},&quot;type&quot;:&quot;event&quot;}">Event: ShipmentDispatched</option><option value="{&quot;label&quot;:&quot;ShipmentPrepared&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;type&quot;:&quot;event&quot;,&quot;label&quot;:&quot;Event: ShipmentPrepared&quot;},&quot;type&quot;:&quot;event&quot;}">Event: ShipmentPrepared</option><option value="{&quot;label&quot;:&quot;Orders Service&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;type&quot;:&quot;service&quot;,&quot;label&quot;:&quot;Service: Orders Service&quot;},&quot;type&quot;:&quot;service&quot;}">Service: Orders Service</option><option value="{&quot;label&quot;:&quot;Payment Service&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;Payment Service&quot;,&quot;summary&quot;:&quot;Event based application that integrates with Stripe.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;},{&quot;content&quot;:&quot;Payment Process&quot;,&quot;backgroundColor&quot;:&quot;yellow&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderRequested&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the customers order.\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Payment Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[{&quot;label&quot;:&quot;Topic: order-requested&quot;},{&quot;label&quot;:&quot;Broker: kafka&quot;,&quot;url&quot;:&quot;https://kafka.apache.org&quot;}],&quot;historicVersions&quot;:[]}],&quot;type&quot;:&quot;service&quot;,&quot;label&quot;:&quot;Service: Payment Service&quot;},&quot;type&quot;:&quot;service&quot;}">Service: Payment Service</option><option value="{&quot;label&quot;:&quot;Shipping Service&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;type&quot;:&quot;service&quot;,&quot;label&quot;:&quot;Service: Shipping Service&quot;},&quot;type&quot;:&quot;service&quot;}">Service: Shipping Service</option><option value="{&quot;label&quot;:&quot;Orders&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;Orders&quot;,&quot;summary&quot;:&quot;Domain for everything shopping\n&quot;,&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;events&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Shipping Service&quot;,&quot;summary&quot;:&quot;Event based application that handles processing of shipments, preparing them and dispatching them.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{&quot;language&quot;:&quot;JavaScript&quot;,&quot;url&quot;:&quot;https://github.com/boyney123/pretend-shipping-service&quot;},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;publishes&quot;:[{&quot;name&quot;:&quot;ShipmentDelivered&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been delivered and received.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Order Service&quot;,&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentDispatched&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has been dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;ShipmentPrepared&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when a shipment has finished being prepared and is ready to be dispatched.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Shipping Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}]},{&quot;name&quot;:&quot;OrderRequested&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the customers order.\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Payment Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[{&quot;label&quot;:&quot;Topic: order-requested&quot;},{&quot;label&quot;:&quot;Broker: kafka&quot;,&quot;url&quot;:&quot;https://kafka.apache.org&quot;}],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Basket Service&quot;}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Payment Service&quot;,&quot;summary&quot;:&quot;Event based application that integrates with Stripe.\n&quot;,&quot;domain&quot;:null,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;},{&quot;content&quot;:&quot;Payment Process&quot;,&quot;backgroundColor&quot;:&quot;yellow&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;OrderRequested&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the customers order.\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Payment Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[{&quot;label&quot;:&quot;Topic: order-requested&quot;},{&quot;label&quot;:&quot;Broker: kafka&quot;,&quot;url&quot;:&quot;https://kafka.apache.org&quot;}],&quot;historicVersions&quot;:[]}]}]}],&quot;services&quot;:[{&quot;name&quot;:&quot;Orders Service&quot;,&quot;summary&quot;:&quot;Service that handles customer orders\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;owners&quot;:[&quot;dboyne&quot;],&quot;repository&quot;:{},&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;publishes&quot;:[{&quot;name&quot;:&quot;OrderComplete&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been complete. (Delivered and finished)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderConfirmed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been confirmed and ready to be processed (shipped for example)\n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Shipping Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Deprecated&quot;,&quot;backgroundColor&quot;:&quot;red&quot;,&quot;textColor&quot;:&quot;red&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]},{&quot;name&quot;:&quot;OrderCreated&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Event represents when an order has been created. \n&quot;,&quot;domain&quot;:&quot;Orders&quot;,&quot;producerNames&quot;:[&quot;Orders Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}],&quot;subscribes&quot;:[{&quot;name&quot;:&quot;PaymentProcessed&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about the payment that has been processed.\n&quot;,&quot;domain&quot;:null,&quot;producerNames&quot;:[&quot;Payment Service&quot;],&quot;consumerNames&quot;:[&quot;Orders Service&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;Recently updated!&quot;,&quot;backgroundColor&quot;:&quot;green&quot;,&quot;textColor&quot;:&quot;green&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[]}]}],&quot;type&quot;:&quot;domain&quot;,&quot;label&quot;:&quot;Domain: Orders&quot;},&quot;type&quot;:&quot;domain&quot;}">Domain: Orders</option><option value="{&quot;label&quot;:&quot;Shopping&quot;,&quot;data&quot;:{&quot;name&quot;:&quot;Shopping&quot;,&quot;summary&quot;:&quot;Domain for everything shopping\n&quot;,&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;tags&quot;:[],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;events&quot;:[{&quot;name&quot;:&quot;AddedItemToCart&quot;,&quot;version&quot;:&quot;0.0.2&quot;,&quot;summary&quot;:&quot;Holds information about what the user added to their shopping cart.\n&quot;,&quot;domain&quot;:&quot;Shopping&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[{&quot;content&quot;:&quot;New!&quot;,&quot;backgroundColor&quot;:&quot;blue&quot;,&quot;textColor&quot;:&quot;blue&quot;}],&quot;tags&quot;:[],&quot;historicVersions&quot;:[&quot;0.0.2&quot;,&quot;0.0.1&quot;],&quot;producers&quot;:[{&quot;name&quot;:&quot;Basket Service&quot;}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}]},{&quot;name&quot;:&quot;RemovedItemFromCart&quot;,&quot;version&quot;:&quot;0.0.1&quot;,&quot;summary&quot;:&quot;Holds information about what the user removed from their cart.\n&quot;,&quot;domain&quot;:&quot;Shopping&quot;,&quot;producerNames&quot;:[&quot;Basket Service&quot;],&quot;consumerNames&quot;:[&quot;Data Lake&quot;],&quot;owners&quot;:[&quot;dboyne&quot;,&quot;mSmith&quot;],&quot;externalLinks&quot;:[],&quot;badges&quot;:[],&quot;tags&quot;:[],&quot;historicVersions&quot;:[],&quot;producers&quot;:[{&quot;name&quot;:&quot;Basket Service&quot;}],&quot;consumers&quot;:[{&quot;name&quot;:&quot;Data Lake&quot;}]}],&quot;services&quot;:[],&quot;type&quot;:&quot;domain&quot;,&quot;label&quot;:&quot;Domain: Shopping&quot;},&quot;type&quot;:&quot;domain&quot;}">Domain: Shopping</option></select></div></div><div class="grid grid-cols-8 xl:grid-cols-6"><div class="hidden sm:block col-span-2 xl:col-span-1 bg-white px-4 h-screen overflow-auto border-r-2 shadow-md border-gray-200 py-3"><div class="border-b border-gray-200 pb-6"><div class="mt-1 relative rounded-md shadow-sm"><div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true" class="h-5 w-5 text-gray-400"><path stroke-linecap="round" stroke-linejoin="round" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path></svg></div><input type="text" name="event" id="event" placeholder="Find Event, Service or Domain" class="focus:ring-gray-500 focus:border-gray-500 block w-full pl-10 sm:text-sm border-gray-300 rounded-md"/></div></div><div class="space-y-6"><div class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border"><div class="bg-blue-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">All Events and Services</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Diagram that shows all your events and services in one place</div></div></div></button></div><div><span class="font-bold block py-2">Domains<!-- --> <!-- --> <!-- -->(<!-- -->2<!-- -->)</span><ul class="space-y-4 overflow-auto"><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#054f44" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">Orders</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Domain for everything shopping
2
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#885552" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">Shopping</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Domain for everything shopping
3
- </div></div></div></button></li></ul></div><div><span class="font-bold block py-2">Events<!-- --> <!-- --> <!-- -->(<!-- -->10<!-- -->)</span><ul class="space-y-4 overflow-auto"><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#2e0a58" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">AddedItemToCart</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Holds information about what the user added to their shopping cart.
4
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#871e73" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">OrderComplete</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event represents when an order has been complete. (Delivered and finished)
5
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#d1ffa1" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">OrderConfirmed</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event represents when an order has been confirmed and ready to be processed (shipped for example)
6
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#daaf26" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">OrderCreated</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event represents when an order has been created.
7
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#e053ec" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">OrderRequested</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Holds information about the customers order.
8
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#08642a" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">PaymentProcessed</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Holds information about the payment that has been processed.
9
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#7de28e" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">RemovedItemFromCart</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Holds information about what the user removed from their cart.
10
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#ea7bc8" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">ShipmentDelivered</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event represents when a shipment has been delivered and received.
11
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#f36bc3" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">ShipmentDispatched</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event represents when a shipment has been dispatched.
12
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#1774bd" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">ShipmentPrepared</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event represents when a shipment has finished being prepared and is ready to be dispatched.
13
- </div></div></div></button></li></ul></div><div><span class="font-bold block py-2">Services<!-- --> <!-- --> <!-- -->(<!-- -->3<!-- -->)</span><ul class="space-y-4 overflow-auto"><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#7a747d" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">Orders Service</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Service that handles customer orders
14
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#5b7e99" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">Payment Service</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event based application that integrates with Stripe.
15
- </div></div></div></button></li><li class="flex"><button type="button" class="flex shadow-sm rounded-md w-full text-left border "><div style="background:#438ef7" class="bg-red-500 flex-shrink-0 flex h-full items-center justify-center w-4 text-white text-sm font-medium rounded-l-md"></div><div class="w-full rounded-r-md border-t border-r border-b bg-white"><div class="p-4 text-sm space-y-2 flex flex-col justify-between h-full"><div class="text-gray-900 font-bold hover:text-gray-600 break-all text-xs xl:text-md">Shipping Service</div><div class="hidden xl:block text-gray-500 text-xs font-normal mt-2 ">Event based application that handles processing of shipments, preparing them and dispatching them.
16
- </div></div></div></button></li></ul></div></div></div><div class="bg-gray-200 h-screen col-span-12 sm:col-span-6 xl:col-span-5"></div></div></div><footer class="bg-gray-800"><div class="max-w-7xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8"><nav class="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer"><div class="px-5 py-2"><a href="/events" class="text-base text-gray-500 hover:text-gray-400">Events</a></div><div class="px-5 py-2"><a href="/services" class="text-base text-gray-500 hover:text-gray-400">Services</a></div><div class="px-5 py-2"><a href="/visualiser" class="text-base text-gray-500 hover:text-gray-400">Visualiser</a></div><div class="px-5 py-2"><a href="/overview" class="text-base text-gray-500 hover:text-gray-400">3D Node Graph</a></div><div class="px-5 py-2"><a href="https://github.com/boyney123/eventcatalog-demo/edit/master" class="text-base text-gray-500 hover:text-gray-400">GitHub</a></div></nav><p class="mt-8 text-center text-base text-gray-400">Copyright © <!-- -->2024<!-- --> <!-- -->Your Company<!-- -->. Built with<!-- --> <a class="underline" href="https://eventcatalog.dev" target="_blank" rel="noreferrer">EventCatalog.</a></p></div></footer></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"events":[{"name":"AddedItemToCart","version":"0.0.2","summary":"Holds information about what the user added to their shopping cart.\n","domain":"Shopping","producerNames":["Basket Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"tags":[],"historicVersions":["0.0.2","0.0.1"],"producers":[{"name":"Basket Service"}],"consumers":[{"name":"Data Lake"}]},{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Data Lake"}]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[],"producers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Data Lake"}]},{"name":"OrderRequested","version":"0.0.1","summary":"Holds information about the customers order.\n","domain":"Orders","producerNames":["Basket Service"],"consumerNames":["Payment Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[{"label":"Topic: order-requested"},{"label":"Broker: kafka","url":"https://kafka.apache.org"}],"historicVersions":[],"producers":[{"name":"Basket Service"}],"consumers":[{"name":"Payment Service","summary":"Event based application that integrates with Stripe.\n","domain":null,"owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"},{"content":"Payment Process","backgroundColor":"yellow","textColor":"red"}],"publishes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderRequested","version":"0.0.1","summary":"Holds information about the customers order.\n","domain":"Orders","producerNames":["Basket Service"],"consumerNames":["Payment Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[{"label":"Topic: order-requested"},{"label":"Broker: kafka","url":"https://kafka.apache.org"}],"historicVersions":[]}]}]},{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[],"producers":[{"name":"Payment Service","summary":"Event based application that integrates with Stripe.\n","domain":null,"owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"},{"content":"Payment Process","backgroundColor":"yellow","textColor":"red"}],"publishes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderRequested","version":"0.0.1","summary":"Holds information about the customers order.\n","domain":"Orders","producerNames":["Basket Service"],"consumerNames":["Payment Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[{"label":"Topic: order-requested"},{"label":"Broker: kafka","url":"https://kafka.apache.org"}],"historicVersions":[]}]}],"consumers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}]},{"name":"RemovedItemFromCart","version":"0.0.1","summary":"Holds information about what the user removed from their cart.\n","domain":"Shopping","producerNames":["Basket Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Basket Service"}],"consumers":[{"name":"Data Lake"}]},{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Order Service"},{"name":"Data Lake"}]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}]}],"services":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]},{"name":"Payment Service","summary":"Event based application that integrates with Stripe.\n","domain":null,"owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"},{"content":"Payment Process","backgroundColor":"yellow","textColor":"red"}],"publishes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderRequested","version":"0.0.1","summary":"Holds information about the customers order.\n","domain":"Orders","producerNames":["Basket Service"],"consumerNames":["Payment Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[{"label":"Topic: order-requested"},{"label":"Broker: kafka","url":"https://kafka.apache.org"}],"historicVersions":[]}]},{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}],"domains":[{"name":"Orders","summary":"Domain for everything shopping\n","owners":["dboyne","mSmith"],"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"events":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Data Lake"}]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[],"producers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Shipping Service","summary":"Event based application that handles processing of shipments, preparing them and dispatching them.\n","domain":null,"owners":["dboyne"],"repository":{"language":"JavaScript","url":"https://github.com/boyney123/pretend-shipping-service"},"tags":[],"externalLinks":[],"badges":[],"publishes":[{"name":"ShipmentDelivered","version":"0.0.1","summary":"Event represents when a shipment has been delivered and received.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Order Service","Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"ShipmentDispatched","version":"0.0.1","summary":"Event represents when a shipment has been dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"ShipmentPrepared","version":"0.0.1","summary":"Event represents when a shipment has finished being prepared and is ready to be dispatched.\n","domain":null,"producerNames":["Shipping Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}]}]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}],"consumers":[{"name":"Data Lake"}]},{"name":"OrderRequested","version":"0.0.1","summary":"Holds information about the customers order.\n","domain":"Orders","producerNames":["Basket Service"],"consumerNames":["Payment Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[{"label":"Topic: order-requested"},{"label":"Broker: kafka","url":"https://kafka.apache.org"}],"historicVersions":[],"producers":[{"name":"Basket Service"}],"consumers":[{"name":"Payment Service","summary":"Event based application that integrates with Stripe.\n","domain":null,"owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"},{"content":"Payment Process","backgroundColor":"yellow","textColor":"red"}],"publishes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"OrderRequested","version":"0.0.1","summary":"Holds information about the customers order.\n","domain":"Orders","producerNames":["Basket Service"],"consumerNames":["Payment Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[{"label":"Topic: order-requested"},{"label":"Broker: kafka","url":"https://kafka.apache.org"}],"historicVersions":[]}]}]}],"services":[{"name":"Orders Service","summary":"Service that handles customer orders\n","domain":"Orders","owners":["dboyne"],"repository":{},"tags":[],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"publishes":[{"name":"OrderComplete","version":"0.0.1","summary":"Event represents when an order has been complete. (Delivered and finished)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]},{"name":"OrderConfirmed","version":"0.0.1","summary":"Event represents when an order has been confirmed and ready to be processed (shipped for example)\n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Shipping Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Deprecated","backgroundColor":"red","textColor":"red"}],"tags":[],"historicVersions":[]},{"name":"OrderCreated","version":"0.0.1","summary":"Event represents when an order has been created. \n","domain":"Orders","producerNames":["Orders Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[]}],"subscribes":[{"name":"PaymentProcessed","version":"0.0.1","summary":"Holds information about the payment that has been processed.\n","domain":null,"producerNames":["Payment Service"],"consumerNames":["Orders Service"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"Recently updated!","backgroundColor":"green","textColor":"green"}],"tags":[],"historicVersions":[]}]}]},{"name":"Shopping","summary":"Domain for everything shopping\n","owners":["dboyne","mSmith"],"tags":[],"externalLinks":[],"badges":[],"events":[{"name":"AddedItemToCart","version":"0.0.2","summary":"Holds information about what the user added to their shopping cart.\n","domain":"Shopping","producerNames":["Basket Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[{"content":"New!","backgroundColor":"blue","textColor":"blue"}],"tags":[],"historicVersions":["0.0.2","0.0.1"],"producers":[{"name":"Basket Service"}],"consumers":[{"name":"Data Lake"}]},{"name":"RemovedItemFromCart","version":"0.0.1","summary":"Holds information about what the user removed from their cart.\n","domain":"Shopping","producerNames":["Basket Service"],"consumerNames":["Data Lake"],"owners":["dboyne","mSmith"],"externalLinks":[],"badges":[],"tags":[],"historicVersions":[],"producers":[{"name":"Basket Service"}],"consumers":[{"name":"Data Lake"}]}],"services":[]}]},"__N_SSG":true},"page":"/visualiser","query":{},"buildId":"rP51t_ISuRqZMVs4QvwfY","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
package/pages/_app.tsx DELETED
@@ -1,111 +0,0 @@
1
- import '../styles/globals.css';
2
-
3
- import { AppProps } from 'next/app';
4
-
5
- import Head from 'next/head';
6
- import getConfig from 'next/config';
7
- import { AnalyticsConfig, OpenGraphConfig } from '@eventcatalog/types';
8
- import { useEffect } from 'react';
9
- import { useRouter } from 'next/router';
10
- import Script from 'next/script';
11
- import Header from '@/components/Header';
12
- import Footer from '@/components/Footer';
13
- import { EventCatalogContextProvider, useConfig } from '@/hooks/EventCatalog';
14
- import * as ga from '../lib/analytics';
15
-
16
- function Page({ Component, pageProps }: AppProps) {
17
- const {
18
- title = 'EventCatalog | Discover, Explore and Document your Event Driven Architectures.',
19
- tagline = 'An open source tool powered by markdown to document your Event Driven Architecture.',
20
- homepageLink = 'https://eventcatalog.dev/',
21
- analytics,
22
- openGraph = {},
23
- } = useConfig();
24
- const { publicRuntimeConfig: { basePath = '' } = {} } = getConfig();
25
- const { googleAnalyticsTrackingId } = analytics || ({} as AnalyticsConfig);
26
- const {
27
- ogTitle = title,
28
- ogDescription = tagline,
29
- ogImage = 'https://eventcatalog.dev/img/opengraph.png',
30
- ogUrl = homepageLink,
31
- } = openGraph as OpenGraphConfig;
32
-
33
- const router = useRouter();
34
-
35
- useEffect(() => {
36
- const loadStyles = async () => {
37
- try {
38
- // @ts-ignore
39
- await import('../eventcatalog.styles.css');
40
- console.log('Styles loaded successfully');
41
- } catch (error) {
42
- console.log('Custom stylesheet does not exist. If you want to add one add eventcatalog.styles.css to your project');
43
- }
44
- };
45
-
46
- loadStyles();
47
- }, []);
48
-
49
- useEffect(() => {
50
- const handleRouteChange = (url) => {
51
- if (googleAnalyticsTrackingId) {
52
- // Track page views
53
- ga.pageview(url);
54
- }
55
- };
56
- router.events.on('routeChangeComplete', handleRouteChange);
57
- return () => {
58
- router.events.off('routeChangeComplete', handleRouteChange);
59
- };
60
- }, [router.events, googleAnalyticsTrackingId]);
61
-
62
- return (
63
- <EventCatalogContextProvider>
64
- <Head>
65
- <title>{title}</title>
66
-
67
- <meta name="description" content={tagline} />
68
-
69
- <link rel="icon" href={`${basePath}/favicon.ico`} />
70
-
71
- {ogUrl && ogUrl !== '' && <meta property="og:url" content={ogUrl} />}
72
- <meta property="og:type" content="website" />
73
- {ogTitle && <meta property="og:title" content={ogTitle} />}
74
- {ogDescription && <meta property="og:description" content={ogDescription} />}
75
- {ogImage && (
76
- <>
77
- <meta property="og:image" content={ogImage} />
78
- <meta property="og:image:alt" content={`${ogTitle} | ${ogDescription}`} />
79
- <meta property="og:image:width" content="1200" />
80
- <meta property="og:image:height" content="600" />
81
- </>
82
- )}
83
- <meta property="og:locale" content="en-GB" />
84
- <meta name="author" content="David Boyne" />
85
- </Head>
86
- {googleAnalyticsTrackingId && (
87
- <>
88
- {/* Global Site Tag (gtag.js) - Google Analytics */}
89
- <Script strategy="afterInteractive" src={`https://www.googletagmanager.com/gtag/js?id=${googleAnalyticsTrackingId}`} />
90
- <Script
91
- strategy="afterInteractive"
92
- dangerouslySetInnerHTML={{
93
- __html: `
94
- window.dataLayer = window.dataLayer || [];
95
- function gtag(){dataLayer.push(arguments);}
96
- gtag('js', new Date());
97
- gtag('config', '${googleAnalyticsTrackingId}', {
98
- page_path: window.location.pathname,
99
- });`,
100
- }}
101
- />
102
- </>
103
- )}
104
- <Header />
105
- <Component {...pageProps} />
106
- <Footer />
107
- </EventCatalogContextProvider>
108
- );
109
- }
110
-
111
- export default Page;
@@ -1,18 +0,0 @@
1
- import { Html, Head, Main, NextScript } from 'next/document';
2
-
3
- export default function Document() {
4
- return (
5
- <Html>
6
- <Head>
7
- <script src="//unpkg.com/three@0.145.0/build/three.min.js" />
8
- <script src="//unpkg.com/three@0.145.0/examples/js/renderers/CSS2DRenderer.js" />
9
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
10
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/atom-one-light.min.css" />
11
- </Head>
12
- <body>
13
- <Main />
14
- <NextScript />
15
- </body>
16
- </Html>
17
- );
18
- }