@ai-sdk/harness 1.0.0-canary.4 → 1.0.0-canary.6

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,24 @@
1
1
  # @ai-sdk/harness
2
2
 
3
+ ## 1.0.0-canary.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [89ad56f]
8
+ - Updated dependencies [f9a496f]
9
+ - Updated dependencies [3295831]
10
+ - ai@7.0.0-canary.171
11
+
12
+ ## 1.0.0-canary.5
13
+
14
+ ### Patch Changes
15
+
16
+ - d77bed4: chore(harness): separate harness spec types (v1) from consumer-facing types
17
+ - Updated dependencies [bae5e2b]
18
+ - Updated dependencies [69d7128]
19
+ - ai@7.0.0-canary.170
20
+ - @ai-sdk/provider-utils@5.0.0-canary.47
21
+
3
22
  ## 1.0.0-canary.4
4
23
 
5
24
  ### Patch Changes
package/agent/index.ts CHANGED
@@ -3,6 +3,27 @@ export type {
3
3
  HarnessAgentSettings,
4
4
  HarnessAgentToolApprovalConfiguration,
5
5
  } from '../src/agent/harness-agent-settings';
6
+ export type {
7
+ HarnessAgentAdapter,
8
+ HarnessAgentAdapterSession,
9
+ HarnessAgentBuiltinTool,
10
+ HarnessAgentBuiltinToolName,
11
+ HarnessAgentBuiltinTools,
12
+ HarnessAgentBuiltinToolUseKind,
13
+ HarnessAgentContinueTurnOptions,
14
+ HarnessAgentContinueTurnState,
15
+ HarnessAgentLifecycleState,
16
+ HarnessAgentPendingToolApproval,
17
+ HarnessAgentPermissionMode,
18
+ HarnessAgentPrompt,
19
+ HarnessAgentPromptControl,
20
+ HarnessAgentPromptTurnOptions,
21
+ HarnessAgentResumeSessionState,
22
+ HarnessAgentSkill,
23
+ HarnessAgentStartOptions,
24
+ HarnessAgentStreamPart,
25
+ HarnessAgentToolSpec,
26
+ } from '../src/agent/harness-agent-types';
6
27
  export { HarnessAgentSession } from '../src/agent/harness-agent-session';
7
28
  export {
8
29
  collectHarnessAgentToolApprovalContinuations,
@@ -14,4 +35,13 @@ export type {
14
35
  HarnessDebugLevel,
15
36
  HarnessDiagnostic,
16
37
  HarnessDiagnosticConsumer,
17
- } from '../src/agent/harness-diagnostics';
38
+ } from '../src/agent/observability/types';
39
+ export { HarnessError } from '../src/errors/harness-error';
40
+ export { HarnessCapabilityUnsupportedError } from '../src/errors/harness-capability-unsupported-error';
41
+ export {
42
+ createFileReporter,
43
+ createTraceTreeReporter,
44
+ type FileReporter,
45
+ type FileReporterOptions,
46
+ type TraceTreeReporterOptions,
47
+ } from '../src/agent/observability';