@nextclaw/kernel 0.1.2-beta.4 → 0.1.2-beta.6
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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -398,7 +398,7 @@ type NextClawApp = {
|
|
|
398
398
|
};
|
|
399
399
|
declare const nextclaw: NextClawApp;
|
|
400
400
|
//#endregion
|
|
401
|
-
//#region src/events/event
|
|
401
|
+
//#region src/events/event-keys.config.d.ts
|
|
402
402
|
declare function createAppEventKey<T>(id: string): AppEventKey<T>;
|
|
403
403
|
declare const eventKeys: {
|
|
404
404
|
readonly configUpdated: AppEventKey<{
|
package/dist/index.js
CHANGED
|
@@ -346,7 +346,7 @@ var EventBus = class {
|
|
|
346
346
|
//#region src/app/nextclaw-app.service.ts
|
|
347
347
|
const nextclaw = { eventBus: new EventBus() };
|
|
348
348
|
//#endregion
|
|
349
|
-
//#region src/events/event
|
|
349
|
+
//#region src/events/event-keys.config.ts
|
|
350
350
|
function createAppEventKey(id) {
|
|
351
351
|
return { id };
|
|
352
352
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextclaw/kernel",
|
|
3
|
-
"version": "0.1.2-beta.
|
|
3
|
+
"version": "0.1.2-beta.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "NextClaw product kernel skeleton for agents, tasks, sessions, context, tools, skills, providers, automation, and channels.",
|
|
6
6
|
"type": "module",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dist"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@nextclaw/ncp": "0.5.6-beta.
|
|
23
|
+
"@nextclaw/ncp": "0.5.6-beta.4"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "^20.17.6",
|