@kya-os/contracts 1.6.3-canary.0 → 1.6.3
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/agentshield-api/admin-schemas.d.ts +2 -2
- package/dist/agentshield-api/schemas.d.ts +74 -100
- package/dist/audit/index.d.ts +4 -4
- package/dist/config/identity.d.ts +6 -6
- package/dist/consent/schemas.d.ts +78 -78
- package/dist/dashboard-config/index.d.ts +2 -2
- package/dist/dashboard-config/index.js +1 -4
- package/dist/dashboard-config/schemas.d.ts +3307 -6742
- package/dist/dashboard-config/schemas.js +1 -23
- package/dist/dashboard-config/types.d.ts +1 -28
- package/dist/handshake.d.ts +50 -0
- package/dist/handshake.js +23 -1
- package/dist/identity/index.d.ts +7 -0
- package/dist/identity/index.js +23 -0
- package/dist/identity/schemas.d.ts +250 -0
- package/dist/identity/schemas.js +115 -0
- package/dist/index.js +1 -0
- package/dist/tool-protection/index.d.ts +6 -6
- package/dist/well-known/index.d.ts +2 -2
- package/package.json +6 -6
|
@@ -209,12 +209,12 @@ export declare const AgentDocumentSchema: z.ZodObject<{
|
|
|
209
209
|
description?: string | undefined;
|
|
210
210
|
}>>;
|
|
211
211
|
}, "strip", z.ZodTypeAny, {
|
|
212
|
-
id: string;
|
|
213
212
|
capabilities: {
|
|
214
213
|
'mcp-i': ("handshake" | "signing" | "verification" | "delegation" | "proof-generation")[];
|
|
215
214
|
} & {
|
|
216
215
|
[k: string]: string[];
|
|
217
216
|
};
|
|
217
|
+
id: string;
|
|
218
218
|
metadata?: {
|
|
219
219
|
version?: string | undefined;
|
|
220
220
|
name?: string | undefined;
|
|
@@ -222,12 +222,12 @@ export declare const AgentDocumentSchema: z.ZodObject<{
|
|
|
222
222
|
description?: string | undefined;
|
|
223
223
|
} | undefined;
|
|
224
224
|
}, {
|
|
225
|
-
id: string;
|
|
226
225
|
capabilities: {
|
|
227
226
|
'mcp-i': ("handshake" | "signing" | "verification" | "delegation" | "proof-generation")[];
|
|
228
227
|
} & {
|
|
229
228
|
[k: string]: string[];
|
|
230
229
|
};
|
|
230
|
+
id: string;
|
|
231
231
|
metadata?: {
|
|
232
232
|
version?: string | undefined;
|
|
233
233
|
name?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kya-os/contracts",
|
|
3
|
-
"version": "1.6.3
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Shared contracts, types, and schemas for MCP-I framework",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,10 +37,6 @@
|
|
|
37
37
|
"types": "./dist/config/index.d.ts",
|
|
38
38
|
"default": "./dist/config/index.js"
|
|
39
39
|
},
|
|
40
|
-
"./dashboard-config": {
|
|
41
|
-
"types": "./dist/dashboard-config/index.d.ts",
|
|
42
|
-
"default": "./dist/dashboard-config/index.js"
|
|
43
|
-
},
|
|
44
40
|
"./audit": {
|
|
45
41
|
"types": "./dist/audit/index.d.ts",
|
|
46
42
|
"default": "./dist/audit/index.js"
|
|
@@ -68,6 +64,10 @@
|
|
|
68
64
|
"./registry": {
|
|
69
65
|
"types": "./dist/registry.d.ts",
|
|
70
66
|
"default": "./dist/registry.js"
|
|
67
|
+
},
|
|
68
|
+
"./identity": {
|
|
69
|
+
"types": "./dist/identity/index.d.ts",
|
|
70
|
+
"default": "./dist/identity/index.js"
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
},
|
|
84
84
|
"sideEffects": false,
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"zod": "^3.
|
|
86
|
+
"zod": "^3.25.76"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@types/node": "^20.14.9",
|