@hydra-acp/cli 0.1.101 → 0.1.102
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/README.md +1 -1
- package/dist/cli.js +309 -309
- package/dist/index.d.ts +4 -2
- package/dist/index.js +64 -64
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { FastifyInstance } from 'fastify';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { Readable, Writable } from 'node:stream';
|
|
4
4
|
import { ChildProcess } from 'node:child_process';
|
|
5
|
-
import
|
|
5
|
+
import { SonicBoom } from 'sonic-boom';
|
|
6
6
|
import { WebSocket } from 'ws';
|
|
7
7
|
|
|
8
8
|
declare const ExtensionBody: z.ZodObject<{
|
|
@@ -2209,7 +2209,7 @@ interface SupervisorAdapter {
|
|
|
2209
2209
|
interface ChildEntry<TConfig extends BaseChildConfig> {
|
|
2210
2210
|
config: TConfig;
|
|
2211
2211
|
child: ChildProcess | undefined;
|
|
2212
|
-
logStream:
|
|
2212
|
+
logStream: SonicBoom | undefined;
|
|
2213
2213
|
restartTimer: NodeJS.Timeout | undefined;
|
|
2214
2214
|
pid: number | undefined;
|
|
2215
2215
|
startedAt: number | undefined;
|
|
@@ -4002,9 +4002,11 @@ declare const paths: {
|
|
|
4002
4002
|
tombstoneAgentDir: (agentId: string) => string;
|
|
4003
4003
|
tombstoneFile: (agentId: string, upstreamSessionId: string) => string;
|
|
4004
4004
|
extensionsDir: () => string;
|
|
4005
|
+
extensionLogDir: (name: string) => string;
|
|
4005
4006
|
extensionLogFile: (name: string) => string;
|
|
4006
4007
|
extensionPidFile: (name: string) => string;
|
|
4007
4008
|
transformersDir: () => string;
|
|
4009
|
+
transformerLogDir: (name: string) => string;
|
|
4008
4010
|
transformerLogFile: (name: string) => string;
|
|
4009
4011
|
transformerPidFile: (name: string) => string;
|
|
4010
4012
|
transformerState: (sessionId: string, transformerName: string) => string;
|