@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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "type": "commonjs"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "type": "module"
5
5
  }
@@ -1,4 +1,4 @@
1
- export type ChatMode = "ask" | "plan" | "build" | "agent" | "explore" | "review" | "test" | "research" | "security_review" | "large_diff_remediation" | "merge_conflict_resolution";
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.cjs",
6
6
  "module": "./dist/mjs/index.mjs",