@blade-hq/agent-kit 0.5.26 → 0.5.27
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/{SkillStatusBar-qjGb3eKD.d.ts → SkillStatusBar-CvgcEiSi.d.ts} +1 -1
- package/dist/{blade-client-DA2h2P5I.d.ts → blade-client-DoodJJDz.d.ts} +29 -0
- package/dist/{chunk-Y7FRTBUT.js → chunk-3HFYDOHY.js} +3 -3
- package/dist/{chunk-6L6JFSR5.js → chunk-CDL6Y4W7.js} +2 -2
- package/dist/{chunk-QCDNRR74.js → chunk-CTNH3GZY.js} +7 -6
- package/dist/chunk-CTNH3GZY.js.map +1 -0
- package/dist/{chunk-4FCXKLXT.js → chunk-JIPDSO26.js} +2 -2
- package/dist/{chunk-UNO53NPU.js → chunk-OF7ZBBTH.js} +7 -1
- package/dist/chunk-OF7ZBBTH.js.map +1 -0
- package/dist/client/index.d.ts +364 -1
- package/dist/react/api/vibe-coding.d.ts +2 -2
- package/dist/react/api/vibe-coding.js +1 -1
- package/dist/react/components/chat/index.d.ts +3 -3
- package/dist/react/components/chat/index.js +4 -4
- package/dist/react/components/plan/index.js +3 -3
- package/dist/react/components/session/index.js +2 -2
- package/dist/react/components/workspace/index.d.ts +2 -2
- package/dist/react/components/workspace/index.js +2 -2
- package/dist/react/index.d.ts +19 -5
- package/dist/react/index.js +5 -5
- package/dist/{sessions-BZ3y17sP.d.ts → sessions-DFGsAOPa.d.ts} +1 -1
- package/package.json +1 -1
- package/dist/chunk-QCDNRR74.js.map +0 -1
- package/dist/chunk-UNO53NPU.js.map +0 -1
- /package/dist/{chunk-Y7FRTBUT.js.map → chunk-3HFYDOHY.js.map} +0 -0
- /package/dist/{chunk-6L6JFSR5.js.map → chunk-CDL6Y4W7.js.map} +0 -0
- /package/dist/{chunk-4FCXKLXT.js.map → chunk-JIPDSO26.js.map} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
apiFetchResponse,
|
|
3
3
|
getAuthedUrl
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-OF7ZBBTH.js";
|
|
5
5
|
|
|
6
6
|
// src/react/lib/session-file-preview.ts
|
|
7
7
|
var IMAGE_EXTS = /* @__PURE__ */ new Set(["png", "jpg", "jpeg", "gif", "svg", "webp", "ico", "bmp"]);
|
|
@@ -97,4 +97,4 @@ export {
|
|
|
97
97
|
resolveTextPreviewType,
|
|
98
98
|
resolveSessionFilePreviewTarget
|
|
99
99
|
};
|
|
100
|
-
//# sourceMappingURL=chunk-
|
|
100
|
+
//# sourceMappingURL=chunk-JIPDSO26.js.map
|
|
@@ -2810,6 +2810,12 @@ var AgentSocket = class {
|
|
|
2810
2810
|
this.socket.off("agent-board:board-task:changed", handler);
|
|
2811
2811
|
};
|
|
2812
2812
|
}
|
|
2813
|
+
onAgentBoardFileOp(handler) {
|
|
2814
|
+
this.socket.on("agent-board:file-op", handler);
|
|
2815
|
+
return () => {
|
|
2816
|
+
this.socket.off("agent-board:file-op", handler);
|
|
2817
|
+
};
|
|
2818
|
+
}
|
|
2813
2819
|
unsubscribe() {
|
|
2814
2820
|
const previousSessionId = this.subscribedSession;
|
|
2815
2821
|
if (previousSessionId) {
|
|
@@ -3228,4 +3234,4 @@ export {
|
|
|
3228
3234
|
bootstrapBladeClient,
|
|
3229
3235
|
getBootstrappedClient
|
|
3230
3236
|
};
|
|
3231
|
-
//# sourceMappingURL=chunk-
|
|
3237
|
+
//# sourceMappingURL=chunk-OF7ZBBTH.js.map
|