@adastracomputing/ink 0.1.4 → 0.1.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/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@ here. Pre-1.0 releases follow `0.Y.Z` semantics, see
8
8
 
9
9
  No unreleased changes.
10
10
 
11
+ ## 0.1.5, expose handshake type re-exports and InkTransportSchema from the package root
12
+
13
+ Pure additive release. Re-exports the `InkChallenge`, `InkRejection`, `InkResolution`, `InkTransport` types and the `InkTransportSchema` constant from the package root. Adopters writing handshake-aware receivers can now type their state-machine without reaching into a deep path. No wire-level changes. No behavior changes inside the existing functions. Receivers on 0.1.4 work unchanged on 0.1.5.
14
+
15
+ Per the pre-1.0 policy this release publishes under the `next` dist-tag.
16
+
11
17
  ## 0.1.4, expose receipts, transport-auth, discovery-gating, audit schemas and handshake schemas from the package root
12
18
 
13
19
  Pure additive release. The implementation files have shipped in earlier releases under deep paths; this release brings them to the package root so adopters writing receivers, builders, or auditor clients can import everything they need from `@adastracomputing/ink` directly.
package/dist/index.d.ts CHANGED
@@ -13,8 +13,8 @@ export { parseCheckpoint, formatCheckpoint, } from "./ink/checkpoint.js";
13
13
  export type { CheckpointData } from "./ink/checkpoint.js";
14
14
  export { InkAuditEventTypeSchema, InkAuditEventSchema, InkAuditInclusionSchema, InkReceiptSchema, InkAuditQuerySchema, InkIntroductionReceiptSchema, } from "./models/ink-audit.js";
15
15
  export type { InkAuditEventType, InkAuditEvent, InkAuditInclusion, InkReceipt, InkAuditQuery, InkAuditResponse, InkIntroductionReceiptStatus, } from "./models/ink-audit.js";
16
- export { InkChallengeSchema, InkRejectionSchema, InkResolutionSchema, } from "./models/ink-handshake.js";
17
- export type { AgentCardVisibility, } from "./models/ink-handshake.js";
16
+ export { InkChallengeSchema, InkRejectionSchema, InkResolutionSchema, InkTransportSchema, } from "./models/ink-handshake.js";
17
+ export type { AgentCardVisibility, InkChallenge, InkRejection, InkResolution, InkTransport, } from "./models/ink-handshake.js";
18
18
  export { AgentCardSchema } from "./models/agent-card.js";
19
19
  export { validateMessage, MessageEnvelopeSchema } from "./models/intent.js";
20
20
  export type { MessageEnvelope } from "./models/intent.js";
package/dist/index.js CHANGED
@@ -24,7 +24,7 @@ export { parseCheckpoint, formatCheckpoint, } from "./ink/checkpoint.js";
24
24
  // Audit event schemas + types for receipts, query, inclusion proofs
25
25
  export { InkAuditEventTypeSchema, InkAuditEventSchema, InkAuditInclusionSchema, InkReceiptSchema, InkAuditQuerySchema, InkIntroductionReceiptSchema, } from "./models/ink-audit.js";
26
26
  // Handshake message schemas
27
- export { InkChallengeSchema, InkRejectionSchema, InkResolutionSchema, } from "./models/ink-handshake.js";
27
+ export { InkChallengeSchema, InkRejectionSchema, InkResolutionSchema, InkTransportSchema, } from "./models/ink-handshake.js";
28
28
  // Agent Card schema (the canonical .well-known/ink/agent.json document)
29
29
  export { AgentCardSchema } from "./models/agent-card.js";
30
30
  // Envelope validation: full Zod-backed parse of the canonical
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adastracomputing/ink",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Library and specification for the INK (Inter-agent Networking Kernel) protocol",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "author": "Ad Astra Computing Inc.",