@ricsam/r5d-api 0.0.35 → 0.0.36
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/cjs/package.json +1 -1
- package/dist/mjs/package.json +1 -1
- package/dist/types/index.d.ts +1 -24
- package/package.json +1 -1
package/dist/cjs/package.json
CHANGED
package/dist/mjs/package.json
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type ChatMode = "ask" | "plan" | "build" | "agent" | "explore" | "
|
|
1
|
+
export type ChatMode = "ask" | "plan" | "build" | "agent" | "explore" | "test" | "research" | "security_review" | "large_diff_remediation" | "merge_conflict_resolution";
|
|
2
2
|
export type ModelTier = "low" | "medium" | "high" | "max";
|
|
3
3
|
export type R5dctlAgentType = "research" | "debug" | "test";
|
|
4
4
|
export type R5dctlProject = {
|
|
@@ -167,21 +167,6 @@ export type R5dctlApiKey = {
|
|
|
167
167
|
lastUsedAt: string | null;
|
|
168
168
|
};
|
|
169
169
|
export type R5dctlProcessRunStatus = "starting" | "running" | "exited" | "cancelled" | "failed";
|
|
170
|
-
export type R5dctlProcessRepositoryOutcome = {
|
|
171
|
-
projectId: string;
|
|
172
|
-
projectPath?: string;
|
|
173
|
-
branchName: string;
|
|
174
|
-
observedDuringSynchronization: true;
|
|
175
|
-
status: "clean" | "published" | "no_change" | "blocked_large_diff" | "blocked_remediation" | "failed";
|
|
176
|
-
startCommitHash?: string;
|
|
177
|
-
publishedCommitHash?: string;
|
|
178
|
-
diffSizeBytes?: number;
|
|
179
|
-
principalSynchronizationState?: "pending" | "synced" | "failed";
|
|
180
|
-
fanOutState?: "scheduled" | "failed";
|
|
181
|
-
branchActionId?: string;
|
|
182
|
-
largeDiffIncidentId?: string;
|
|
183
|
-
error?: string;
|
|
184
|
-
};
|
|
185
170
|
export type R5dctlProcessRun = {
|
|
186
171
|
runId: string;
|
|
187
172
|
projectId: string;
|
|
@@ -194,14 +179,6 @@ export type R5dctlProcessRun = {
|
|
|
194
179
|
mode: "foreground" | "detached";
|
|
195
180
|
pid?: number;
|
|
196
181
|
processGroupId?: number;
|
|
197
|
-
startCommitHash: string;
|
|
198
|
-
launchWorkspaceActionId?: string;
|
|
199
|
-
terminalWorkspaceActionId?: string;
|
|
200
|
-
terminalSyncClaimedAt?: string;
|
|
201
|
-
repositoryOutcomes: R5dctlProcessRepositoryOutcome[];
|
|
202
|
-
syncState: "pending_process_exit" | "synced" | "blocked_large_diff" | "waiting_for_worker" | "stale_workspace";
|
|
203
|
-
publishedCommitHash?: string;
|
|
204
|
-
principalSynchronizationState?: "pending" | "synced" | "failed";
|
|
205
182
|
argv: string[];
|
|
206
183
|
command: string;
|
|
207
184
|
cwd?: string;
|