agent-relay-server 0.94.0 → 0.94.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/docs/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Agent Relay API",
|
|
5
|
-
"version": "0.94.
|
|
5
|
+
"version": "0.94.1",
|
|
6
6
|
"description": "Real-time message bus for inter-agent communication. Agent-first: this spec is designed for machine consumption — agents can self-discover the full API surface via GET /api/spec.",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
package/package.json
CHANGED
package/src/db/schema.ts
CHANGED
|
@@ -1013,7 +1013,6 @@ export function initDb(path: string = "agent-relay.db"): Database {
|
|
|
1013
1013
|
UNIQUE(capability_id, provider)
|
|
1014
1014
|
);
|
|
1015
1015
|
CREATE INDEX IF NOT EXISTS idx_provisioning_assets_kind ON provisioning_assets(kind, enabled);
|
|
1016
|
-
CREATE INDEX IF NOT EXISTS idx_provisioning_assets_capability ON provisioning_assets(capability_id, provider, enabled);
|
|
1017
1016
|
`);
|
|
1018
1017
|
|
|
1019
1018
|
ensureContinuationArchiveSearchSchema();
|