@eventcatalog/core 2.12.3 → 2.13.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 (78) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +1 -1
  3. package/public/icons/protocols/kafka.svg +1 -0
  4. package/scripts/catalog-to-astro-content-directory.js +13 -1
  5. package/scripts/default-files-for-collections/channels.md +8 -0
  6. package/scripts/map-catalog-to-astro.js +1 -0
  7. package/src/components/DocsNavigation.astro +4 -4
  8. package/src/components/Header.astro +1 -1
  9. package/src/components/Lists/PillListFlat.tsx +19 -12
  10. package/src/components/Lists/ProtocolList.tsx +88 -0
  11. package/src/components/MDX/ChannelInformation/ChannelInformation.tsx +79 -0
  12. package/src/components/MDX/Flow/Flow.astro +3 -3
  13. package/src/components/MDX/NodeGraph/DownloadButton.tsx +3 -3
  14. package/src/components/MDX/NodeGraph/Edges/AnimatedMessageEdge.tsx +82 -0
  15. package/src/components/MDX/NodeGraph/NodeGraph.astro +24 -67
  16. package/src/components/MDX/NodeGraph/NodeGraph.tsx +188 -17
  17. package/src/components/MDX/NodeGraph/Nodes/Channel.tsx +133 -0
  18. package/src/components/MDX/components.tsx +2 -0
  19. package/src/components/Seo.astro +0 -2
  20. package/src/components/SideBars/CatalogResourcesSideBar/index.tsx +4 -13
  21. package/src/components/SideBars/ChannelSideBar.astro +117 -0
  22. package/src/components/SideBars/MessageSideBar.astro +13 -0
  23. package/src/content/config.ts +37 -0
  24. package/src/icons/protocols/WebSocket.svg +1 -0
  25. package/src/icons/protocols/amqp.svg +1 -0
  26. package/src/icons/protocols/eventbridge.svg +6 -0
  27. package/src/icons/protocols/googlepubsub.svg +1 -0
  28. package/src/icons/protocols/http.svg +1 -0
  29. package/src/icons/protocols/index.ts +15 -0
  30. package/src/icons/protocols/jms.svg +1 -0
  31. package/src/icons/protocols/kafka.svg +1 -0
  32. package/src/icons/protocols/mercure.svg +20 -0
  33. package/src/icons/protocols/mqtt.svg +17 -0
  34. package/src/icons/protocols/nats.svg +13 -0
  35. package/src/icons/protocols/pulsar.svg +4 -0
  36. package/src/icons/protocols/redis.svg +1 -0
  37. package/src/icons/protocols/sns.svg +6 -0
  38. package/src/icons/protocols/solace.svg +1 -0
  39. package/src/icons/protocols/sqs.svg +7 -0
  40. package/src/icons/protocols/ws.svg +1 -0
  41. package/src/layouts/DiscoverLayout.astro +3 -3
  42. package/src/layouts/VerticalSideBarLayout.astro +10 -5
  43. package/src/layouts/VisualiserLayout.astro +3 -3
  44. package/src/pages/discover/[type]/index.astro +3 -3
  45. package/src/pages/docs/[type]/[id]/[version]/asyncapi/index.astro +2 -2
  46. package/src/pages/docs/[type]/[id]/[version]/changelog/index.astro +2 -2
  47. package/src/pages/docs/[type]/[id]/[version]/index.astro +11 -4
  48. package/src/pages/docs/[type]/[id]/[version]/spec/index.astro +2 -2
  49. package/src/pages/docs/[type]/[id]/index.astro +17 -4
  50. package/src/pages/index.astro +3 -3
  51. package/src/pages/visualiser/[type]/[id]/[version]/index.astro +2 -2
  52. package/src/pages/visualiser/[type]/[id]/index.astro +2 -2
  53. package/src/remark-plugins/mermaid.ts +0 -1
  54. package/src/types/index.ts +2 -2
  55. package/src/utils/channels.ts +64 -0
  56. package/src/utils/collections/icons.ts +6 -0
  57. package/src/utils/commands.ts +6 -0
  58. package/src/utils/{config → eventcatalog-config}/catalog.ts +1 -1
  59. package/src/utils/events.ts +5 -0
  60. package/src/utils/{domains/node-graph.ts → node-graphs/domains-node-graph.ts} +2 -2
  61. package/src/utils/{flows/node-graph.ts → node-graphs/flows-node-graph.ts} +2 -2
  62. package/src/utils/node-graphs/message-node-graph.ts +216 -0
  63. package/src/utils/{services/node-graph.ts → node-graphs/services-node-graph.ts} +79 -54
  64. package/src/utils/node-graphs/utils/utils.ts +128 -0
  65. package/src/utils/{pages/pages.ts → page-loaders/page-data-loader.ts} +4 -2
  66. package/src/utils/queries.ts +5 -0
  67. package/tsconfig.json +2 -1
  68. package/src/remark-plugins/remark-modified-time.mjs +0 -9
  69. package/src/utils/commands/node-graph.ts +0 -144
  70. package/src/utils/events/node-graph.ts +0 -145
  71. package/src/utils/node-graph-utils/utils.ts +0 -29
  72. package/src/utils/queries/node-graph.ts +0 -144
  73. /package/src/pages/docs/[type]/[id]/[version]/spec/{styles.css → _styles.css} +0 -0
  74. /package/src/utils/{changelogs → collections}/changelogs.ts +0 -0
  75. /package/src/utils/{domains → collections}/domains.ts +0 -0
  76. /package/src/utils/{flows → collections}/flows.ts +0 -0
  77. /package/src/utils/{services → collections}/services.ts +0 -0
  78. /package/src/utils/{versions → collections}/versions.ts +0 -0
@@ -18,6 +18,12 @@ const pointer = z.object({
18
18
  version: z.string().optional().default('latest'),
19
19
  });
20
20
 
21
+ const channelPointer = z
22
+ .object({
23
+ parameters: z.record(z.string()).optional(),
24
+ })
25
+ .merge(pointer);
26
+
21
27
  const changelogs = defineCollection({
22
28
  type: 'content',
23
29
  schema: z.object({
@@ -142,6 +148,9 @@ const events = defineCollection({
142
148
  .object({
143
149
  producers: z.array(reference('services')).optional(),
144
150
  consumers: z.array(reference('services')).optional(),
151
+ channels: z.array(channelPointer).optional(),
152
+ // Used by eventcatalog
153
+ messageChannels: z.array(reference('channels')).optional(),
145
154
  })
146
155
  .merge(baseSchema),
147
156
  });
@@ -152,6 +161,9 @@ const commands = defineCollection({
152
161
  .object({
153
162
  producers: z.array(reference('services')).optional(),
154
163
  consumers: z.array(reference('services')).optional(),
164
+ channels: z.array(channelPointer).optional(),
165
+ // Used by eventcatalog
166
+ messageChannels: z.array(reference('channels')).optional(),
155
167
  })
156
168
  .merge(baseSchema),
157
169
  });
@@ -162,6 +174,9 @@ const queries = defineCollection({
162
174
  .object({
163
175
  producers: z.array(reference('services')).optional(),
164
176
  consumers: z.array(reference('services')).optional(),
177
+ channels: z.array(channelPointer).optional(),
178
+ // Used by eventcatalog
179
+ messageChannels: z.array(reference('channels')).optional(),
165
180
  })
166
181
  .merge(baseSchema),
167
182
  });
@@ -176,6 +191,27 @@ const services = defineCollection({
176
191
  .merge(baseSchema),
177
192
  });
178
193
 
194
+ const channels = defineCollection({
195
+ type: 'content',
196
+ schema: z
197
+ .object({
198
+ address: z.string().optional(),
199
+ protocols: z.array(z.string()).optional(),
200
+ parameters: z
201
+ .record(
202
+ z.object({
203
+ enum: z.array(z.string()).optional(),
204
+ default: z.string().optional(),
205
+ examples: z.array(z.string()).optional(),
206
+ description: z.string().optional(),
207
+ })
208
+ )
209
+ .optional(),
210
+ messages: z.array(z.object({ collection: z.string(), name: z.string(), ...pointer.shape })).optional(),
211
+ })
212
+ .merge(baseSchema),
213
+ });
214
+
179
215
  const domains = defineCollection({
180
216
  type: 'content',
181
217
  schema: z
@@ -225,6 +261,7 @@ export const collections = {
225
261
  commands,
226
262
  queries,
227
263
  services,
264
+ channels,
228
265
  users,
229
266
  teams,
230
267
  domains,
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path d="m48.38,23.39l7.48,7.48v15.98h-6.69v-13.15l-5.55-5.55,4.76-4.76Zm-7.14,33.55h-11.45l-7.48-7.48,4.65-4.65-11.56-11.56v-6.57h6.69v3.74l4.87,4.87,7.14-7.14-4.87-4.87h-13.83l-6.69-6.69h23.23l11.56,11.67-2.38,2.38,4.53,4.53v9.41l-9.29-9.29-2.38,2.38,9.29,9.29h-9.41l-4.65-4.65-2.38,2.38,5.55,5.55h23.35l6.69,6.57-21.19.11h0Z" fill="#fff" stroke-width="0"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path d="m14.13,14.18h12.24v12.45h-12.24v-12.45Zm0,15.75h15.54v-15.75h12.35v28.2H14.13v-12.45Zm43.74-3.51v31.4H14.24v-12.35h31.29V14.18h12.35v12.24Z" fill="#fff" stroke-width="0"/></g></svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="15 7 55 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="Icon-Architecture/64/Arch_Amazon-EventBridge_64" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <path d="M53.656744,66 C51.5137882,66 49.7695913,64.247 49.7695913,62.091 C49.7695913,59.935 51.5137882,58.182 53.656744,58.182 C55.7996998,58.182 57.5438968,59.935 57.5438968,62.091 C57.5438968,64.247 55.7996998,66 53.656744,66 L53.656744,66 Z M45.1326526,49 L34.7977386,49 L29.6297845,40 L34.7977386,31 L45.1326526,31 L50.2996124,40 L45.1326526,49 Z M27.6210741,21.818 C25.4781184,21.818 23.7339214,20.065 23.7339214,17.909 C23.7339214,15.753 25.4781184,14 27.6210741,14 C29.7650244,14 31.5092213,15.753 31.5092213,17.909 C31.5092213,20.065 29.7650244,21.818 27.6210741,21.818 L27.6210741,21.818 Z M53.656744,56.182 C52.918891,56.182 52.214848,56.325 51.5635088,56.576 L47.3402451,49.41 L47.117497,49.543 L52.3093171,40.5 C52.4863222,40.19 52.4863222,39.81 52.3093171,39.5 L46.5675877,29.5 C46.3895881,29.19 46.0614325,29 45.7064278,29 L35.2581509,29 L35.2989218,28.976 L31.4266852,22.404 C32.691576,21.32 33.4980434,19.708 33.4980434,17.909 C33.4980434,14.651 30.8618597,12 27.6210741,12 C24.381283,12 21.7450993,14.651 21.7450993,17.909 C21.7450993,21.167 24.381283,23.818 27.6210741,23.818 C28.3599216,23.818 29.0639646,23.675 29.7153038,23.424 L33.3299879,29.557 L27.6200797,39.5 C27.4430746,39.81 27.4430746,40.19 27.6200797,40.5 L33.3628035,50.5 C33.5408031,50.81 33.8689587,51 34.2239635,51 L45.7064278,51 C45.7889639,51 45.8695112,50.987 45.9470752,50.968 L49.8521274,57.596 C48.5862421,58.68 47.7807692,60.292 47.7807692,62.091 C47.7807692,65.349 50.4159585,68 53.656744,68 C56.8975296,68 59.5327189,65.349 59.5327189,62.091 C59.5327189,58.833 56.8975296,56.182 53.656744,56.182 L53.656744,56.182 Z M59.5844283,32.104 C57.4414725,32.104 55.6982699,30.351 55.6982699,28.195 C55.6982699,26.039 57.4414725,24.286 59.5844283,24.286 C61.7273841,24.286 63.471581,26.039 63.471581,28.195 C63.471581,30.351 61.7273841,32.104 59.5844283,32.104 L59.5844283,32.104 Z M66.8665003,39.5 L63.091716,32.925 C64.5266511,31.846 65.4604031,30.13 65.4604031,28.195 C65.4604031,24.937 62.8252138,22.286 59.5844283,22.286 C58.7600615,22.286 57.9744768,22.459 57.2614841,22.77 L54.1837819,17.409 C54.0067767,17.1 53.6776267,16.909 53.3226219,16.909 L40.9949082,16.909 L40.9949082,18.909 L52.7488468,18.909 L55.5958456,23.869 C54.4383511,24.949 53.7094478,26.486 53.7094478,28.195 C53.7094478,31.453 56.3446371,34.104 59.5844283,34.104 C60.1880358,34.104 60.771755,34.011 61.3206699,33.84 L64.85779,40 L59.8917013,48.648 L61.6140212,49.648 L66.8665003,40.5 C67.0444999,40.19 67.0444999,39.81 66.8665003,39.5 L66.8665003,39.5 Z M21.229,55.247 C19.0850498,55.247 17.3408528,53.493 17.3408528,51.338 C17.3408528,49.182 19.0850498,47.429 21.229,47.429 C23.3719558,47.429 25.1161527,49.182 25.1161527,51.338 C25.1161527,53.493 23.3719558,55.247 21.229,55.247 L21.229,55.247 Z M24.4767464,56.258 C26.0588544,55.198 27.1049748,53.389 27.1049748,51.338 C27.1049748,48.08 24.4687911,45.429 21.229,45.429 C20.2902759,45.429 19.4062445,45.657 18.618671,46.052 L15.1432044,40 L20.9018387,29.971 L19.1785244,28.971 L13.1334997,39.5 C12.9555001,39.81 12.9555001,40.19 13.1334997,40.5 L17.0047419,47.24 C15.9834817,48.304 15.3520307,49.747 15.3520307,51.338 C15.3520307,54.596 17.9882144,57.247 21.229,57.247 C21.7172558,57.247 22.189601,57.18 22.6440469,57.066 L25.8162181,62.591 C25.9942177,62.9 26.3223733,63.091 26.6773781,63.091 L39.0060862,63.091 L39.0060862,61.091 L27.2511532,61.091 L24.4767464,56.258 Z" id="Amazon-EventBridge_Icon_64_Squid" fill="currentColor"></path>
5
+ </g>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><defs><style>.cls-1{filter:url(#luminosity-noclip);}.cls-2{fill:currentColor;}.cls-3{mask:url(#mask);}.cls-4{fill:currentColor;}.cls-5{fill:currentColor;}</style><filter id="luminosity-noclip" x="4.64" y="4.19" width="14.73" height="12.76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-color="#fff" result="bg"/><feBlend in="SourceGraphic" in2="bg"/></filter><mask id="mask" x="4.64" y="4.19" width="14.73" height="12.76" maskUnits="userSpaceOnUse"><circle class="cls-1" cx="12" cy="12.23" r="3.58"/></mask></defs><title>Icon_24px_Pub-Sub_Color</title><g data-name="Product Icons"><circle class="cls-2" cx="18.97" cy="8.21" r="1.72"/><circle class="cls-2" cx="5.03" cy="8.21" r="1.72"/><circle class="cls-2" cx="12" cy="20.28" r="1.72"/><g class="cls-3"><rect class="cls-4" x="14.69" y="10.22" width="1.59" height="8.04" transform="matrix(0.5, -0.87, 0.87, 0.5, -4.59, 20.53)"/><rect class="cls-4" x="4.49" y="13.45" width="8.04" height="1.59" transform="translate(-5.98 6.17) rotate(-30)"/><rect class="cls-4" x="11.2" y="4.19" width="1.59" height="8.04"/></g><circle class="cls-5" cx="12" cy="12.23" r="2.78"/><circle class="cls-5" cx="5.03" cy="16.25" r="2.19"/><circle class="cls-5" cx="18.97" cy="16.25" r="2.19"/><circle class="cls-5" cx="12" cy="4.19" r="2.19"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="currentColor" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 560 560" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <g> <path d="M202.042,199.238c-6.938-2.103-14.268,1.82-16.371,8.759l-55.138,182.045c-2.102,6.938,1.82,14.268,8.759,16.37 c1.27,0.385,2.549,0.568,3.811,0.568c5.633,0,10.841-3.656,12.56-9.326l55.138-182.045 C212.901,208.668,208.981,201.338,202.042,199.238z"></path> </g> </g> <g> <g> <path d="M268.994,199.238c-6.93-2.103-14.268,1.82-16.37,8.759l-55.138,182.045c-2.102,6.938,1.82,14.268,8.759,16.37 c1.269,0.385,2.549,0.568,3.811,0.568c5.633,0,10.841-3.656,12.56-9.326l55.138-182.045 C279.857,208.668,275.935,201.338,268.994,199.238z"></path> </g> </g> <g> <g> <path d="M498.872,0H13.128C5.878,0,0,5.879,0,13.128v485.744C0,506.121,5.878,512,13.128,512h485.744 c7.249,0,13.128-5.879,13.128-13.128V13.128C512,5.879,506.121,0,498.872,0z M105.026,26.256h301.949v52.513H105.026V26.256z M26.256,26.256h52.513v52.513H26.256V26.256z M485.744,485.744H26.256V105.026h459.487V485.744z M485.744,78.769h-52.513V26.256 h52.513V78.769z"></path> </g> </g> <g> <g> <circle cx="93.867" cy="245.064" r="13.128"></circle> </g> </g> <g> <g> <circle cx="93.867" cy="360.592" r="13.128"></circle> </g> </g> <g> <g> <path d="M429.292,380.718H307.2c-7.249,0-13.128,5.879-13.128,13.128c0,7.249,5.879,13.128,13.128,13.128h122.092 c7.249,0,13.128-5.879,13.128-13.128C442.421,386.597,436.542,380.718,429.292,380.718z"></path> </g> </g> </g></svg>
@@ -0,0 +1,15 @@
1
+ export { default as Kafka } from '@icons/protocols/kafka.svg?raw';
2
+ export { default as Http } from '@icons/protocols/http.svg?raw';
3
+ export { default as JMS } from '@icons/protocols/jms.svg?raw';
4
+ export { default as MQTT } from '@icons/protocols/mqtt.svg?raw';
5
+ export { default as AMQP } from '@icons/protocols/amqp.svg?raw';
6
+ export { default as Solace } from '@icons/protocols/solace.svg?raw';
7
+ export { default as Mercure } from '@icons/protocols/mercure.svg?raw';
8
+ export { default as WebSocket } from '@icons/protocols/ws.svg?raw';
9
+ export { default as Pulsar } from '@icons/protocols/pulsar.svg?raw';
10
+ export { default as Nats } from '@icons/protocols/nats.svg?raw';
11
+ export { default as SNS } from '@icons/protocols/sns.svg?raw';
12
+ export { default as SQS } from '@icons/protocols/sqs.svg?raw';
13
+ export { default as EventBridge } from '@icons/protocols/eventbridge.svg?raw';
14
+ export { default as Redis } from '@icons/protocols/redis.svg?raw';
15
+ export { default as GooglePubSub } from '@icons/protocols/googlepubsub.svg?raw';
@@ -0,0 +1 @@
1
+ <svg fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g id="5151e0c8492e5103c096af88a51e8d81"> <path display="inline" d="M193.918,208.369c-4.729-10.456-6.849-22.652-3.236-33.731c3.612-11.327,11.703-20.413,19.794-28.878 c22.525-22.531,50.285-39.085,72.316-61.986c12.197-12.573,22.278-27.634,25.762-44.937c2.864-12.695,1.496-25.764-1.117-38.337 c11.7,13.319,15.559,32.363,12.197,49.541c-3.608,19.292-14.316,36.344-26.886,51.031c-10.081,11.827-21.659,22.282-33.731,31.993 c-14.065,11.327-27.88,23.524-36.716,39.457c-7.472,12.943-9.215,28.876-4.11,42.942c8.341,24.146,27.756,42.071,38.338,64.848 c-11.703-10.332-23.152-21.036-33.86-32.361C211.471,236.001,200.889,223.307,193.918,208.369z M257.398,189.448 c-2.115,19.792,8.213,38.462,20.539,53.151c5.972,6.596,11.076,14.687,11.323,23.899c0.251,12.318-6.716,23.774-15.684,31.861 c2.119-0.246,3.612-2.115,5.355-3.11c13.443-8.589,26.385-19.418,32.982-34.227c4.357-10.083,3.362-22.034-2.362-31.371 c-6.724-10.953-15.559-20.662-20.786-32.61c-2.867-6.721-3.862-14.562-1.496-21.657c3.114-9.583,9.834-17.426,16.93-24.272 c19.54-18.544,43.189-31.743,65.844-46.179c-28.629,8.214-56.883,19.542-81.03,37.343 C273.702,153.727,259.515,169.658,257.398,189.448z M393.447,283.052c13.568,0.748,26.882,10.704,29.374,24.397 c2.366,11.825-3.358,23.524-10.705,32.485c-12.075,14.438-28.382,24.771-44.807,33.609c-1.622,0.991-2.99,2.237-4.235,3.608 c21.659-5.478,43.314-13.689,60.867-27.756c9.705-8.091,18.294-18.799,20.163-31.619c1.743-11.076-2.86-22.528-11.077-29.871 c-9.96-9.09-24.021-12.448-37.218-10.704c-7.593,0.995-15.931,2.613-21.158,8.961C380.877,284.921,386.971,282.429,393.447,283.052 z M123.22,318.647c16.303,4.357,33.108,5.603,49.787,6.724c14.936,0.995,29.875,1.246,44.937,1.12 c38.833-0.619,77.916-3.236,116.003-11.699c3.608-0.87,7.593-1.493,10.833-3.733c6.347-4.11,13.313-7.347,20.162-10.583 c-30.995,4.979-62.113,9.215-93.478,11.205c-31.74,1.991-63.731,3.236-95.593,1.121c-9.086-0.87-18.423-1.371-26.886-4.858 c-1.994-0.87-4.733-2.609-3.738-5.227c1.869-3.361,5.603-4.977,8.839-6.72c13.694-6.473,28.629-10.081,43.193-14.313 c-25.021-0.376-49.916,5.971-72.814,15.806c-5.105,2.491-10.83,4.481-14.936,8.714c-1.622,1.739-1.622,4.732,0.247,6.222 C113.511,315.787,118.487,317.28,123.22,318.647z M324.864,352.88c-21.784,3.859-43.694,7.472-65.726,8.589 c-24.147,1.618-48.294,0.247-72.191-2.241c-4.604-0.623-9.211-1.368-13.317-3.483c-2.116-1.246-4.231-3.236-4.106-5.854 c0.247-4.106,3.73-6.967,6.222-9.956c-7.715,2.739-15.434,5.599-21.906,10.708c-2.742,2.116-5.478,5.474-4.733,9.208 c1.125,4.356,5.356,6.97,9.09,8.96c9.208,4.733,19.54,6.846,29.625,8.714c25.511,4.11,51.527,4.235,77.167,2.488 c27.141-2.115,54.148-6.594,80.411-14.313C337.932,362.342,330.836,358.479,324.864,352.88z M188.068,395.951 c-6.97,1.99-14.066,4.357-19.79,8.957c-2.868,2.241-5.105,6.104-3.734,9.713c1.743,4.604,6.1,7.347,10.203,9.705 c10.708,5.854,22.78,8.589,34.604,10.708c26.765,4.229,54.27,3.608,80.908-1.12c15.806-2.989,31.615-7.221,46.301-13.815 c-9.584-3.984-18.917-8.467-27.878-13.693c-15.559,2.738-31.246,5.603-47.178,6.598c-21.032,1.618-42.319-0.125-63.355-2.738 c-4.98-1.121-11.202-1.618-14.563-5.976C181.847,400.677,185.828,398.063,188.068,395.951z M358.345,475.982 c17.424-3.604,34.977-7.719,50.908-15.806c4.976-2.867,11.076-5.979,12.698-11.95c0.87-5.725-5.105-8.714-9.337-11.08 c2.613,2.993,4.356,7.347,1.74,10.83c-4.357,5.853-11.821,8.091-18.42,10.332c-20.66,5.85-42.072,8.216-63.355,10.582 c-56.385,5.102-113.146,6.348-169.528,1.618c-18.92-1.994-38.217-4.109-56.264-10.829c-2.86-1.246-7.217-2.492-7.217-6.352 c1.117-3.354,4.357-5.227,7.217-6.845c12.945-6.595,27.384-10.207,41.822-11.077c-4.228-2.491-9.208-2.738-14.062-2.613 c-12.076,0.373-23.9,3.483-35.349,7.347c-9.834,3.604-19.916,7.59-27.76,14.811c-3.111,2.735-5.971,7.962-2.739,11.699 c4.98,5.353,12.699,6.72,19.54,8.338c38.338,6.599,77.171,10.328,116.011,11.699C255.781,488.184,307.684,485.942,358.345,475.982z M409.378,482.706c-23.402,7.468-47.672,11.574-71.822,14.936c-41.696,5.227-83.769,6.845-125.716,5.603 c-25.515-0.995-51.03-2.738-76.176-6.974c5.85,3.984,13.071,5.227,19.794,7.096c28.257,5.976,57.255,7.096,86.01,7.966 c42.19,0.748,84.387-0.87,125.962-7.468c19.669-3.48,39.459-7.715,57.13-16.927c9.215-4.854,18.552-12.326,20.163-23.152 C435.391,473.741,421.951,478.349,409.378,482.706z"> </path> </g> </g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="-78.5 0 413 413" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid" fill="currentColor" stroke="currentColor" stroke-width="0.00413"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" stroke="#CCCCCC" stroke-width="5.782000000000001"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M87.9320692,36.714181 C83.382936,32.1427482 77.0364491,29.3196096 69.9808327,29.3196096 C62.9519759,29.3196096 56.6545483,32.1427482 52.1589343,36.714181 L52.0295962,36.714181 C47.4938428,41.2633143 44.6707042,47.614261 44.6707042,54.6431179 C44.6707042,61.6987343 47.4938428,67.9961618 52.0295962,72.5185355 L52.1589343,72.6211139 C56.6545483,77.1702472 62.9519759,79.9666261 69.9808327,79.9666261 C77.0364491,79.9666261 83.382936,77.1702472 87.9320692,72.6211139 L87.9989682,72.5185355 C92.5570213,67.9961618 95.3534002,61.6987343 95.3534002,54.6431179 C95.3534002,47.614261 92.5570213,41.2633143 87.9989682,36.714181 L87.9320692,36.714181 Z M69.9808327,383.353672 C77.0364491,383.353672 83.382936,380.481475 87.9320692,375.985861 L87.9989682,375.852063 C92.5570213,371.365368 95.3534002,365.014422 95.3534002,358.034624 C95.3534002,350.979008 92.5570213,344.654821 87.9989682,340.083388 L87.9320692,340.083388 C83.382936,335.458436 77.0364491,332.662057 69.9808327,332.662057 C62.9519759,332.662057 56.6545483,335.458436 52.1589343,340.083388 L52.0295962,340.083388 C47.4938428,344.654821 44.6707042,350.979008 44.6707042,358.034624 C44.6707042,365.014422 47.4938428,371.365368 52.0295962,375.852063 L52.1589343,375.985861 C56.6545483,380.481475 62.9519759,383.353672 69.9808327,383.353672 Z M207.953367,306.633879 C214.228495,304.988163 219.910452,300.960842 223.375821,294.873031 L223.844114,293.985504 C226.925929,288.209889 227.487881,281.546747 225.842165,275.641794 C224.183069,269.317607 220.106689,263.724849 214.032258,260.2238 L213.679923,259.987423 C207.76159,256.745051 201.018169,256.040381 194.82332,257.712857 C188.525893,259.282754 182.870696,263.488472 179.423166,269.527223 C175.931037,275.507996 175.199608,282.407514 176.872084,288.758461 C178.598078,295.002369 182.634319,300.648647 188.66861,304.176455 L188.70875,304.176455 C194.756421,307.650744 201.60688,308.279595 207.953367,306.633879 Z M95.9688712,180.386512 C89.3146489,173.750129 80.1450235,169.59347 69.9808327,169.59347 C59.8567813,169.59347 50.7094556,173.750129 44.0686131,180.386512 C37.4589901,187.000595 33.38261,196.147921 33.38261,206.285352 C33.38261,216.449543 37.4589901,225.623628 44.0686131,232.31353 C50.7094556,238.896393 59.8567813,243.026292 69.9808327,243.026292 C80.1450235,243.026292 89.3146489,238.896393 95.9688712,232.31353 C102.591874,225.623628 106.668254,216.449543 106.668254,206.285352 C106.668254,196.147921 102.591874,187.000595 95.9688712,180.386512 Z M81.3581257,137.223266 C96.0848295,139.64947 109.335295,146.705086 119.445967,156.896037 L119.526245,156.896037 C121.131822,158.514993 122.701719,160.267747 124.151198,162.042801 L149.434566,147.414216 C146.036096,137.142987 145.879999,126.403464 148.609478,116.341852 C152.217565,102.85501 160.959037,90.7819674 174.062325,83.2045386 L174.494938,82.9458624 C187.455508,75.6003502 202.191132,74.0839725 215.495117,77.6920595 C228.964119,81.2956866 241.11744,90.0772977 248.681489,103.171665 L248.681489,103.198425 C256.209859,116.212514 257.739616,131.157755 254.144909,144.591077 C250.563582,158.069 241.781971,170.222321 228.692063,177.746231 L225.240074,179.788881 L224.887739,179.788881 C212.779016,185.560036 199.461652,186.452023 187.232511,183.23641 C177.188739,180.569369 167.974514,174.976611 160.7628,167.006708 L135.519571,181.590694 C138.418528,189.270702 140.028564,197.55726 140.028564,206.285352 C140.028564,214.986684 138.418528,223.375821 135.519571,231.109347 L160.7628,245.639814 C167.974514,237.567333 177.188739,232.077153 187.232511,229.410112 C200.701514,225.726206 215.637835,227.296103 228.692063,234.900292 L229.526071,235.292766 L229.526071,235.346285 C242.138765,242.972773 250.603721,254.78714 254.144909,268.113424 C257.739616,281.466468 256.209859,296.416169 248.681489,309.457017 L248.226576,310.371304 L248.173057,310.291025 C240.609008,322.86358 228.692063,331.382055 215.535256,334.985683 C202.035034,338.54025 187.103173,337.023873 174.062325,329.526723 L174.062325,329.419684 C160.959037,321.842255 152.217565,309.742453 148.609478,296.286831 C145.879999,286.251978 146.036096,275.507996 149.434566,265.241226 L124.151198,250.65724 C122.701719,252.436754 121.131822,254.10923 119.526245,255.728186 L119.445967,255.804005 C109.335295,265.945896 96.0848295,273.001512 81.3581257,275.351898 L81.3581257,304.568929 C91.8523516,306.763217 101.258354,312.01702 108.630625,319.384832 L108.666305,319.46511 C118.54506,329.290346 124.65963,342.982345 124.65963,358.034624 C124.65963,373.037844 118.54506,386.645104 108.666305,396.523859 L108.630625,396.679957 C98.6849713,406.558712 85.0331117,412.673282 69.9808327,412.673282 C55.0088325,412.673282 41.3391332,406.558712 31.4202388,396.679957 L31.3845593,396.679957 L31.3845593,396.523859 C21.4924245,386.645104 15.3644745,373.037844 15.3644745,358.034624 C15.3644745,342.982345 21.4924245,329.290346 31.3845593,319.46511 L31.3845593,319.384832 L31.4202388,319.384832 C38.7791307,312.01702 48.1985125,306.763217 58.6659788,304.568929 L58.6659788,275.351898 C43.9258952,273.001512 30.7155691,265.945896 20.6182773,255.804005 L20.5112389,255.728186 C7.88962418,243.053052 0,225.623628 0,206.285352 C0,187.000595 7.88962418,169.571171 20.5112389,156.896037 L20.6182773,156.896037 C30.7155691,146.705086 43.9258952,139.64947 58.6659788,137.223266 L58.6659788,108.135573 C48.1985125,105.861006 38.7791307,100.611663 31.4202388,93.2929105 L31.3845593,93.2929105 L31.3845593,93.2126317 C21.4924245,83.2848174 15.3644745,69.6953969 15.3644745,54.6431179 C15.3644745,39.6666577 21.4924245,25.9478991 31.3845593,16.0691441 L31.4202388,16.0200848 C41.3391332,6.11457024 55.0088325,0 69.9808327,0 C85.0331117,0 98.6849713,6.11457024 108.630625,16.0200848 L108.630625,16.0691441 L108.666305,16.0691441 C118.54506,25.9478991 124.65963,39.6666577 124.65963,54.6431179 C124.65963,69.6953969 118.54506,83.2848174 108.666305,93.2126317 L108.630625,93.2929105 C101.258354,100.611663 91.8523516,105.861006 81.3581257,108.135573 L81.3581257,137.223266 Z M223.375821,117.83147 L223.166204,117.519275 C219.674075,111.636621 214.108077,107.716339 207.953367,106.017104 C201.60688,104.344628 194.756421,105.053758 188.66861,108.528047 L188.70875,108.528047 C182.634319,111.975576 178.571319,117.621853 176.872084,123.946041 C175.199608,130.216708 175.931037,137.142987 179.423166,143.177278 L179.539124,143.337836 C183.040173,149.291848 188.606171,153.28795 194.82332,154.906906 C201.071688,156.65966 208.033646,155.928231 214.032258,152.427182 L214.357833,152.271085 C220.262787,148.743276 224.196449,143.177278 225.842165,137.062708 C227.51464,130.76528 226.85011,123.865762 223.375821,117.83147 Z" fill="currentColor"> </path> </g> </g></svg>
@@ -0,0 +1,20 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <svg viewBox="0 0 106 105" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <defs>
5
+ <linearGradient x1="-0.0211832061%" y1="50.0351145%" x2="99.9958015%" y2="50.0351145%" id="linearGradient-1">
6
+ <stop stop-color="currentColor" offset="0%"></stop>
7
+ <stop stop-color="currentColor" offset="100%"></stop>
8
+ </linearGradient>
9
+ <linearGradient x1="-0.0483596598%" y1="50.0496962%" x2="99.8944107%" y2="50.0496962%" id="linearGradient-2">
10
+ <stop stop-color="currentColor" offset="0%"></stop>
11
+ <stop stop-color="currentColor" offset="100%"></stop>
12
+ </linearGradient>
13
+ </defs>
14
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
15
+ <g id="mercure-hub" fill-rule="nonzero">
16
+ <path d="M53,104.9 C24.1,104.9 0.6,81.4 0.6,52.5 C0.6,23.6 24.1,0.1 53,0.1 C81.9,0.1 105.4,23.6 105.4,52.5 C105.4,81.4 81.9,104.9 53,104.9 Z M53,4.6 C26.6,4.6 5,26.1 5,52.6 C5,79.1 26.5,100.6 53,100.6 C79.5,100.6 101,79.1 101,52.6 C101,26.1 79.5,4.6 53,4.6 Z" id="Shape" fill="url(#linearGradient-1)"></path>
17
+ <path d="M53,10.8 C30.3,10.8 11.9,29.2 11.9,51.9 C11.9,59 13.7,65.7 16.8,71.5 C17.9,70.7 19.1,69.9 20.4,69.1 C42.9,55.7 62.9,44.6 76.1,24 C76.1,24 75.2,47.3 61.8,58.1 C58.8,60.5 56.3,62.4 53.9,63.9 C60.7,60.3 66.6,56.3 71.2,50.8 C71.2,50.8 70.8,66.4 59.3,73.4 C55,75.9 51.4,77.4 47.8,78.5 C54.4,77 58.6,75.2 62.1,72.9 C59.2,82.6 52.9,87.7 43,89.1 C39.4,89.5 36.4,88.7 33.2,88 C39.1,91.3 45.9,93.1 53.1,93.1 C75.8,93.1 94.2,74.7 94.2,52 C94.2,29.3 75.8,10.8 53,10.8 Z" id="Path" fill="url(#linearGradient-2)"></path>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,17 @@
1
+
2
+ <?xml version="1.0" encoding="utf-8"?>
3
+ <svg version="1.2" baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px" viewBox="0 0 320 320" overflow="visible" xml:space="preserve">
5
+ <!-- <g id="black_bg" display="none"> -->
6
+ <!-- </g> -->
7
+ <g id="logos">
8
+ <g>
9
+ <path fill="currentColor" d="M7.1,180.6v117.1c0,8.4,6.8,15.3,15.3,15.3H142C141,239.8,80.9,180.7,7.1,180.6z"/>
10
+ <path fill="currentColor" d="M7.1,84.1v49.8c99,0.9,179.4,80.7,180.4,179.1h51.7C238.2,186.6,134.5,84.2,7.1,84.1z"/>
11
+ <path fill="currentColor" d="M312.9,297.6V193.5C278.1,107.2,207.3,38.9,119,7.1H22.4c-8.4,0-15.3,6.8-15.3,15.3v15
12
+ c152.6,0.9,276.6,124,277.6,275.6h13C306.1,312.9,312.9,306.1,312.9,297.6z"/>
13
+ <path fill="currentColor" d="M272.6,49.8c14.5,14.4,28.6,31.7,40.4,47.8V22.4c0-8.4-6.8-15.3-15.3-15.3h-77.3
14
+ C238.4,19.7,256.6,33.9,272.6,49.8z"/>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="100%" height="100%" viewBox="0 0 64 54" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.156 50H27.53l15.125 14V50h20.187V0H1.156zm9.937-38.312h11.563l22.25 20.75v-20.75h7.375V38.5H41.094L18.47 17.375V38.5h-7.375z" fill="currentColor"/>
3
+ <path d="M18.47 17.375L41.094 38.5H52.28V11.687h-7.374v20.75l-22.25-20.75H11.094V38.5h7.375z" fill="currentColor"/>
4
+ <path d="M1.156 0h61.687v50H1.156z" fill="currentColor"/>
5
+ <path d="M32 0h30.844v25H32z" fill="currentColor"/>
6
+ <path d="M32 25h30.844v25H32z" fill="currentColor"/>
7
+ <path d="M1.156 0H32v25H1.156z" fill="currentColor"/>
8
+ <g fill="currentColor">
9
+ <path d="M1.156 25H32v25H1.156z"/>
10
+ <path d="M32 50l.154 4.303L27.53 50z"/>
11
+ </g>
12
+ <path d="M16.367 15.83l26.758 24.984h13.23V9.102h-8.722v24.54L21.32 9.102H7.644v31.71h8.722z" fill="#fff"/>
13
+ </svg>
@@ -0,0 +1,4 @@
1
+
2
+ <svg viewBox="0 -8 35 40" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M34.7333 8.16353H26.2455C23.9513 3.68838 21.5234 0.21138 18.2199 0.21138C13.9192 0.21138 11.9007 4.0266 9.94695 7.74283L9.77671 8.06867H0V10.2753H5.69498C7.70544 10.2753 8.11483 10.9641 8.11483 10.9641C6.53807 13.4553 4.6411 15.9177 1.47948 15.9177H0V18.2316H1.49164C7.62032 18.2316 10.2955 13.1749 12.4438 9.11631C14.4138 5.37533 15.7879 3.11095 18.2239 3.11095C20.7532 3.11095 23.4122 8.70797 25.751 13.6492C26.0915 14.3669 26.4401 15.101 26.7927 15.8311C17.8186 16.1198 13.5423 18.2563 10.0645 20.001C7.51899 21.2755 5.50852 22.8552 2.20098 22.8552H0V25.1732H2.18071C6.16517 25.1732 8.64988 23.9235 11.2927 22.5954C14.9529 20.7641 19.1035 18.6894 28.8883 18.6894H34.5428V16.3714H31.3487C31.0852 16.392 30.8218 16.3508 30.5786 16.2477C30.3354 16.1487 30.1165 15.9919 29.9422 15.7898C29.3828 14.6886 28.8356 13.5296 28.3006 12.3706L27.5588 10.828C27.5588 10.828 28.0898 10.2506 29.5571 10.2506H34.7333V8.16353Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="currentColor" viewBox="0 -2 28 28" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="m27.994 14.729c-.012.267-.365.566-1.091.945-1.495.778-9.236 3.967-10.883 4.821-.589.419-1.324.67-2.116.67-.641 0-1.243-.164-1.768-.452l.019.01c-1.304-.622-9.539-3.95-11.023-4.659-.741-.35-1.119-.653-1.132-.933v2.83c0 .282.39.583 1.132.933 1.484.709 9.722 4.037 11.023 4.659.504.277 1.105.44 1.744.44.795 0 1.531-.252 2.132-.681l-.011.008c1.647-.859 9.388-4.041 10.883-4.821.76-.396 1.096-.7 1.096-.982s0-2.791 0-2.791z"></path><path d="m27.992 10.115c-.013.267-.365.565-1.09.944-1.495.778-9.236 3.967-10.883 4.821-.59.421-1.326.672-2.121.672-.639 0-1.24-.163-1.763-.449l.019.01c-1.304-.627-9.539-3.955-11.023-4.664-.741-.35-1.119-.653-1.132-.933v2.83c0 .282.39.583 1.132.933 1.484.709 9.721 4.037 11.023 4.659.506.278 1.108.442 1.749.442.793 0 1.527-.251 2.128-.677l-.011.008c1.647-.859 9.388-4.043 10.883-4.821.76-.397 1.096-.7 1.096-.984s0-2.791 0-2.791z"></path><path d="m27.992 5.329c.014-.285-.358-.534-1.107-.81-1.451-.533-9.152-3.596-10.624-4.136-.528-.242-1.144-.383-1.794-.383-.734 0-1.426.18-2.035.498l.024-.012c-1.731.622-9.924 3.835-11.381 4.405-.729.287-1.086.552-1.073.834v2.83c0 .282.39.583 1.132.933 1.484.709 9.721 4.038 11.023 4.66.504.277 1.105.439 1.744.439.795 0 1.531-.252 2.133-.68l-.011.008c1.647-.859 9.388-4.043 10.883-4.821.76-.397 1.096-.7 1.096-.984s0-2.791 0-2.791h-.009zm-17.967 2.684 6.488-.996-1.96 2.874zm14.351-2.588-4.253 1.68-3.835-1.523 4.246-1.679 3.838 1.517zm-11.265-2.785-.628-1.157 1.958.765 1.846-.604-.499 1.196 1.881.7-2.426.252-.543 1.311-.879-1.457-2.8-.252 2.091-.754zm-4.827 1.632c1.916 0 3.467.602 3.467 1.344s-1.559 1.344-3.467 1.344-3.474-.603-3.474-1.344 1.553-1.344 3.474-1.344z"></path></g></svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="15 7 55 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="Icon-Architecture/64/Arch_AWS-Simple-Notification-Service_64" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <path d="M17,38 C18.103,38 19,38.897 19,40 C19,41.103 18.103,42 17,42 C15.897,42 15,41.103 15,40 C15,38.897 15.897,38 17,38 L17,38 Z M41,64 C29.314,64 19.289,55.466 17.194,43.98 C18.965,43.894 20.427,42.659 20.857,41 L27,41 L27,39 L20.857,39 C20.427,37.342 18.966,36.107 17.195,36.02 C19.285,24.71 29.511,16 41,16 C45.313,16 49.832,17.622 54.429,20.821 L55.571,19.179 C50.633,15.743 45.73,14 41,14 C28.27,14 16.949,23.865 15.063,36.521 C13.839,37.207 13,38.5 13,40 C13,41.5 13.839,42.793 15.063,43.478 C16.97,56.341 28.056,66 41,66 C46.407,66 51.942,64.157 56.585,60.811 L55.415,59.189 C51.11,62.292 45.991,64 41,64 L41,64 Z M30.101,36.442 C31.955,36.895 34.275,37 36,37 C37.642,37 39.823,36.905 41.629,36.506 L37.105,45.553 C37.036,45.691 37,45.845 37,46 L37,50.453 C36.199,50.964 34.833,51.812 34,51.986 L34,46 C34,45.868 33.974,45.737 33.923,45.615 L30.101,36.442 Z M36,33 C40.025,33 42.174,33.604 42.841,34 C42.174,34.396 40.025,35 36,35 C31.975,35 29.826,34.396 29.159,34 C29.826,33.604 31.975,33 36,33 L36,33 Z M33,54 L34,54 C34.043,54 34.086,53.997 34.128,53.992 C35.352,53.833 36.909,52.887 38.272,52.013 L38.535,51.845 C38.824,51.661 39,51.342 39,51 L39,46.236 L44.559,35.12 C44.833,34.801 45,34.434 45,34 C45,31.39 39.361,31 36,31 C32.639,31 27,31.39 27,34 C27,34.366 27.12,34.684 27.32,34.967 L32,46.2 L32,53 C32,53.552 32.447,54 33,54 L33,54 Z M62,53 C63.103,53 64,53.897 64,55 C64,56.103 63.103,57 62,57 C60.897,57 60,56.103 60,55 C60,53.897 60.897,53 62,53 L62,53 Z M62,23 C63.103,23 64,23.897 64,25 C64,26.103 63.103,27 62,27 C60.897,27 60,26.103 60,25 C60,23.897 60.897,23 62,23 L62,23 Z M64,38 C65.103,38 66,38.897 66,40 C66,41.103 65.103,42 64,42 C62.897,42 62,41.103 62,40 C62,38.897 62.897,38 64,38 L64,38 Z M54,41 L60.143,41 C60.589,42.72 62.142,44 64,44 C66.206,44 68,42.206 68,40 C68,37.794 66.206,36 64,36 C62.142,36 60.589,37.28 60.143,39 L54,39 L54,26 L58.143,26 C58.589,27.72 60.142,29 62,29 C64.206,29 66,27.206 66,25 C66,22.794 64.206,21 62,21 C60.142,21 58.589,22.28 58.143,24 L53,24 C52.447,24 52,24.448 52,25 L52,39 L45,39 L45,41 L52,41 L52,55 C52,55.552 52.447,56 53,56 L58.143,56 C58.589,57.72 60.142,59 62,59 C64.206,59 66,57.206 66,55 C66,52.794 64.206,51 62,51 C60.142,51 58.589,52.28 58.143,54 L54,54 L54,41 Z" id="AWS-Simple-Notification-Service_Icon_64_Squid" fill="currentColor"></path>
5
+ </g>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="currentColor" stroke-width="0"/><path d="m41.21,5.84h0,0m-.13,0l1.45,7.61.16.85.82.28.27.09c.5.17.96.33,1.42.54.46.21.89.45,1.34.71l.25.14.76.43.75-.44,6.66-3.95,5.36,6.11-4.32,5.91-.53.73.39.81c.57,1.18,1.04,2.42,1.39,3.68l.24.87.88.19,7.13,1.56.02,8.13-7.59,1.46-.84.16-.29.81-.04.11c-.19.55-.38,1.06-.6,1.56-.23.52-.51,1.01-.8,1.54l-.04.07-.42.75.44.74,3.93,6.66-6.11,5.36-5.89-4.31-.73-.53-.81.39c-1.18.57-2.42,1.04-3.68,1.39l-.87.24-.19.88-1.57,7.15-8.13.02-1.47-7.62-.16-.84-.81-.29-.13-.05c-.54-.19-1.05-.37-1.54-.6-.49-.22-.97-.48-1.47-.76l-.12-.07-.75-.41-.74.43-6.69,3.94-5.36-6.11,4.32-5.91.53-.73-.39-.81c-.57-1.18-1.04-2.42-1.39-3.68l-.24-.87-.88-.19-7.13-1.56-.02-8.13,7.59-1.46.84-.16.29-.81.03-.08c.2-.57.39-1.1.63-1.62.23-.5.49-.98.77-1.49l.06-.1.42-.75-.44-.74-3.93-6.66,6.11-5.36,5.89,4.31.73.53.81-.39c1.18-.57,2.42-1.04,3.68-1.39l.87-.24.19-.88,1.57-7.15,8.13-.02m.13-1.5s-.02,0-.03,0l-8.32.02h-.01c-.64,0-1.2.44-1.34,1.07l-1.6,7.26c-1.35.38-2.67.88-3.93,1.49l-5.98-4.38c-.24-.17-.52-.26-.8-.26-.33,0-.66.12-.92.35l-6.25,5.49c-.49.43-.6,1.15-.28,1.72l3.99,6.76c-.31.56-.62,1.11-.89,1.7-.27.6-.48,1.2-.7,1.81l-7.71,1.48c-.64.13-1.1.69-1.1,1.34l.02,8.32c0,.65.44,1.21,1.07,1.35l7.24,1.59c.38,1.35.88,2.67,1.49,3.93l-4.38,6c-.37.53-.33,1.24.1,1.72l5.49,6.25c.27.3.65.46,1.03.46.23,0,.47-.06.69-.18l6.79-4c.56.31,1.11.62,1.7.89.59.27,1.19.47,1.79.69l1.49,7.73c.13.64.69,1.1,1.34,1.1l8.32-.02h.01c.64,0,1.2-.44,1.34-1.07l1.6-7.26c1.35-.38,2.67-.88,3.93-1.49l5.98,4.38c.24.17.52.26.8.26.33,0,.66-.12.92-.35l6.25-5.49c.49-.43.6-1.15.28-1.72l-3.99-6.76c.31-.57.62-1.12.89-1.72.27-.59.48-1.19.69-1.79l7.71-1.48c.64-.13,1.1-.69,1.1-1.34l-.02-8.32c0-.65-.44-1.21-1.07-1.35l-7.24-1.59c-.38-1.35-.88-2.67-1.49-3.93l4.38-6c.37-.53.33-1.24-.1-1.72l-5.49-6.25c-.27-.3-.65-.46-1.03-.46-.23,0-.47.06-.69.18l-6.77,4.01c-.56-.32-1.1-.64-1.71-.91-.61-.28-1.21-.47-1.82-.68l-1.47-7.73c-.09-.46-.41-.84-.84-1.02-.15-.06-.32-.09-.48-.09h0Z" fill="#fff" stroke-width="0"/></g></svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg viewBox="15 7 55 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="Icon-Architecture/64/Arch_AWS-Simple-Queue-Service_64" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+
5
+ <path d="M28.7169966,43.6876756 L31.7189265,40.721826 C31.9070474,40.5359011 32.0131156,40.2833614 32.0141233,40.019885 C32.0151169,39.7564086 31.9100493,39.5028747 31.722929,39.3159556 L28.7209992,36.3163014 L27.3020871,37.7181948 L28.5899149,39.0057494 L24.0089701,39.0057494 L24.0089701,40.9942506 L28.6059252,40.9942506 L27.3060896,42.2778282 L28.7169966,43.6876756 Z M51.627725,43.7781524 L55.630298,40.793412 C55.8804589,40.6054986 56.0295547,40.3112004 56.0295547,39.9990057 C56.0295547,39.6858168 55.8804589,39.3905244 55.6292974,39.202611 L51.6267243,36.2218476 L50.4259524,37.8126486 L52.0269816,39.0057494 L48.0244085,39.0057494 L48.0244085,40.9942506 L52.025981,40.9942506 L50.4249518,42.1873514 L51.627725,43.7781524 Z M35.2081695,40 C35.2081695,42.1107941 34.8429347,44.1012839 34.160496,45.8332685 C35.9606533,45.14127 37.9909585,44.7952708 40.0192624,44.7952708 C42.0475663,44.7952708 44.0778715,45.14127 45.8770281,45.8332685 C45.19559,44.1012839 44.8303552,42.1107941 44.8303552,40 C44.8303552,37.8892059 45.19559,35.8997104 45.8770281,34.1667315 C42.2777142,35.5497341 37.7608105,35.5497341 34.160496,34.1667315 C34.8429347,35.8997104 35.2081695,37.8892059 35.2081695,40 L35.2081695,40 Z M30.3060182,49.6511909 C30.1108927,49.4573121 30.0128297,49.2027839 30.0128297,48.9482557 C30.0128297,48.6937276 30.1108927,48.4391994 30.3060182,48.2453205 C32.1221857,46.4407556 33.206883,43.3575844 33.206883,40 C33.206883,36.6424156 32.1221857,33.5592444 30.3060182,31.7546795 C30.1108927,31.5608006 30.0128297,31.3062724 30.0128297,31.0517443 C30.0128297,30.7972161 30.1108927,30.5426879 30.3060182,30.3488091 C30.6972697,29.9600571 31.3296762,29.9600571 31.7209277,30.3488091 C35.5984204,34.2015303 44.4401044,34.2015303 48.317597,30.3488091 C48.7088485,29.9600571 49.3412551,29.9600571 49.7325066,30.3488091 C49.927632,30.5426879 50.0256951,30.7972161 50.0256951,31.0517443 C50.0256951,31.3062724 49.927632,31.5608006 49.7325066,31.7546795 C47.9163391,33.5592444 46.8316418,36.6424156 46.8316418,40 C46.8316418,43.3575844 47.9163391,46.4407556 49.7325066,48.2453205 C49.927632,48.4391994 50.0256951,48.6937276 50.0256951,48.9482557 C50.0256951,49.2027839 49.927632,49.4573121 49.7325066,49.6511909 C49.5373812,49.8450698 49.2812165,49.9425064 49.0250518,49.9425064 C48.7688871,49.9425064 48.5127225,49.8450698 48.317597,49.6511909 C44.4401044,45.7984697 35.5984204,45.7984697 31.7209277,49.6511909 C31.3296762,50.0399429 30.6972697,50.0399429 30.3060182,49.6511909 L30.3060182,49.6511909 Z M66.0009649,40.0049713 C66.0009649,39.0783297 65.6377314,38.2073661 64.9783075,37.5521549 C64.2978701,36.8750702 63.403295,36.5380193 62.5097205,36.5380193 C61.6161461,36.5380193 60.721571,36.8750702 60.0411336,37.5521549 C58.6792581,38.9043358 58.6792581,41.1046125 60.0411336,42.4577876 C61.4020084,43.8099684 63.6154313,43.8109627 64.9783075,42.4577876 C65.6377314,41.8025764 66.0009649,40.9316128 66.0009649,40.0049713 L66.0009649,40.0049713 Z M66.3932171,43.863658 C65.3225288,44.9275062 63.916625,45.4594303 62.5097205,45.4594303 C61.1028161,45.4594303 59.6969123,44.9275062 58.626224,43.863658 C56.4838468,41.7359616 56.4838468,38.2739809 58.626224,36.1462845 C60.7686012,34.0165997 64.2528411,34.0185882 66.3932171,36.1462845 C68.5355943,38.2739809 68.5355943,41.7359616 66.3932171,43.863658 L66.3932171,43.863658 Z M20.9800229,40.027839 C20.9800229,39.1011974 20.6167894,38.2302339 19.9573654,37.5750227 C19.2979415,36.9198115 18.421378,36.5588985 17.4887785,36.5588985 C16.5571796,36.5588985 15.6806161,36.9198115 15.0201916,37.5750227 C14.3607676,38.2302339 13.9985348,39.1011974 13.9985348,40.027839 C13.9985348,40.9534864 14.3607676,41.8244499 15.0201916,42.4806553 C16.34004,43.7900834 18.6385176,43.7900834 19.9573654,42.4806553 C20.6167894,41.8244499 20.9800229,40.9534864 20.9800229,40.027839 L20.9800229,40.027839 Z M21.372275,43.8865257 C20.3015867,44.9503739 18.8956829,45.482298 17.4887785,45.482298 C16.0828747,45.482298 14.6769709,44.9503739 13.605282,43.8865257 C11.464906,41.7588294 11.464906,38.2968487 13.605282,36.1691523 C15.7476592,34.0414559 19.2308984,34.0414559 21.372275,36.1691523 C23.5136516,38.2968487 23.5136516,41.7588294 21.372275,43.8865257 L21.372275,43.8865257 Z M54.8958259,54.856093 C50.901258,58.8261358 45.5888428,61.0114987 39.9392109,61.0114987 C34.2875777,61.0114987 28.9761632,58.8261358 24.9815953,54.856093 C22.241834,52.134829 20.7338646,48.8826352 19.9513616,46.6346345 L18.0601458,47.2848744 C18.9116932,49.730731 20.5577514,53.273246 23.5666857,56.2619634 C27.9394968,60.607833 33.7532342,63 39.9392109,63 C46.124187,63 51.9379244,60.607833 56.3107355,56.2619634 C58.8373597,53.7534691 60.8496533,50.563913 61.9793796,47.2818917 L60.0861625,46.6376173 C59.0534987,49.6382657 57.2103138,52.5573856 54.8958259,54.856093 L54.8958259,54.856093 Z M19.9503609,33.3663597 L18.0611465,32.7141313 C19.2719248,29.2501621 21.229183,26.0606061 23.5726896,23.7330653 C27.9434994,19.3911728 33.7552355,17 39.9392109,17 C46.1231863,17 51.9349225,19.3911728 56.3047316,23.7330653 C58.7713173,26.1838931 60.8396469,29.4569662 61.9773783,32.7141313 L60.0881638,33.3663597 C59.0444929,30.3836078 57.1502752,27.3849479 54.889822,25.1389357 C50.898256,21.1718757 45.5878422,18.9885013 39.9392109,18.9885013 C34.289579,18.9885013 28.9801658,21.1718757 24.9875992,25.1389357 C22.8542277,27.2596723 21.0650775,30.181775 19.9503609,33.3663597 L19.9503609,33.3663597 Z" id="AWS-Simple-Queue-Service_Icon_64_Squid" fill="currentColor"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path d="m48.38,23.39l7.48,7.48v15.98h-6.69v-13.15l-5.55-5.55,4.76-4.76Zm-7.14,33.55h-11.45l-7.48-7.48,4.65-4.65-11.56-11.56v-6.57h6.69v3.74l4.87,4.87,7.14-7.14-4.87-4.87h-13.83l-6.69-6.69h23.23l11.56,11.67-2.38,2.38,4.53,4.53v9.41l-9.29-9.29-2.38,2.38,9.29,9.29h-9.41l-4.65-4.65-2.38,2.38,5.55,5.55h23.35l6.69,6.57-21.19.11h0Z" fill="#fff" stroke-width="0"/></g></svg>
@@ -3,10 +3,10 @@ import { Table } from '@components/Tables/Table';
3
3
  import { QueueListIcon, RectangleGroupIcon, BoltIcon, ChatBubbleLeftIcon } from '@heroicons/react/24/outline';
4
4
  import ServerIcon from '@heroicons/react/24/outline/ServerIcon';
5
5
  import { getCommands } from '@utils/commands';
6
- import { getDomains } from '@utils/domains/domains';
7
- import { getFlows } from '@utils/flows/flows';
6
+ import { getDomains } from '@utils/collections/domains';
7
+ import { getFlows } from '@utils/collections/flows';
8
8
  import { getEvents } from '@utils/events';
9
- import { getServices } from '@utils/services/services';
9
+ import { getServices } from '@utils/collections/services';
10
10
  import { buildUrl } from '@utils/url-builder';
11
11
  import { getQueries } from '@utils/queries';
12
12
  import { MagnifyingGlassIcon } from '@heroicons/react/20/solid';
@@ -10,15 +10,16 @@ import Header from '../components/Header.astro';
10
10
  import SEO from '../components/Seo.astro';
11
11
 
12
12
  import { getCommands } from '@utils/commands';
13
- import { getDomains } from '@utils/domains/domains';
13
+ import { getDomains } from '@utils/collections/domains';
14
14
  import { getEvents } from '@utils/events';
15
- import { getServices } from '@utils/services/services';
16
- import { getFlows } from '@utils/flows/flows';
15
+ import { getServices } from '@utils/collections/services';
16
+ import { getFlows } from '@utils/collections/flows';
17
17
  import { getTeams } from '@utils/teams';
18
18
  import { getUsers } from '@utils/users';
19
19
  import { isCollectionVisibleInCatalog } from '@eventcatalog';
20
20
  import { buildUrl } from '@utils/url-builder';
21
21
  import { getQueries } from '@utils/queries';
22
+ import { getChannels } from '@utils/channels';
22
23
  import CatalogResourcesSideBar from '@components/SideBars/CatalogResourcesSideBar';
23
24
  import { hasLandingPageForDocs } from '@utils/pages';
24
25
 
@@ -27,6 +28,7 @@ const commands = await getCommands({ getAllVersions: false });
27
28
  const queries = await getQueries({ getAllVersions: false });
28
29
  const services = await getServices({ getAllVersions: false });
29
30
  const domains = await getDomains({ getAllVersions: false });
31
+ const channels = await getChannels({ getAllVersions: false });
30
32
  const flows = await getFlows({ getAllVersions: false });
31
33
  const teams = await getTeams();
32
34
  const users = await getUsers();
@@ -34,7 +36,7 @@ const users = await getUsers();
34
36
  const messages = [...events, ...commands, ...queries];
35
37
 
36
38
  // @ts-ignore for large catalogs https://github.com/event-catalog/eventcatalog/issues/552
37
- const allData = [...domains, ...services, ...messages, ...flows, ...teams, ...users];
39
+ const allData = [...domains, ...services, ...messages, ...channels, ...flows, ...teams, ...users];
38
40
 
39
41
  const currentPath = Astro.url.pathname;
40
42
 
@@ -99,7 +101,10 @@ const sideNav = allData.reduce((acc, item) => {
99
101
  const currentPath = Astro.url.pathname;
100
102
  const route = currentPath.includes('visualiser') ? 'visualiser' : 'docs';
101
103
 
102
- if (currentPath.includes('visualiser') && (item.collection === 'teams' || item.collection === 'users')) {
104
+ if (
105
+ currentPath.includes('visualiser') &&
106
+ (item.collection === 'teams' || item.collection === 'users' || item.collection === 'channels')
107
+ ) {
103
108
  return acc;
104
109
  }
105
110
 
@@ -1,10 +1,10 @@
1
1
  ---
2
2
  import { getCommands } from '@utils/commands';
3
- import { getDomains } from '@utils/domains/domains';
3
+ import { getDomains } from '@utils/collections/domains';
4
4
  import { getEvents } from '@utils/events';
5
- import { getFlows } from '@utils/flows/flows';
5
+ import { getFlows } from '@utils/collections/flows';
6
6
  import { getQueries } from '@utils/queries';
7
- import { getServices } from '@utils/services/services';
7
+ import { getServices } from '@utils/collections/services';
8
8
  import VerticalSideBarLayout from './VerticalSideBarLayout.astro';
9
9
 
10
10
  const [services, events, commands, queries, domains, flows] = await Promise.all([
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  import DiscoverLayout from '@layouts/DiscoverLayout.astro';
3
3
  import type { PageTypes } from '@types';
4
- import { getFlows } from '@utils/flows/flows';
4
+ import { getFlows } from '@utils/collections/flows';
5
5
 
6
- import { pageDataLoader } from '@utils/pages/pages';
6
+ import { pageDataLoader } from '@utils/page-loaders/page-data-loader';
7
7
  type PageTypesWithFlows = PageTypes | 'flows';
8
8
 
9
9
  export async function getStaticPaths() {
@@ -12,7 +12,7 @@ export async function getStaticPaths() {
12
12
  flows: getFlows,
13
13
  };
14
14
 
15
- const itemTypes: PageTypesWithFlows[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows'];
15
+ const itemTypes: PageTypesWithFlows[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows', 'channels'];
16
16
  const allItems = await Promise.all(itemTypes.map((type) => loaders[type]()));
17
17
 
18
18
  return allItems.flatMap((items, index) => ({
@@ -10,10 +10,10 @@ import type { CollectionTypes, PageTypes } from '@types';
10
10
  import '@asyncapi/react-component/styles/default.min.css';
11
11
  import js from '@asyncapi/react-component/browser/standalone/without-parser.js?url';
12
12
  import { AsyncApiComponentWP, type ConfigInterface } from '@asyncapi/react-component';
13
- import { pageDataLoader } from '@utils/pages/pages';
13
+ import { pageDataLoader } from '@utils/page-loaders/page-data-loader';
14
14
  import type { CollectionEntry } from 'astro:content';
15
15
  import VerticalSideBarLayout from '@layouts/VerticalSideBarLayout.astro';
16
- import Config from '@eventcatalog';
16
+ import Config from '@utils/eventcatalog-config/catalog';
17
17
 
18
18
  export async function getStaticPaths() {
19
19
  const itemTypes: PageTypes[] = ['events', 'commands', 'queries', 'services', 'domains'];
@@ -2,9 +2,9 @@
2
2
  import Footer from '@layouts/Footer.astro';
3
3
 
4
4
  import type { PageTypes } from '@types';
5
- import { getChangeLogs } from '@utils/changelogs/changelogs';
5
+ import { getChangeLogs } from '@utils/collections/changelogs';
6
6
  import { RectangleGroupIcon, ServerIcon, BoltIcon, ChatBubbleLeftIcon, MagnifyingGlassIcon } from '@heroicons/react/24/outline';
7
- import { pageDataLoader } from '@utils/pages/pages';
7
+ import { pageDataLoader } from '@utils/page-loaders/page-data-loader';
8
8
  import 'diff2html/bundles/css/diff2html.min.css';
9
9
 
10
10
  import { buildUrl } from '@utils/url-builder';
@@ -10,14 +10,16 @@ import SchemaViewer from '@components/MDX/SchemaViewer/SchemaViewer.astro';
10
10
  import ServiceSideBar from '@components/SideBars/ServiceSideBar.astro';
11
11
  import MessageSideBar from '@components/SideBars/MessageSideBar.astro';
12
12
  import DomainSideBar from '@components/SideBars/DomainSideBar.astro';
13
+ import ChannelSideBar from '@components/SideBars/ChannelSideBar.astro';
13
14
 
14
15
  import { QueueListIcon, RectangleGroupIcon, ServerIcon, BoltIcon, ChatBubbleLeftIcon } from '@heroicons/react/24/outline';
15
16
  import type { PageTypes } from '@types';
16
17
 
17
18
  import { buildUrl } from '@utils/url-builder';
18
- import { getFlows } from '@utils/flows/flows';
19
- import { pageDataLoader } from '@utils/pages/pages';
19
+ import { getFlows } from '@utils/collections/flows';
20
+ import { pageDataLoader } from '@utils/page-loaders/page-data-loader';
20
21
  import { ViewTransitions } from 'astro:transitions';
22
+ import { ArrowsRightLeftIcon } from '@heroicons/react/20/solid';
21
23
 
22
24
  type PageTypesWithFlows = PageTypes | 'flows';
23
25
 
@@ -27,7 +29,7 @@ export async function getStaticPaths() {
27
29
  flows: getFlows,
28
30
  };
29
31
 
30
- const itemTypes: PageTypesWithFlows[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows'];
32
+ const itemTypes: PageTypesWithFlows[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows', 'channels'];
31
33
  const allItems = await Promise.all(itemTypes.map((type) => loaders[type]()));
32
34
 
33
35
  return allItems.flatMap((items, index) =>
@@ -77,6 +79,10 @@ const getBadge = () => {
77
79
  return { backgroundColor: 'teal', textColor: 'teal', content: 'Flow', icon: QueueListIcon, class: 'text-gray' };
78
80
  }
79
81
 
82
+ if (props.collection === 'channels') {
83
+ return { backgroundColor: 'teal', textColor: 'teal', content: 'Channel', icon: ArrowsRightLeftIcon, class: 'text-gray' };
84
+ }
85
+
80
86
  return { backgroundColor: 'teal', textColor: 'teal', content: '', icon: QueueListIcon, class: 'text-gray' };
81
87
  };
82
88
 
@@ -121,7 +127,7 @@ const badges = [getBadge(), ...contentBadges, ...getSpecificationBadges()];
121
127
  <div class="w-full lg:mr-2 pr-8 overflow-y-auto py-8">
122
128
  <div class="border-b border-gray-200 flex justify-between items-start md:pb-2">
123
129
  <div>
124
- <h2 class="text-2xl md:text-4xl font-bold text-black">
130
+ <h2 id="doc-page-header" class="text-2xl md:text-4xl font-bold text-black">
125
131
  {props.data.name}
126
132
  <span class="">(v{props.data.version})</span>
127
133
  </h2>
@@ -214,6 +220,7 @@ const badges = [getBadge(), ...contentBadges, ...getSpecificationBadges()];
214
220
  }
215
221
  {props?.collection === 'services' && <ServiceSideBar service={props} />}
216
222
  {props?.collection === 'domains' && <DomainSideBar domain={props} />}
223
+ {props?.collection === 'channels' && <ChannelSideBar channel={props} />}
217
224
  </aside>
218
225
  </div>
219
226
  <ViewTransitions />
@@ -7,9 +7,9 @@ import type { CollectionTypes, PageTypes } from '@types';
7
7
  import PlainPage from '@layouts/PlainPage.astro';
8
8
  import { DocumentMinusIcon } from '@heroicons/react/24/outline';
9
9
  import { buildUrl } from '@utils/url-builder';
10
- import { pageDataLoader } from '@utils/pages/pages';
10
+ import { pageDataLoader } from '@utils/page-loaders/page-data-loader';
11
11
  import VerticalSideBarLayout from '@layouts/VerticalSideBarLayout.astro';
12
- import './styles.css';
12
+ import './_styles.css';
13
13
 
14
14
  export async function getStaticPaths() {
15
15
  const itemTypes: PageTypes[] = ['events', 'commands', 'queries', 'services', 'domains'];
@@ -3,13 +3,20 @@ import Seo from '@components/Seo.astro';
3
3
  import { buildUrl } from '@utils/url-builder';
4
4
  import { getEvents } from '@utils/events';
5
5
  import { getCommands } from '@utils/commands';
6
- import { getServices } from '@utils/services/services';
7
- import { getDomains } from '@utils/domains/domains';
6
+ import { getServices } from '@utils/collections/services';
7
+ import { getDomains } from '@utils/collections/domains';
8
8
  import type { CollectionEntry } from 'astro:content';
9
9
  import type { CollectionTypes } from '@types';
10
+ import { getChannels } from '@utils/channels';
10
11
 
11
12
  export async function getStaticPaths() {
12
- const [events, commands, services, domains] = await Promise.all([getEvents(), getCommands(), getServices(), getDomains()]);
13
+ const [events, commands, services, domains, channels] = await Promise.all([
14
+ getEvents(),
15
+ getCommands(),
16
+ getServices(),
17
+ getDomains(),
18
+ getChannels(),
19
+ ]);
13
20
 
14
21
  const buildPages = (collection: CollectionEntry<CollectionTypes>[]) => {
15
22
  return collection.map((item) => ({
@@ -24,7 +31,13 @@ export async function getStaticPaths() {
24
31
  }));
25
32
  };
26
33
 
27
- return [...buildPages(domains), ...buildPages(events), ...buildPages(services), ...buildPages(commands)];
34
+ return [
35
+ ...buildPages(domains),
36
+ ...buildPages(events),
37
+ ...buildPages(services),
38
+ ...buildPages(commands),
39
+ ...buildPages(channels),
40
+ ];
28
41
  }
29
42
 
30
43
  const props = Astro.props;
@@ -10,9 +10,9 @@ import {
10
10
  } from '@heroicons/react/24/outline';
11
11
 
12
12
  import { getMessages } from '@utils/messages';
13
- import { getDomains } from '@utils/domains/domains';
14
- import { getServices } from '@utils/services/services';
15
- import { getFlows } from '@utils/flows/flows';
13
+ import { getDomains } from '@utils/collections/domains';
14
+ import { getServices } from '@utils/collections/services';
15
+ import { getFlows } from '@utils/collections/flows';
16
16
  import DiscoverInsight from '@components/DiscoverInsight.astro';
17
17
  import VerticalSideBarLayout from '@layouts/VerticalSideBarLayout.astro';
18
18
  import { BookOpen, BookOpenText, TableProperties, Workflow } from 'lucide-react';
@@ -2,10 +2,10 @@
2
2
  import NodeGraph from '@components/MDX/NodeGraph/NodeGraph.astro';
3
3
  import VisualiserLayout from '@layouts/VisualiserLayout.astro';
4
4
  import type { PageTypes } from '@types';
5
- import { getFlows } from '@utils/flows/flows';
5
+ import { getFlows } from '@utils/collections/flows';
6
6
  import { buildUrl } from '@utils/url-builder';
7
7
 
8
- import { pageDataLoader } from '@utils/pages/pages';
8
+ import { pageDataLoader } from '@utils/page-loaders/page-data-loader';
9
9
  import { ViewTransitions } from 'astro:transitions';
10
10
  type PageTypesWithFlows = PageTypes | 'flows';
11
11
 
@@ -3,8 +3,8 @@ import Seo from '@components/Seo.astro';
3
3
  import { buildUrl } from '@utils/url-builder';
4
4
  import { getEvents } from '@utils/events';
5
5
  import { getCommands } from '@utils/commands';
6
- import { getServices } from '@utils/services/services';
7
- import { getDomains } from '@utils/domains/domains';
6
+ import { getServices } from '@utils/collections/services';
7
+ import { getDomains } from '@utils/collections/domains';
8
8
  import type { CollectionEntry } from 'astro:content';
9
9
  import type { CollectionTypes } from '@types';
10
10
 
@@ -1,6 +1,5 @@
1
1
  import type { RemarkPlugin } from '@astrojs/markdown-remark';
2
2
  import { visit } from 'unist-util-visit';
3
- // import dedent from "ts-dedent"
4
3
 
5
4
  const escapeMap: Record<string, string> = {
6
5
  '&': '&amp;',
@@ -1,4 +1,4 @@
1
- export type CollectionTypes = 'commands' | 'events' | 'queries' | 'domains' | 'services' | 'flows';
1
+ export type CollectionTypes = 'commands' | 'events' | 'queries' | 'domains' | 'services' | 'flows' | 'channels';
2
2
  export type CollectionMessageTypes = 'commands' | 'events' | 'queries';
3
3
 
4
- export type PageTypes = 'events' | 'commands' | 'queries' | 'services' | 'domains';
4
+ export type PageTypes = 'events' | 'commands' | 'queries' | 'services' | 'domains' | 'channels';