@theokit/agents 13.0.0-next.4 → 13.0.0-next.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
@@ -1,5 +1,18 @@
1
1
  # @theokit/agents
2
2
 
3
+ ## 13.0.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 9915c19: `RegistryOutcome` is exported alongside the field that uses it
8
+
9
+ `registryOutcome` shipped in `13.0.0-next.4` and its type did not, so a consumer could read the
10
+ value and not name it — `function handle(o: RegistryOutcome)` did not compile. A union whose members
11
+ cannot be named is read as `string`, which loses every distinction it exists to make.
12
+
13
+ Third instance of the same omission (`AgentModule` in #663, `transcriptOf` in #668), and the third
14
+ found by installing the published package into an empty project rather than by reading the source.
15
+
3
16
  ## 13.0.0-next.4
4
17
 
5
18
  ### Minor Changes
package/dist/session.d.ts CHANGED
@@ -657,4 +657,4 @@ declare class LivenessBudgetError extends TheokitAgentError {
657
657
  */
658
658
  declare function classifyProjects(encoded: readonly string[], opts: ClassifyProjectsOptions): Map<string, LivenessVerdict>;
659
659
 
660
- export { type ClassifyProjectsOptions, type DeleteSessionOptions, type DeleteSessionResult, type FsSeam, type GCCandidate, type GCError, GCFloorError, type GCKept, GCProtectionUnavailableError, type Liveness, LivenessBudgetError, type LivenessVerdict, type ReadThreadHistoryOptions, type RunTranscriptGCResult, SessionInUseError, SessionRegistryRemoverError, type SessionSummary, type ThreadHistory, type ThreadHistoryState, type TranscriptGCOptions, type TranscriptGCPlan, classifyProjects, deleteSession, forkBeforeUserTurn, listSessions, loadOrCreateSessionId, persistSessionId, planTranscriptGC, projectDirFor, projectDirMatches, projectsRoot, protectedTranscriptPaths, readThreadHistory, recordProjectDir, resolveProjectDir, runTranscriptGC, sessionPointerPath, transcriptOf, transcriptRootHint };
660
+ export { type ClassifyProjectsOptions, type DeleteSessionOptions, type DeleteSessionResult, type FsSeam, type GCCandidate, type GCError, GCFloorError, type GCKept, GCProtectionUnavailableError, type Liveness, LivenessBudgetError, type LivenessVerdict, type ReadThreadHistoryOptions, type RegistryOutcome, type RunTranscriptGCResult, SessionInUseError, SessionRegistryRemoverError, type SessionSummary, type ThreadHistory, type ThreadHistoryState, type TranscriptGCOptions, type TranscriptGCPlan, classifyProjects, deleteSession, forkBeforeUserTurn, listSessions, loadOrCreateSessionId, persistSessionId, planTranscriptGC, projectDirFor, projectDirMatches, projectsRoot, protectedTranscriptPaths, readThreadHistory, recordProjectDir, resolveProjectDir, runTranscriptGC, sessionPointerPath, transcriptOf, transcriptRootHint };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/agents",
3
- "version": "13.0.0-next.4",
3
+ "version": "13.0.0-next.5",
4
4
  "description": "AI agents as first-class citizens of the TheoKit pipeline. The AgentBuilder.create() authoring chain compiles to the @theokit/sdk runtime.",
5
5
  "repository": {
6
6
  "type": "git",