@mhome/core-protocol 1.6.0 → 1.7.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 +12 -0
- package/manifest/core.v1.json +15 -1
- package/package.json +1 -1
- package/protocol.json +1 -1
package/README.md
CHANGED
|
@@ -20,3 +20,15 @@ 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.0)
|
|
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, 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 13 replaces effect notifications with request/completion events.
|
|
32
|
+
ServiceCoreOutput contains only its response and rejects the old effects field.
|
|
33
|
+
There is no old-protocol compatibility path. Consumers must upgrade together;
|
|
34
|
+
version 1.7.0 must be published before updating registry-backed consumer locks.
|
package/manifest/core.v1.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest": "mhome.core.v1",
|
|
3
|
-
"contractVersion": "1.
|
|
3
|
+
"contractVersion": "1.7.0",
|
|
4
4
|
"protocols": {
|
|
5
5
|
"agentGateway": {
|
|
6
6
|
"submitTarget": "/agent/submit",
|
|
@@ -60,6 +60,20 @@
|
|
|
60
60
|
},
|
|
61
61
|
"storage": {
|
|
62
62
|
"version": "storage.v2"
|
|
63
|
+
},
|
|
64
|
+
"hostDelivery": {
|
|
65
|
+
"externalProtocolVersion": 13,
|
|
66
|
+
"requestKind": "deliveryRequested",
|
|
67
|
+
"connectionControlKind": "connectionControlRequested",
|
|
68
|
+
"acceptanceBoundaries": [
|
|
69
|
+
"connectionQueue",
|
|
70
|
+
"provider"
|
|
71
|
+
],
|
|
72
|
+
"outcomes": [
|
|
73
|
+
"accepted",
|
|
74
|
+
"failed",
|
|
75
|
+
"unknown"
|
|
76
|
+
]
|
|
63
77
|
}
|
|
64
78
|
}
|
|
65
79
|
}
|
package/package.json
CHANGED