@pellux/goodvibes-contracts 1.11.1 → 1.11.3
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/artifacts/operator-contract.json +1 -1
- package/artifacts/operator-openapi.json +1 -1
- package/artifacts/python/homeassistant_operator_client.py +2 -2
- package/dist/generated/foundation-metadata.d.ts +1 -1
- package/dist/generated/foundation-metadata.js +1 -1
- package/dist/generated/operator-contract.js +1 -1
- package/dist/generated/webui-facade.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "GoodVibes Operator API",
|
|
5
|
-
"version": "1.11.
|
|
5
|
+
"version": "1.11.3",
|
|
6
6
|
"description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 415 cataloged methods: 364 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.11.
|
|
8
|
+
Contract product version: 1.11.3
|
|
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.11.
|
|
16
|
+
CONTRACT_VERSION: str = "1.11.3"
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class OperatorRoute(NamedTuple):
|
|
@@ -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.11.
|
|
11
|
+
* Contract product version: 1.11.3
|
|
12
12
|
* Methods: 415 total, 364 REST-routed, 51 ws-only invoke.
|
|
13
13
|
*/
|
|
14
14
|
export type WebuiHttpMethod = 'GET' | 'POST' | 'PATCH' | 'DELETE';
|