ai-hist-native 0.21.2 → 0.22.1

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
@@ -70,6 +70,11 @@ export interface NativeSessionEvent {
70
70
  text?: string
71
71
  model?: string
72
72
  tokenJson?: string
73
+ /**
74
+ * The upstream inference provider the harness named, when it names one
75
+ * (OpenCode's `providerID`). Null elsewhere rather than inferred.
76
+ */
77
+ provider?: string
73
78
  eventUid: string
74
79
  /**
75
80
  * Per-tool-result fidelity. Null on every row that is not a tool result,
@@ -95,6 +100,7 @@ export interface NativeSessionEvent {
95
100
  subagentSessionId?: string
96
101
  agentId?: string
97
102
  requestId?: string
103
+ /** Why the turn ended, as the harness reported it. */
98
104
  stopReason?: string
99
105
  agentVersion?: string
100
106
  isSidechain?: boolean
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-native-darwin-arm64",
3
- "version": "0.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
3
+ "version": "0.22.1",
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.21.2",
48
- "ai-hist-native-darwin-x64": "0.21.2",
49
- "ai-hist-native-linux-x64-gnu": "0.21.2",
50
- "ai-hist-native-linux-arm64-gnu": "0.21.2",
51
- "ai-hist-native-linux-x64-musl": "0.21.2",
52
- "ai-hist-native-linux-arm64-musl": "0.21.2",
53
- "ai-hist-native-win32-x64-msvc": "0.21.2"
47
+ "ai-hist-native-darwin-arm64": "0.22.1",
48
+ "ai-hist-native-darwin-x64": "0.22.1",
49
+ "ai-hist-native-linux-x64-gnu": "0.22.1",
50
+ "ai-hist-native-linux-arm64-gnu": "0.22.1",
51
+ "ai-hist-native-linux-x64-musl": "0.22.1",
52
+ "ai-hist-native-linux-arm64-musl": "0.22.1",
53
+ "ai-hist-native-win32-x64-msvc": "0.22.1"
54
54
  }
55
55
  }