@pellux/goodvibes-contracts 1.16.0 → 1.16.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.
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "1.16.0"
6
+ "version": "1.16.1"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "GoodVibes Operator API",
5
- "version": "1.16.0",
5
+ "version": "1.16.1",
6
6
  "description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 419 cataloged methods: 368 with dedicated REST bindings, 51 reachable only through the generic invoke endpoint. 97 methods lack typed SDK client IO and are marked with `x-typed-client-io: false` — they are represented honestly, never omitted. Regenerate with `bun run openapi:generate`; drift fails `contracts:check`."
7
7
  },
8
8
  "servers": [
@@ -5,7 +5,7 @@ emitted from the operator contract by scripts/generate-homeassistant-client.ts.
5
5
  Covers only the REST subset HA consumes; the webhook, conversation stream,
6
6
  and surface health probe are not operator methods and stay hand-written.
7
7
 
8
- Contract product version: 1.16.0
8
+ Contract product version: 1.16.1
9
9
  Consumed operator methods: 33
10
10
  """
11
11
  from __future__ import annotations
@@ -13,7 +13,7 @@ from __future__ import annotations
13
13
  from typing import Any, Literal, Mapping, NamedTuple, NotRequired, TypedDict
14
14
 
15
15
  #: Daemon contract version these types were generated against (the version pin).
16
- CONTRACT_VERSION: str = "1.16.0"
16
+ CONTRACT_VERSION: str = "1.16.1"
17
17
 
18
18
 
19
19
  class OperatorRoute(NamedTuple):
@@ -1,6 +1,6 @@
1
1
  export declare const FOUNDATION_METADATA: {
2
2
  readonly productId: "goodvibes";
3
- readonly productVersion: "1.16.0";
3
+ readonly productVersion: "1.16.1";
4
4
  readonly operatorMethodCount: 419;
5
5
  readonly operatorEventCount: 32;
6
6
  readonly peerEndpointCount: 6;
@@ -1,6 +1,6 @@
1
1
  export const FOUNDATION_METADATA = {
2
2
  "productId": "goodvibes",
3
- "productVersion": "1.16.0",
3
+ "productVersion": "1.16.1",
4
4
  "operatorMethodCount": 419,
5
5
  "operatorEventCount": 32,
6
6
  "peerEndpointCount": 6
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "1.16.0"
6
+ "version": "1.16.1"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -8,7 +8,7 @@ import type { OperatorMethodId } from './operator-method-ids.js';
8
8
  * webui keeps its ergonomic wrappers (route interpolation, per-family typed
9
9
  * call sites) hand-written on top of these generated primitives.
10
10
  *
11
- * Contract product version: 1.16.0
11
+ * Contract product version: 1.16.1
12
12
  * Methods: 419 total, 368 REST-routed, 51 ws-only invoke.
13
13
  */
14
14
  export type WebuiHttpMethod = 'GET' | 'POST' | 'PATCH' | 'DELETE';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-contracts",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "engines": {
5
5
  "bun": "1.3.10",
6
6
  "node": ">=22.0.0"