@kya-os/mcp-i 1.5.9-canary.17 → 1.5.9-canary.18
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/cli-adapter/index.d.ts +2 -0
- package/dist/cli-adapter/index.js +9 -5
- package/dist/cli-adapter/kta-registration.d.ts +9 -0
- package/dist/cli-adapter/kta-registration.js +75 -0
- package/dist/runtime/adapter-express.js +1 -1
- package/dist/runtime/adapter-nextjs.js +1 -1
- package/dist/runtime/http.js +1 -1
- package/dist/runtime/identity.d.ts +12 -0
- package/dist/runtime/identity.js +15 -1
- package/dist/runtime/stdio.js +1 -1
- package/package.json +3 -3
|
@@ -111,6 +111,18 @@ export declare class IdentityManager {
|
|
|
111
111
|
* Default identity manager instance
|
|
112
112
|
*/
|
|
113
113
|
export declare const defaultIdentityManager: IdentityManager;
|
|
114
|
+
/**
|
|
115
|
+
* Extract agent ID from DID
|
|
116
|
+
* @deprecated Use extractAgentId from @kya-os/mcp-i-core/utils/did-helpers instead
|
|
117
|
+
* This re-export is maintained for backward compatibility
|
|
118
|
+
*/
|
|
119
|
+
export { extractAgentId } from '@kya-os/mcp-i-core/utils/did-helpers';
|
|
120
|
+
/**
|
|
121
|
+
* Extract agent slug from DID
|
|
122
|
+
* @deprecated Use extractAgentSlug from @kya-os/mcp-i-core/utils/did-helpers instead
|
|
123
|
+
* This re-export is maintained for backward compatibility
|
|
124
|
+
*/
|
|
125
|
+
export { extractAgentSlug } from '@kya-os/mcp-i-core/utils/did-helpers';
|
|
114
126
|
/**
|
|
115
127
|
* Convenience function to ensure identity
|
|
116
128
|
*/
|
package/dist/runtime/identity.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* and production environments according to requirements 4.1-4.4.
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.defaultIdentityManager = exports.IdentityManager = exports.IDENTITY_ERRORS = void 0;
|
|
9
|
+
exports.extractAgentSlug = exports.extractAgentId = exports.defaultIdentityManager = exports.IdentityManager = exports.IDENTITY_ERRORS = void 0;
|
|
10
10
|
exports.ensureIdentity = ensureIdentity;
|
|
11
11
|
const promises_1 = require("fs/promises");
|
|
12
12
|
const fs_1 = require("fs");
|
|
@@ -291,6 +291,20 @@ exports.IdentityManager = IdentityManager;
|
|
|
291
291
|
* Default identity manager instance
|
|
292
292
|
*/
|
|
293
293
|
exports.defaultIdentityManager = new IdentityManager();
|
|
294
|
+
/**
|
|
295
|
+
* Extract agent ID from DID
|
|
296
|
+
* @deprecated Use extractAgentId from @kya-os/mcp-i-core/utils/did-helpers instead
|
|
297
|
+
* This re-export is maintained for backward compatibility
|
|
298
|
+
*/
|
|
299
|
+
var did_helpers_1 = require("@kya-os/mcp-i-core/utils/did-helpers");
|
|
300
|
+
Object.defineProperty(exports, "extractAgentId", { enumerable: true, get: function () { return did_helpers_1.extractAgentId; } });
|
|
301
|
+
/**
|
|
302
|
+
* Extract agent slug from DID
|
|
303
|
+
* @deprecated Use extractAgentSlug from @kya-os/mcp-i-core/utils/did-helpers instead
|
|
304
|
+
* This re-export is maintained for backward compatibility
|
|
305
|
+
*/
|
|
306
|
+
var did_helpers_2 = require("@kya-os/mcp-i-core/utils/did-helpers");
|
|
307
|
+
Object.defineProperty(exports, "extractAgentSlug", { enumerable: true, get: function () { return did_helpers_2.extractAgentSlug; } });
|
|
294
308
|
/**
|
|
295
309
|
* Convenience function to ensure identity
|
|
296
310
|
*/
|