@mhome/core-protocol 1.8.1 → 1.10.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 +7 -0
- package/manifest/core.v1.json +2 -2
- package/package.json +1 -1
- package/protocol.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,13 @@ 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
23
|
|
|
24
|
+
## Playground Provider (core-api 1.10.0)
|
|
25
|
+
|
|
26
|
+
External protocol 15 removes the dedicated Playground webhook method and payload.
|
|
27
|
+
Playground Provider delivers events through the standard subscription webhook,
|
|
28
|
+
using `GeneralWebhookPayload`. Update the Core service shell and runtime together;
|
|
29
|
+
mixed external protocol versions are not supported.
|
|
30
|
+
|
|
24
31
|
## Stable recipients (core-api 1.8.0)
|
|
25
32
|
|
|
26
33
|
`RecipientId` provides canonical Messaging (`m:p:` / `m:g:`) and Node (`n:`)
|
package/manifest/core.v1.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest": "mhome.core.v1",
|
|
3
|
-
"contractVersion": "1.
|
|
3
|
+
"contractVersion": "1.10.0",
|
|
4
4
|
"protocols": {
|
|
5
5
|
"agentGateway": {
|
|
6
6
|
"submitTarget": "/agent/submit",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"version": "storage.v2"
|
|
63
63
|
},
|
|
64
64
|
"hostDelivery": {
|
|
65
|
-
"externalProtocolVersion":
|
|
65
|
+
"externalProtocolVersion": 15,
|
|
66
66
|
"requestKind": "deliveryRequested",
|
|
67
67
|
"connectionControlKind": "connectionControlRequested",
|
|
68
68
|
"acceptanceBoundaries": [
|
package/package.json
CHANGED