@ai-sdk/harness-codex 1.0.30 → 1.0.33
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 +24 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @ai-sdk/harness-codex
|
|
2
2
|
|
|
3
|
+
## 1.0.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @ai-sdk/harness@1.0.31
|
|
8
|
+
|
|
9
|
+
## 1.0.32
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [4be62c1]
|
|
14
|
+
- Updated dependencies [7805e4a]
|
|
15
|
+
- Updated dependencies [cd12954]
|
|
16
|
+
- @ai-sdk/provider-utils@5.0.9
|
|
17
|
+
- @ai-sdk/harness@1.0.30
|
|
18
|
+
|
|
19
|
+
## 1.0.31
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [e193290]
|
|
24
|
+
- @ai-sdk/provider-utils@5.0.8
|
|
25
|
+
- @ai-sdk/harness@1.0.29
|
|
26
|
+
|
|
3
27
|
## 1.0.30
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -124,7 +124,7 @@ var inboundMessageSchema = z.discriminatedUnion("type", [
|
|
|
124
124
|
var CLI_SHIM_FILENAME = "harness-tool.mjs";
|
|
125
125
|
|
|
126
126
|
// src/version.ts
|
|
127
|
-
var VERSION = true ? "1.0.
|
|
127
|
+
var VERSION = true ? "1.0.33" : "0.0.0-test";
|
|
128
128
|
|
|
129
129
|
// src/codex-harness.ts
|
|
130
130
|
var DEFAULT_CODEX_MODEL = "gpt-5.3-codex";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/harness-codex",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.33",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"ws": "^8.21.0",
|
|
30
|
-
"@ai-sdk/harness": "1.0.
|
|
31
|
-
"@ai-sdk/provider-utils": "5.0.
|
|
30
|
+
"@ai-sdk/harness": "1.0.31",
|
|
31
|
+
"@ai-sdk/provider-utils": "5.0.9"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"zod": "^3.25.76 || ^4.1.8"
|