@getpaseo/protocol 0.3.0 → 0.4.0-beta.1

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.
@@ -5,7 +5,6 @@ export declare const DirectTcpHostConnectionSchema: z.ZodObject<{
5
5
  endpoint: z.ZodString;
6
6
  useTls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
7
7
  password: z.ZodOptional<z.ZodString>;
8
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
9
8
  }, z.core.$strip>;
10
9
  export type DirectTcpHostConnection = z.input<typeof DirectTcpHostConnectionSchema>;
11
10
  export type NormalizedDirectTcpHostConnection = z.output<typeof DirectTcpHostConnectionSchema>;
@@ -5,6 +5,5 @@ export const DirectTcpHostConnectionSchema = z.object({
5
5
  endpoint: z.string(),
6
6
  useTls: z.boolean().optional().default(false),
7
7
  password: z.string().optional(),
8
- headers: z.record(z.string(), z.string()).optional(),
9
8
  });
10
9
  //# sourceMappingURL=host-connection-schema.js.map
@@ -1,5 +1,6 @@
1
1
  import { z } from "zod";
2
2
  import { AgentProviderSchema } from "../provider-manifest.js";
3
+ // COMPAT(agentLoops): retained after the v0.3.0 feature removal; remove after 2027-02-09 when mixed-version peers no longer send legacy messages.
3
4
  export const LoopLogEntrySchema = z.object({
4
5
  seq: z.number().int().positive(),
5
6
  timestamp: z.string(),