ai-hist-native 0.19.0 → 0.20.0

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/index.d.ts CHANGED
@@ -71,6 +71,12 @@ export interface NativeSessionEvent {
71
71
  model?: string
72
72
  tokenJson?: string
73
73
  eventUid: string
74
+ requestId?: string
75
+ stopReason?: string
76
+ agentVersion?: string
77
+ isSidechain?: boolean
78
+ isMeta?: boolean
79
+ turnId?: string
74
80
  }
75
81
  export interface EventCursor {
76
82
  tsMs: number
@@ -339,6 +345,12 @@ export interface HydrateSessionResult {
339
345
  presence: string
340
346
  indexedThrough: HydrationIndexedThrough
341
347
  evidence: HydrationEvidence
348
+ /**
349
+ * Evidence kinds this hydration can have indexed, as wire names
350
+ * (`history`, `session_event`, `tool_call`, `file_edit`,
351
+ * `relationship`, `commit_link`).
352
+ */
353
+ coverage: Array<string>
342
354
  relatedSessionIds: Array<string>
343
355
  diagnostics: Array<HydrationDiagnostic>
344
356
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-darwin-arm64",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "darwin"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-darwin-x64",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "darwin"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-arm64-gnu",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-arm64-musl",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-x64-gnu",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-linux-x64-musl",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-win32-x64-msvc",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "os": [
5
5
  "win32"
6
6
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Mandatory Node-API engine for RelayHistory.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -44,12 +44,12 @@
44
44
  "@napi-rs/cli": "^2.18.4"
45
45
  },
46
46
  "optionalDependencies": {
47
- "ai-hist-native-darwin-arm64": "0.19.0",
48
- "ai-hist-native-darwin-x64": "0.19.0",
49
- "ai-hist-native-linux-x64-gnu": "0.19.0",
50
- "ai-hist-native-linux-arm64-gnu": "0.19.0",
51
- "ai-hist-native-linux-x64-musl": "0.19.0",
52
- "ai-hist-native-linux-arm64-musl": "0.19.0",
53
- "ai-hist-native-win32-x64-msvc": "0.19.0"
47
+ "ai-hist-native-darwin-arm64": "0.20.0",
48
+ "ai-hist-native-darwin-x64": "0.20.0",
49
+ "ai-hist-native-linux-x64-gnu": "0.20.0",
50
+ "ai-hist-native-linux-arm64-gnu": "0.20.0",
51
+ "ai-hist-native-linux-x64-musl": "0.20.0",
52
+ "ai-hist-native-linux-arm64-musl": "0.20.0",
53
+ "ai-hist-native-win32-x64-msvc": "0.20.0"
54
54
  }
55
55
  }