@netlify/agent-runner-cli 1.168.0 → 1.168.1-claude-compaction.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/bin-local.js +213 -224
- package/dist/bin.js +271 -275
- package/dist/index.d.ts +0 -6
- package/dist/index.js +225 -236
- package/dist/interactions-mcp-server.js +60 -13
- package/package.json +1 -1
- package/dist/connections-mcp-server.d.ts +0 -2
- package/dist/connections-mcp-server.js +0 -89
package/dist/index.d.ts
CHANGED
|
@@ -28,12 +28,6 @@ interface AnsweredInteraction {
|
|
|
28
28
|
questions: AgentQuestion[];
|
|
29
29
|
responses: Array<string | string[] | null>;
|
|
30
30
|
instruction?: string;
|
|
31
|
-
authorization?: ResolvedAuthorization;
|
|
32
|
-
}
|
|
33
|
-
interface ResolvedAuthorization {
|
|
34
|
-
service?: string;
|
|
35
|
-
/** False when the user skipped or dismissed it rather than completing it. */
|
|
36
|
-
granted: boolean;
|
|
37
31
|
}
|
|
38
32
|
type RunnerMode = (typeof SUPPORTED_MODES)[number];
|
|
39
33
|
type RunnerEffort = (typeof SUPPORTED_EFFORTS)[number];
|