@eventcatalog/core 2.0.6 → 2.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eventcatalog/core
2
2
 
3
+ ## 2.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - b82d79e: feat(core): Renders names for services side bars and also links to services from domains fixed
8
+
3
9
  ## 2.0.6
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
3
  "type": "module",
4
- "version": "2.0.6",
4
+ "version": "2.0.7",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -19,7 +19,7 @@ const serviceList = services.map((p) => ({
19
19
  label: p.data.id,
20
20
  badge: p.collection,
21
21
  tag: `v${p.data.version}`,
22
- href: `/docs/${p.collection}/${p.data.id}`,
22
+ href: `/docs/${p.collection}/${p.data.id}/${p.data.version}`,
23
23
  }));
24
24
 
25
25
  const ownersList = owners.map((o) => ({
@@ -19,14 +19,14 @@ const ownersRaw = service.data?.owners || [];
19
19
  const owners = await Promise.all(ownersRaw.map((o) => getEntry(o)));
20
20
 
21
21
  const sendsList = sends.map((p) => ({
22
- label: p.data.id,
22
+ label: p.data.name,
23
23
  badge: p.collection,
24
24
  color: p.collection === 'events' ? 'orange' : 'blue',
25
25
  tag: `v${p.data.version}`,
26
26
  href: `/docs/${p.collection}/${p.data.id}/${p.data.version}`,
27
27
  }));
28
28
  const receivesList = receives.map((p) => ({
29
- label: p.data.id,
29
+ label: p.data.name,
30
30
  badge: p.collection,
31
31
  color: p.collection === 'events' ? 'orange' : 'blue',
32
32
  tag: `v${p.data.version}`,