@odla-ai/harness 0.9.4 → 0.10.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/dist/{chunk-XSUUHWNX.js → chunk-5MDYIJXC.js} +11 -3
- package/dist/chunk-5MDYIJXC.js.map +1 -0
- package/dist/code-runtime-cli.cjs +10 -2
- package/dist/code-runtime-cli.cjs.map +1 -1
- package/dist/code-runtime-cli.js +1 -1
- package/dist/node.cjs +10 -2
- package/dist/node.cjs.map +1 -1
- package/dist/node.d.cts +2 -1
- package/dist/node.d.ts +2 -1
- package/dist/node.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-XSUUHWNX.js.map +0 -1
package/dist/node.d.cts
CHANGED
|
@@ -158,7 +158,7 @@ interface CodeRuntimeClientOptions {
|
|
|
158
158
|
declare function createCodeRuntimeControlClient(options: CodeRuntimeClientOptions): CodeRuntimeAgentControlPlane;
|
|
159
159
|
|
|
160
160
|
/** Version of the outbound Code host heartbeat contract. */
|
|
161
|
-
declare const CODE_RUNTIME_PROTOCOL_VERSION:
|
|
161
|
+
declare const CODE_RUNTIME_PROTOCOL_VERSION: 2;
|
|
162
162
|
/** Frozen, secret-filtered view of the checkout from which a terminal connected. */
|
|
163
163
|
interface CodeLocalSourceDescriptor {
|
|
164
164
|
kind: "local_checkout";
|
|
@@ -683,6 +683,7 @@ declare class CodeRuntimeCheckpointManager {
|
|
|
683
683
|
|
|
684
684
|
interface CodeCommandMetadata {
|
|
685
685
|
role: "coding" | "review";
|
|
686
|
+
readOnly: boolean;
|
|
686
687
|
title: string;
|
|
687
688
|
prompt: string;
|
|
688
689
|
maxTokensPerInteraction: number;
|
package/dist/node.d.ts
CHANGED
|
@@ -158,7 +158,7 @@ interface CodeRuntimeClientOptions {
|
|
|
158
158
|
declare function createCodeRuntimeControlClient(options: CodeRuntimeClientOptions): CodeRuntimeAgentControlPlane;
|
|
159
159
|
|
|
160
160
|
/** Version of the outbound Code host heartbeat contract. */
|
|
161
|
-
declare const CODE_RUNTIME_PROTOCOL_VERSION:
|
|
161
|
+
declare const CODE_RUNTIME_PROTOCOL_VERSION: 2;
|
|
162
162
|
/** Frozen, secret-filtered view of the checkout from which a terminal connected. */
|
|
163
163
|
interface CodeLocalSourceDescriptor {
|
|
164
164
|
kind: "local_checkout";
|
|
@@ -683,6 +683,7 @@ declare class CodeRuntimeCheckpointManager {
|
|
|
683
683
|
|
|
684
684
|
interface CodeCommandMetadata {
|
|
685
685
|
role: "coding" | "review";
|
|
686
|
+
readOnly: boolean;
|
|
686
687
|
title: string;
|
|
687
688
|
prompt: string;
|
|
688
689
|
maxTokensPerInteraction: number;
|
package/dist/node.js
CHANGED
package/package.json
CHANGED