summaryrefslogtreecommitdiff
path: root/makima/frontend/src/lib/api.ts
diff options
context:
space:
mode:
Diffstat (limited to 'makima/frontend/src/lib/api.ts')
-rw-r--r--makima/frontend/src/lib/api.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/makima/frontend/src/lib/api.ts b/makima/frontend/src/lib/api.ts
index 155c716..4923c1d 100644
--- a/makima/frontend/src/lib/api.ts
+++ b/makima/frontend/src/lib/api.ts
@@ -3133,8 +3133,8 @@ export interface Directive {
completionTaskId: string | null;
/** Whether the memory system is enabled for this directive */
memoryEnabled: boolean;
- /** Whether questions pause execution indefinitely until answered */
- reconcileMode: boolean;
+ /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) */
+ reconcileMode: string;
goalUpdatedAt: string;
startedAt: string | null;
version: number;
@@ -3178,8 +3178,8 @@ export interface DirectiveSummary {
completionTaskId: string | null;
/** Whether the memory system is enabled for this directive */
memoryEnabled: boolean;
- /** Whether questions pause execution indefinitely until answered */
- reconcileMode: boolean;
+ /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) */
+ reconcileMode: string;
version: number;
createdAt: string;
updatedAt: string;
@@ -3202,8 +3202,8 @@ export interface CreateDirectiveRequest {
baseBranch?: string;
/** Enable the memory system for this directive (default: false) */
memoryEnabled?: boolean;
- /** Whether questions pause execution indefinitely until answered (default: false) */
- reconcileMode?: boolean;
+ /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) (default: auto) */
+ reconcileMode?: string;
}
export interface UpdateDirectiveRequest {
@@ -3216,8 +3216,8 @@ export interface UpdateDirectiveRequest {
orchestratorTaskId?: string;
/** Enable or disable the memory system for this directive */
memoryEnabled?: boolean;
- /** Whether questions pause execution indefinitely until answered */
- reconcileMode?: boolean;
+ /** Reconcile mode: auto (timeout), semi-auto (pause), or manual (ask questions) */
+ reconcileMode?: string;
version?: number;
}