@eventcatalog/core 2.59.0 → 2.59.1

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.
@@ -37,7 +37,7 @@ var import_axios = __toESM(require("axios"), 1);
37
37
  var import_os = __toESM(require("os"), 1);
38
38
 
39
39
  // package.json
40
- var version = "2.59.0";
40
+ var version = "2.59.1";
41
41
 
42
42
  // src/constants.ts
43
43
  var VERSION = version;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  raiseEvent
3
- } from "../chunk-T3QXQPTB.js";
4
- import "../chunk-SCDNNFXH.js";
3
+ } from "../chunk-AREJNU2F.js";
4
+ import "../chunk-LAI5QQUI.js";
5
5
  export {
6
6
  raiseEvent
7
7
  };
@@ -106,7 +106,7 @@ var import_axios = __toESM(require("axios"), 1);
106
106
  var import_os = __toESM(require("os"), 1);
107
107
 
108
108
  // package.json
109
- var version = "2.59.0";
109
+ var version = "2.59.1";
110
110
 
111
111
  // src/constants.ts
112
112
  var VERSION = version;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  log_build_default
3
- } from "../chunk-F5WMB6Q5.js";
4
- import "../chunk-T3QXQPTB.js";
5
- import "../chunk-SCDNNFXH.js";
3
+ } from "../chunk-5GNBQGFW.js";
4
+ import "../chunk-AREJNU2F.js";
5
+ import "../chunk-LAI5QQUI.js";
6
6
  import "../chunk-UPONRQSN.js";
7
7
  export {
8
8
  log_build_default as default
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  raiseEvent
3
- } from "./chunk-T3QXQPTB.js";
3
+ } from "./chunk-AREJNU2F.js";
4
4
  import {
5
5
  getEventCatalogConfigFile,
6
6
  verifyRequiredFieldsAreInCatalogConfigFile
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  VERSION
3
- } from "./chunk-SCDNNFXH.js";
3
+ } from "./chunk-LAI5QQUI.js";
4
4
 
5
5
  // src/analytics/analytics.js
6
6
  import axios from "axios";
@@ -1,5 +1,5 @@
1
1
  // package.json
2
- var version = "2.59.0";
2
+ var version = "2.59.1";
3
3
 
4
4
  // src/constants.ts
5
5
  var VERSION = version;
@@ -25,7 +25,7 @@ __export(constants_exports, {
25
25
  module.exports = __toCommonJS(constants_exports);
26
26
 
27
27
  // package.json
28
- var version = "2.59.0";
28
+ var version = "2.59.1";
29
29
 
30
30
  // src/constants.ts
31
31
  var VERSION = version;
package/dist/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  VERSION
3
- } from "./chunk-SCDNNFXH.js";
3
+ } from "./chunk-LAI5QQUI.js";
4
4
  export {
5
5
  VERSION
6
6
  };
@@ -157,7 +157,7 @@ var import_axios = __toESM(require("axios"), 1);
157
157
  var import_os = __toESM(require("os"), 1);
158
158
 
159
159
  // package.json
160
- var version = "2.59.0";
160
+ var version = "2.59.1";
161
161
 
162
162
  // src/constants.ts
163
163
  var VERSION = version;
@@ -6,8 +6,8 @@ import {
6
6
  } from "./chunk-PLNJC7NZ.js";
7
7
  import {
8
8
  log_build_default
9
- } from "./chunk-F5WMB6Q5.js";
10
- import "./chunk-T3QXQPTB.js";
9
+ } from "./chunk-5GNBQGFW.js";
10
+ import "./chunk-AREJNU2F.js";
11
11
  import {
12
12
  catalogToAstro,
13
13
  checkAndConvertMdToMdx
@@ -15,7 +15,7 @@ import {
15
15
  import "./chunk-55D645EH.js";
16
16
  import {
17
17
  VERSION
18
- } from "./chunk-SCDNNFXH.js";
18
+ } from "./chunk-LAI5QQUI.js";
19
19
  import {
20
20
  getProjectOutDir,
21
21
  isAuthEnabled,
@@ -14,7 +14,7 @@ export class Page extends HybridPage {
14
14
 
15
15
  const { pageDataLoader } = await import('@utils/page-loaders/page-data-loader');
16
16
 
17
- const itemTypes: PageTypes[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows'];
17
+ const itemTypes: PageTypes[] = ['events', 'commands', 'queries', 'services', 'domains', 'flows', 'containers'];
18
18
  const allItems = await Promise.all(itemTypes.map((type) => pageDataLoader[type]()));
19
19
 
20
20
  return allItems.flatMap((items, index) =>
@@ -9,6 +9,7 @@ import {
9
9
  MagnifyingGlassIcon,
10
10
  QueueListIcon,
11
11
  } from '@heroicons/react/24/outline';
12
+ import { DatabaseIcon } from 'lucide-react';
12
13
  import { render, getEntry } from 'astro:content';
13
14
  import mdxComponents from '@components/MDX/components';
14
15
  import 'diff2html/bundles/css/diff2html.min.css';
@@ -96,18 +97,15 @@ const getBadge = () => {
96
97
  class: 'text-yellow-400',
97
98
  };
98
99
  }
100
+ if (props.collection === 'containers') {
101
+ return { backgroundColor: 'blue', textColor: 'blue', content: 'Container', icon: DatabaseIcon, class: 'text-blue-400' };
102
+ }
99
103
  if (props.collection === 'flows') {
100
104
  return { backgroundColor: 'teal', textColor: 'teal', content: 'Flow', icon: QueueListIcon, class: 'text-teal-400' };
101
105
  }
102
106
  };
103
107
 
104
108
  const badges = [getBadge()];
105
- import { HomeIcon } from '@heroicons/react/20/solid';
106
-
107
- const pages = [
108
- { name: 'Projects', href: '#', current: false },
109
- { name: 'Project Nero', href: '#', current: true },
110
- ];
111
109
  ---
112
110
 
113
111
  <VerticalSideBarLayout title="ChangeLog">
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/event-catalog/eventcatalog.git"
7
7
  },
8
8
  "type": "module",
9
- "version": "2.59.0",
9
+ "version": "2.59.1",
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },