@neotx/core 0.1.0-alpha.1 → 0.1.0-alpha.2

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 CHANGED
@@ -1009,7 +1009,6 @@ declare function runWithRecovery(options: RecoveryOptions): Promise<SessionResul
1009
1009
 
1010
1010
  declare const supervisorDaemonStateSchema: z.ZodObject<{
1011
1011
  pid: z.ZodNumber;
1012
- tmuxSession: z.ZodString;
1013
1012
  sessionId: z.ZodString;
1014
1013
  port: z.ZodNumber;
1015
1014
  cwd: z.ZodString;
package/dist/index.js CHANGED
@@ -2164,7 +2164,6 @@ function objectDepth(obj, current = 0) {
2164
2164
  import { z as z4 } from "zod";
2165
2165
  var supervisorDaemonStateSchema = z4.object({
2166
2166
  pid: z4.number(),
2167
- tmuxSession: z4.string(),
2168
2167
  sessionId: z4.string(),
2169
2168
  port: z4.number(),
2170
2169
  cwd: z4.string(),
@@ -3230,7 +3229,6 @@ var SupervisorDaemon = class {
3230
3229
  await this.webhookServer.start();
3231
3230
  await this.writeState({
3232
3231
  pid: process.pid,
3233
- tmuxSession: `neo-${this.name}`,
3234
3232
  sessionId: this.sessionId,
3235
3233
  port: this.config.supervisor.port,
3236
3234
  cwd: homedir3(),