@eventcatalog/core 2.35.6 → 2.35.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/dist/analytics/analytics.cjs +1 -1
- package/dist/analytics/analytics.js +2 -2
- package/dist/analytics/log-build.cjs +1 -1
- package/dist/analytics/log-build.js +3 -3
- package/dist/{chunk-M63WKKQC.js → chunk-GRFWCJAM.js} +1 -1
- package/dist/{chunk-242GKRAE.js → chunk-O7CEYSZC.js} +1 -1
- package/dist/{chunk-SAGNHURV.js → chunk-ZEIS5QXO.js} +1 -1
- package/dist/constants.cjs +1 -1
- package/dist/constants.js +1 -1
- package/dist/eventcatalog.cjs +1 -1
- package/dist/eventcatalog.js +3 -3
- package/eventcatalog/src/enterprise/eventcatalog-chat/pages/chat/index.astro +4 -3
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
log_build_default
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-ZEIS5QXO.js";
|
|
4
|
+
import "../chunk-GRFWCJAM.js";
|
|
5
|
+
import "../chunk-O7CEYSZC.js";
|
|
6
6
|
import "../chunk-E7TXTI7G.js";
|
|
7
7
|
export {
|
|
8
8
|
log_build_default as default
|
package/dist/constants.cjs
CHANGED
package/dist/constants.js
CHANGED
package/dist/eventcatalog.cjs
CHANGED
package/dist/eventcatalog.js
CHANGED
|
@@ -6,15 +6,15 @@ import {
|
|
|
6
6
|
} from "./chunk-DCLTVJDP.js";
|
|
7
7
|
import {
|
|
8
8
|
log_build_default
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-ZEIS5QXO.js";
|
|
10
|
+
import "./chunk-GRFWCJAM.js";
|
|
11
11
|
import {
|
|
12
12
|
catalogToAstro,
|
|
13
13
|
checkAndConvertMdToMdx
|
|
14
14
|
} from "./chunk-5ZG43YD2.js";
|
|
15
15
|
import {
|
|
16
16
|
VERSION
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-O7CEYSZC.js";
|
|
18
18
|
import {
|
|
19
19
|
isBackstagePluginEnabled,
|
|
20
20
|
isEventCatalogScaleEnabled,
|
|
@@ -10,7 +10,7 @@ import { getDomains } from '@utils/collections/domains';
|
|
|
10
10
|
import { getEvents } from '@utils/events';
|
|
11
11
|
import { getCommands } from '@utils/commands';
|
|
12
12
|
import { getServices } from '@utils/collections/services';
|
|
13
|
-
|
|
13
|
+
import { getQueries } from '@utils/queries';
|
|
14
14
|
const isEnabled = config.chat?.enabled || false;
|
|
15
15
|
const chatConfig = config.chat || {};
|
|
16
16
|
const output = config.output || 'static';
|
|
@@ -21,13 +21,14 @@ const GENERATED_AI_DIR = path.resolve(PROJECT_DIR, 'public/ai');
|
|
|
21
21
|
const directoryExists = fs.existsSync(GENERATED_AI_DIR);
|
|
22
22
|
|
|
23
23
|
// Get all information for the mention input
|
|
24
|
-
const [events, commands, services, domains] = await Promise.all([
|
|
24
|
+
const [events, commands, queries, services, domains] = await Promise.all([
|
|
25
25
|
getEvents({ getAllVersions: false }),
|
|
26
26
|
getCommands({ getAllVersions: false }),
|
|
27
|
+
getQueries({ getAllVersions: false }),
|
|
27
28
|
getServices({ getAllVersions: false }),
|
|
28
29
|
getDomains({ getAllVersions: false }),
|
|
29
30
|
]);
|
|
30
|
-
const allItems = [...events, ...commands, ...services, ...domains];
|
|
31
|
+
const allItems = [...events, ...commands, ...queries, ...services, ...domains];
|
|
31
32
|
|
|
32
33
|
const chatPrompts = await getChatPromptsGroupedByCategory();
|
|
33
34
|
|