@mhome/core-protocol 1.6.0 → 1.7.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.
package/README.md CHANGED
@@ -20,3 +20,17 @@ request is rejected.
20
20
  Storage separates backing-filesystem capacity from Storage-owned logical
21
21
  usage. Namespace is an internal protocol term; user-facing clients present it
22
22
  as a Folder.
23
+
24
+ ## Host delivery (core-api 1.7.1)
25
+
26
+ Core resolves logical recipients; the Host executes a concrete App connection,
27
+ Node connection or Messaging destination. Delivery responses distinguish queue or
28
+ provider acceptance, intentional skips, definite failure and unknown completion. Acceptance is not
29
+ a user-read receipt. Connection close has a separate typed control request.
30
+
31
+ External protocol 14 replaces effect notifications with request/completion events.
32
+ ServiceCoreOutput contains only its response and rejects the old effects field.
33
+ Messaging returns the same typed outcome, not a delivered boolean. Skipped means
34
+ handled without a send and must not be reported as provider acceptance.
35
+ There is no old-protocol compatibility path. Consumers must upgrade together;
36
+ version 1.7.1 must be published before updating registry-backed consumer locks.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "manifest": "mhome.core.v1",
3
- "contractVersion": "1.6.0",
3
+ "contractVersion": "1.7.1",
4
4
  "protocols": {
5
5
  "agentGateway": {
6
6
  "submitTarget": "/agent/submit",
@@ -60,6 +60,21 @@
60
60
  },
61
61
  "storage": {
62
62
  "version": "storage.v2"
63
+ },
64
+ "hostDelivery": {
65
+ "externalProtocolVersion": 14,
66
+ "requestKind": "deliveryRequested",
67
+ "connectionControlKind": "connectionControlRequested",
68
+ "acceptanceBoundaries": [
69
+ "connectionQueue",
70
+ "provider"
71
+ ],
72
+ "outcomes": [
73
+ "accepted",
74
+ "skipped",
75
+ "failed",
76
+ "unknown"
77
+ ]
63
78
  }
64
79
  }
65
80
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mhome/core-protocol",
3
- "version": "1.6.0",
3
+ "version": "1.7.1",
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.6.0",
3
+ "contractVersion": "1.7.1",
4
4
  "manifest": "manifest/core.v1.json",
5
5
  "schemas": {
6
6
  "normalizedInbound": "schema/normalized-inbound.v4.schema.json",