@slopus/happy-agent-client 0.0.6 → 0.0.7

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.
@@ -6,7 +6,7 @@ import { type Static } from "@sinclair/typebox";
6
6
  * A daemon reports its own number through `GET /v0/health`; a client that reads
7
7
  * a different one refuses to talk to that daemon.
8
8
  */
9
- export declare const HAPPY_AGENT_PROTOCOL_VERSION = 18;
9
+ export declare const HAPPY_AGENT_PROTOCOL_VERSION = 19;
10
10
  /** `GET /` — a greeting confirming the caller reached a Happy agent. */
11
11
  export declare const greetingResponseSchema: import("@sinclair/typebox").TObject<{
12
12
  text: import("@sinclair/typebox").TString;
@@ -7,7 +7,7 @@ import { effortSchema, Nullable, permissionModeSchema, serviceTierSchema } from
7
7
  * A daemon reports its own number through `GET /v0/health`; a client that reads
8
8
  * a different one refuses to talk to that daemon.
9
9
  */
10
- export const HAPPY_AGENT_PROTOCOL_VERSION = 18;
10
+ export const HAPPY_AGENT_PROTOCOL_VERSION = 19;
11
11
  /** `GET /` — a greeting confirming the caller reached a Happy agent. */
12
12
  export const greetingResponseSchema = Type.Object({ text: Type.String() });
13
13
  /** What a daemon says about itself. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slopus/happy-agent-client",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Typed client for the Happy agent HTTP API.",
5
5
  "license": "MIT",
6
6
  "repository": {