import type { IssueOriginKind } from "../constants.js"; export interface RoutineProjectSummary { id: string; name: string; description: string | null; status: string; goalId?: string | null; } export interface RoutineAgentSummary { id: string; name: string; role: string; title: string | null; urlKey?: string | null; } export interface RoutineIssueSummary { id: string; identifier: string | null; title: string; status: string; priority: string; updatedAt: Date; } export interface Routine { id: string; companyId: string; projectId: string; goalId: string | null; parentIssueId: string | null; title: string; description: string | null; assigneeAgentId: string; priority: string; status: string; concurrencyPolicy: string; catchUpPolicy: string; linkedWorkflowId?: string | null; createdByAgentId: string | null; createdByUserId: string | null; updatedByAgentId: string | null; updatedByUserId: string | null; lastTriggeredAt: Date | null; lastEnqueuedAt: Date | null; createdAt: Date; updatedAt: Date; } export interface RoutineTrigger { id: string; companyId: string; routineId: string; kind: string; label: string | null; enabled: boolean; cronExpression: string | null; timezone: string | null; nextRunAt: Date | null; lastFiredAt: Date | null; publicId: string | null; secretId: string | null; signingMode: string | null; replayWindowSec: number | null; lastRotatedAt: Date | null; lastResult: string | null; createdByAgentId: string | null; createdByUserId: string | null; updatedByAgentId: string | null; updatedByUserId: string | null; createdAt: Date; updatedAt: Date; } export interface RoutineRun { id: string; companyId: string; routineId: string; triggerId: string | null; source: string; status: string; triggeredAt: Date; idempotencyKey: string | null; triggerPayload: Record | null; linkedIssueId: string | null; coalescedIntoRunId: string | null; failureReason: string | null; completedAt: Date | null; createdAt: Date; updatedAt: Date; } export interface RoutineTriggerSecretMaterial { webhookUrl: string; webhookSecret: string; } export interface RoutineDetail extends Routine { project: RoutineProjectSummary | null; assignee: RoutineAgentSummary | null; parentIssue: RoutineIssueSummary | null; triggers: RoutineTrigger[]; recentRuns: RoutineRunSummary[]; activeIssue: RoutineIssueSummary | null; } export interface RoutineRunSummary extends RoutineRun { linkedIssue: RoutineIssueSummary | null; trigger: Pick | null; } export interface RoutineExecutionIssueOrigin { kind: Extract; routineId: string; runId: string | null; } export interface RoutineListItem extends Routine { triggers: Pick[]; lastRun: RoutineRunSummary | null; activeIssue: RoutineIssueSummary | null; } //# sourceMappingURL=routine.d.ts.map