@byok-sdk/core 0.3.0 → 0.4.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/dist/blob.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/presence.d.ts +8 -0
- package/package.json +1 -1
package/dist/presence.d.ts
CHANGED
|
@@ -27,6 +27,12 @@ export interface PresenceHint {
|
|
|
27
27
|
readonly level: PresenceLevel;
|
|
28
28
|
/** Free-form host label, bounded by the composition. Never parsed by core. */
|
|
29
29
|
readonly detail?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Logical MCP toolset IDs this daemon reported as configured. Discovery
|
|
32
|
+
* only: local task acceptance remains the fail-closed authority. Omission
|
|
33
|
+
* means legacy/unknown; an empty array means known-none.
|
|
34
|
+
*/
|
|
35
|
+
readonly configuredToolsets?: readonly string[];
|
|
30
36
|
readonly observedAt: string;
|
|
31
37
|
readonly expiresAt: string;
|
|
32
38
|
}
|
|
@@ -34,6 +40,8 @@ export interface PresenceHintInput {
|
|
|
34
40
|
readonly deviceId: string;
|
|
35
41
|
readonly level: PresenceLevel;
|
|
36
42
|
readonly detail?: string;
|
|
43
|
+
/** Validated logical IDs only; executable connector definitions never belong here. */
|
|
44
|
+
readonly configuredToolsets?: readonly string[];
|
|
37
45
|
/** Hint lifetime. §12.7.5 suggests 60-120s for presence. */
|
|
38
46
|
readonly ttlMs: number;
|
|
39
47
|
/** Minimum time between accepted publications for this device. `0` explicitly disables throttling. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byok-sdk/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "BYOK SDK platform contracts: branded tenant identity, tenant-first store ports, device proof canonicalization, and the composition conformance reference",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|