@kya-os/contracts 1.5.2-canary.3 → 1.5.2-canary.5
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/endpoints.d.ts +0 -1
- package/dist/agentshield-api/endpoints.js +0 -1
- package/dist/agentshield-api/index.d.ts +1 -1
- package/dist/agentshield-api/schemas.d.ts +250 -85
- package/dist/agentshield-api/schemas.js +41 -8
- package/dist/agentshield-api/types.d.ts +46 -9
- package/dist/config/builder.d.ts +0 -1
- package/dist/config/identity.d.ts +0 -1
- package/dist/config/identity.js +0 -1
- package/dist/config/index.d.ts +0 -1
- package/dist/config/index.js +0 -1
- package/dist/consent/schemas.d.ts +70 -70
- package/dist/dashboard-config/default-config.d.ts +0 -1
- package/dist/dashboard-config/default-config.js +0 -1
- package/dist/dashboard-config/index.d.ts +0 -1
- package/dist/dashboard-config/index.js +0 -1
- package/dist/dashboard-config/schemas.d.ts +564 -565
- package/dist/dashboard-config/schemas.js +0 -1
- package/dist/dashboard-config/types.d.ts +0 -1
- package/dist/dashboard-config/types.js +0 -1
- package/dist/delegation/constraints.d.ts +0 -1
- package/dist/delegation/constraints.js +0 -1
- package/dist/delegation/index.js +0 -1
- package/dist/delegation/schemas.d.ts +98 -99
- package/dist/delegation/schemas.js +0 -1
- package/dist/handshake.d.ts +9 -4
- package/dist/proof/index.d.ts +3 -2
- package/dist/proof/index.js +16 -2
- package/dist/proof.d.ts +28 -29
- package/dist/proof.js +0 -1
- package/package.json +5 -5
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* @package @kya-os/contracts/agentshield-api
|
|
8
8
|
*/
|
|
9
|
-
export type { AgentShieldAPIResponse, ProofSubmissionRequest, ProofSubmissionResponse, VerifyDelegationRequest, VerifyDelegationResponse, VerifyDelegationAPIResponse, DelegationCredential, AgentShieldToolProtection, ToolProtectionConfigResponse, ToolProtectionConfigAPIResponse, CreateDelegationRequest, CreateDelegationResponse, CreateDelegationAPIResponse, RevokeDelegationRequest, RevokeDelegationResponse, RevokeDelegationAPIResponse, } from './types.js';
|
|
9
|
+
export type { AgentShieldAPIResponse, AgentShieldAPIErrorResponse, ProofSubmissionRequest, ProofSubmissionResponse, ToolCallContext, BouncerOutcome, VerifyDelegationRequest, VerifyDelegationResponse, VerifyDelegationAPIResponse, DelegationCredential, AgentShieldToolProtection, ToolProtectionConfigResponse, ToolProtectionConfigAPIResponse, CreateDelegationRequest, CreateDelegationResponse, CreateDelegationAPIResponse, RevokeDelegationRequest, RevokeDelegationResponse, RevokeDelegationAPIResponse, } from './types.js';
|
|
10
10
|
export { AgentShieldAPIError } from './types.js';
|
|
11
11
|
export type { AgentShieldAPIHeaders } from './endpoints.js';
|
|
12
12
|
export { agentShieldAPIErrorSchema, agentShieldAPIResponseSchema, proofSubmissionRequestSchema, proofSubmissionResponseSchema, delegationCredentialSchema, verifyDelegationRequestSchema, verifyDelegationResponseSchema, verifyDelegationAPIResponseSchema, agentShieldToolProtectionSchema, toolProtectionConfigResponseSchema, toolProtectionConfigAPIResponseSchema, createDelegationRequestSchema, createDelegationResponseSchema, createDelegationAPIResponseSchema, revokeDelegationRequestSchema, revokeDelegationResponseSchema, revokeDelegationAPIResponseSchema, } from './schemas.js';
|