@mhome/core-protocol 1.14.0 → 1.15.0

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/README.md CHANGED
@@ -64,6 +64,12 @@ only the canonical DTOs cross HTTP/IPC boundaries. The permissions contract is i
64
64
  `contract/host-permissions.md`; runtime permission handlers remain a separate
65
65
  implementation step. The existing Core external runtime protocol stays at 15.
66
66
 
67
+ ## Offline Host authorization (core-api 1.15.0)
68
+
69
+ `host::auth` is the language-neutral Client–Host authorization payload contract.
70
+ See [`contract/host-offline-auth.md`](contract/host-offline-auth.md). This crate
71
+ does not implement signing, key storage, or transport.
72
+
67
73
  ## Native Client Host management
68
74
 
69
75
  `host::management` defines the generic runtime request/action and response envelope.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "manifest": "mhome.core.v1",
3
- "contractVersion": "1.14.0",
3
+ "contractVersion": "1.15.0",
4
4
  "protocols": {
5
5
  "agentGateway": {
6
6
  "submitTarget": "/agent/submit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mhome/core-protocol",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "description": "Build-time protocol artifacts for mhome.core",
5
5
  "license": "MIT",
6
6
  "repository": {
package/protocol.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "protocol": "mhome.core",
3
- "contractVersion": "1.14.0",
3
+ "contractVersion": "1.15.0",
4
4
  "manifest": "manifest/core.v1.json",
5
5
  "schemas": {
6
6
  "hostManagementRequest": "schema/host-management-request.v1.schema.json",