aipanel-cli 0.1.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/LICENSE +21 -0
- package/README.md +166 -0
- package/dist/bin/aipanel.d.ts +2 -0
- package/dist/bin/aipanel.js +5 -0
- package/dist/bin/aipanel.js.map +1 -0
- package/dist/src/app/AipanelApp.d.ts +17 -0
- package/dist/src/app/AipanelApp.js +53 -0
- package/dist/src/app/AipanelApp.js.map +1 -0
- package/dist/src/app/CommandRouter.d.ts +9 -0
- package/dist/src/app/CommandRouter.js +154 -0
- package/dist/src/app/CommandRouter.js.map +1 -0
- package/dist/src/app/ProfileLoader.d.ts +10 -0
- package/dist/src/app/ProfileLoader.js +51 -0
- package/dist/src/app/ProfileLoader.js.map +1 -0
- package/dist/src/app/WorkflowSelector.d.ts +4 -0
- package/dist/src/app/WorkflowSelector.js +6 -0
- package/dist/src/app/WorkflowSelector.js.map +1 -0
- package/dist/src/app/index.d.ts +4 -0
- package/dist/src/app/index.js +5 -0
- package/dist/src/app/index.js.map +1 -0
- package/dist/src/app/types.d.ts +36 -0
- package/dist/src/app/types.js +2 -0
- package/dist/src/app/types.js.map +1 -0
- package/dist/src/artifact/ArtifactRepository.d.ts +33 -0
- package/dist/src/artifact/ArtifactRepository.js +91 -0
- package/dist/src/artifact/ArtifactRepository.js.map +1 -0
- package/dist/src/artifact/index.d.ts +1 -0
- package/dist/src/artifact/index.js +2 -0
- package/dist/src/artifact/index.js.map +1 -0
- package/dist/src/cli/aipanel.d.ts +2 -0
- package/dist/src/cli/aipanel.js +32 -0
- package/dist/src/cli/aipanel.js.map +1 -0
- package/dist/src/compare/ComparisonEngine.d.ts +5 -0
- package/dist/src/compare/ComparisonEngine.js +19 -0
- package/dist/src/compare/ComparisonEngine.js.map +1 -0
- package/dist/src/compare/ResponseNormalizer.d.ts +36 -0
- package/dist/src/compare/ResponseNormalizer.js +43 -0
- package/dist/src/compare/ResponseNormalizer.js.map +1 -0
- package/dist/src/compare/index.d.ts +3 -0
- package/dist/src/compare/index.js +3 -0
- package/dist/src/compare/index.js.map +1 -0
- package/dist/src/context/ContextCollector.d.ts +43 -0
- package/dist/src/context/ContextCollector.js +81 -0
- package/dist/src/context/ContextCollector.js.map +1 -0
- package/dist/src/context/index.d.ts +2 -0
- package/dist/src/context/index.js +2 -0
- package/dist/src/context/index.js.map +1 -0
- package/dist/src/domain/artifact.d.ts +36 -0
- package/dist/src/domain/artifact.js +62 -0
- package/dist/src/domain/artifact.js.map +1 -0
- package/dist/src/domain/base.d.ts +10 -0
- package/dist/src/domain/base.js +23 -0
- package/dist/src/domain/base.js.map +1 -0
- package/dist/src/domain/index.d.ts +5 -0
- package/dist/src/domain/index.js +6 -0
- package/dist/src/domain/index.js.map +1 -0
- package/dist/src/domain/run.d.ts +260 -0
- package/dist/src/domain/run.js +456 -0
- package/dist/src/domain/run.js.map +1 -0
- package/dist/src/domain/session.d.ts +72 -0
- package/dist/src/domain/session.js +131 -0
- package/dist/src/domain/session.js.map +1 -0
- package/dist/src/domain/value-objects.d.ts +120 -0
- package/dist/src/domain/value-objects.js +191 -0
- package/dist/src/domain/value-objects.js.map +1 -0
- package/dist/src/orchestrator/PlanBuilder.d.ts +6 -0
- package/dist/src/orchestrator/PlanBuilder.js +59 -0
- package/dist/src/orchestrator/PlanBuilder.js.map +1 -0
- package/dist/src/orchestrator/ResultMerger.d.ts +10 -0
- package/dist/src/orchestrator/ResultMerger.js +19 -0
- package/dist/src/orchestrator/ResultMerger.js.map +1 -0
- package/dist/src/orchestrator/TaskExecutor.d.ts +20 -0
- package/dist/src/orchestrator/TaskExecutor.js +81 -0
- package/dist/src/orchestrator/TaskExecutor.js.map +1 -0
- package/dist/src/orchestrator/TaskScheduler.d.ts +4 -0
- package/dist/src/orchestrator/TaskScheduler.js +19 -0
- package/dist/src/orchestrator/TaskScheduler.js.map +1 -0
- package/dist/src/orchestrator/ValidationRunner.d.ts +4 -0
- package/dist/src/orchestrator/ValidationRunner.js +22 -0
- package/dist/src/orchestrator/ValidationRunner.js.map +1 -0
- package/dist/src/orchestrator/index.d.ts +5 -0
- package/dist/src/orchestrator/index.js +6 -0
- package/dist/src/orchestrator/index.js.map +1 -0
- package/dist/src/output/ResultRenderer.d.ts +13 -0
- package/dist/src/output/ResultRenderer.js +49 -0
- package/dist/src/output/ResultRenderer.js.map +1 -0
- package/dist/src/output/index.d.ts +1 -0
- package/dist/src/output/index.js +2 -0
- package/dist/src/output/index.js.map +1 -0
- package/dist/src/providers/ClaudeCodeAdapter.d.ts +5 -0
- package/dist/src/providers/ClaudeCodeAdapter.js +95 -0
- package/dist/src/providers/ClaudeCodeAdapter.js.map +1 -0
- package/dist/src/providers/ProviderAdapter.d.ts +35 -0
- package/dist/src/providers/ProviderAdapter.js +2 -0
- package/dist/src/providers/ProviderAdapter.js.map +1 -0
- package/dist/src/providers/ProviderRegistry.d.ts +12 -0
- package/dist/src/providers/ProviderRegistry.js +23 -0
- package/dist/src/providers/ProviderRegistry.js.map +1 -0
- package/dist/src/providers/index.d.ts +3 -0
- package/dist/src/providers/index.js +4 -0
- package/dist/src/providers/index.js.map +1 -0
- package/dist/src/run/RunCoordinator.d.ts +33 -0
- package/dist/src/run/RunCoordinator.js +101 -0
- package/dist/src/run/RunCoordinator.js.map +1 -0
- package/dist/src/run/RunRepository.d.ts +14 -0
- package/dist/src/run/RunRepository.js +55 -0
- package/dist/src/run/RunRepository.js.map +1 -0
- package/dist/src/run/index.d.ts +2 -0
- package/dist/src/run/index.js +3 -0
- package/dist/src/run/index.js.map +1 -0
- package/dist/src/session/SessionManager.d.ts +26 -0
- package/dist/src/session/SessionManager.js +60 -0
- package/dist/src/session/SessionManager.js.map +1 -0
- package/dist/src/session/SessionRepository.d.ts +14 -0
- package/dist/src/session/SessionRepository.js +55 -0
- package/dist/src/session/SessionRepository.js.map +1 -0
- package/dist/src/session/index.d.ts +2 -0
- package/dist/src/session/index.js +3 -0
- package/dist/src/session/index.js.map +1 -0
- package/dist/src/shared/clock.d.ts +4 -0
- package/dist/src/shared/clock.js +9 -0
- package/dist/src/shared/clock.js.map +1 -0
- package/dist/src/shared/contracts.d.ts +254 -0
- package/dist/src/shared/contracts.js +2 -0
- package/dist/src/shared/contracts.js.map +1 -0
- package/dist/src/shared/errors.d.ts +9 -0
- package/dist/src/shared/errors.js +11 -0
- package/dist/src/shared/errors.js.map +1 -0
- package/dist/src/shared/file-system.d.ts +8 -0
- package/dist/src/shared/file-system.js +36 -0
- package/dist/src/shared/file-system.js.map +1 -0
- package/dist/src/shared/ids.d.ts +1 -0
- package/dist/src/shared/ids.js +6 -0
- package/dist/src/shared/ids.js.map +1 -0
- package/dist/src/usecases/CompareUseCase.d.ts +6 -0
- package/dist/src/usecases/CompareUseCase.js +9 -0
- package/dist/src/usecases/CompareUseCase.js.map +1 -0
- package/dist/src/usecases/ConsultUseCase.d.ts +48 -0
- package/dist/src/usecases/ConsultUseCase.js +187 -0
- package/dist/src/usecases/ConsultUseCase.js.map +1 -0
- package/dist/src/usecases/DebugUseCase.d.ts +48 -0
- package/dist/src/usecases/DebugUseCase.js +191 -0
- package/dist/src/usecases/DebugUseCase.js.map +1 -0
- package/dist/src/usecases/FollowupUseCase.d.ts +6 -0
- package/dist/src/usecases/FollowupUseCase.js +14 -0
- package/dist/src/usecases/FollowupUseCase.js.map +1 -0
- package/dist/src/usecases/ListProvidersUseCase.d.ts +9 -0
- package/dist/src/usecases/ListProvidersUseCase.js +13 -0
- package/dist/src/usecases/ListProvidersUseCase.js.map +1 -0
- package/dist/src/usecases/helpers.d.ts +9 -0
- package/dist/src/usecases/helpers.js +31 -0
- package/dist/src/usecases/helpers.js.map +1 -0
- package/dist/src/usecases/index.d.ts +5 -0
- package/dist/src/usecases/index.js +6 -0
- package/dist/src/usecases/index.js.map +1 -0
- package/package.json +57 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
import { type Clock, type IdGenerator, type IsoDateString } from "./base.js";
|
|
2
|
+
import { Citation, ConfidenceScore, DiffRef, ExternalRef, FileRef, LogRef, TaskDependency, Usage, type CitationProps, type ConfidenceScoreProps, type DiffRefProps, type ExternalRefProps, type FileRefProps, type LogRefProps, type TaskDependencyProps, type UsageProps } from "./value-objects.js";
|
|
3
|
+
export type RunStatus = 'created' | 'planned' | 'running' | 'merged' | 'validated' | 'completed' | 'failed' | 'partial';
|
|
4
|
+
export type TaskStatus = 'created' | 'queued' | 'running' | 'completed' | 'failed' | 'skipped' | 'partial';
|
|
5
|
+
export interface RunTaskProps {
|
|
6
|
+
taskId: string;
|
|
7
|
+
runId: string;
|
|
8
|
+
taskKind: string;
|
|
9
|
+
role: string;
|
|
10
|
+
provider?: string | null;
|
|
11
|
+
dependsOn?: TaskDependencyProps[];
|
|
12
|
+
status: TaskStatus;
|
|
13
|
+
input?: Record<string, unknown>;
|
|
14
|
+
createdAt: IsoDateString;
|
|
15
|
+
updatedAt: IsoDateString;
|
|
16
|
+
}
|
|
17
|
+
export declare class RunTask {
|
|
18
|
+
readonly taskId: string;
|
|
19
|
+
readonly runId: string;
|
|
20
|
+
readonly taskKind: string;
|
|
21
|
+
readonly role: string;
|
|
22
|
+
readonly provider: string | null;
|
|
23
|
+
readonly dependsOn: TaskDependency[];
|
|
24
|
+
status: TaskStatus;
|
|
25
|
+
input: Record<string, unknown>;
|
|
26
|
+
readonly createdAt: IsoDateString;
|
|
27
|
+
updatedAt: IsoDateString;
|
|
28
|
+
constructor(props: RunTaskProps);
|
|
29
|
+
static create(params: Omit<RunTaskProps, 'taskId' | 'createdAt' | 'updatedAt'> & {
|
|
30
|
+
taskId?: string;
|
|
31
|
+
createdAt?: IsoDateString;
|
|
32
|
+
updatedAt?: IsoDateString;
|
|
33
|
+
clock?: Clock;
|
|
34
|
+
idGenerator?: IdGenerator;
|
|
35
|
+
}): RunTask;
|
|
36
|
+
static fromJSON(input: RunTaskProps): RunTask;
|
|
37
|
+
transition(status: TaskStatus, updatedAt?: IsoDateString): void;
|
|
38
|
+
toJSON(): RunTaskProps;
|
|
39
|
+
}
|
|
40
|
+
export interface TaskResultProps {
|
|
41
|
+
resultId: string;
|
|
42
|
+
taskId: string;
|
|
43
|
+
summary: string;
|
|
44
|
+
findings?: string[];
|
|
45
|
+
citations?: CitationProps[];
|
|
46
|
+
confidence?: ConfidenceScoreProps | null;
|
|
47
|
+
sourceArtifactIds?: string[];
|
|
48
|
+
createdAt: IsoDateString;
|
|
49
|
+
}
|
|
50
|
+
export declare class TaskResult {
|
|
51
|
+
readonly resultId: string;
|
|
52
|
+
readonly taskId: string;
|
|
53
|
+
readonly summary: string;
|
|
54
|
+
readonly findings: string[];
|
|
55
|
+
readonly citations: Citation[];
|
|
56
|
+
readonly confidence: ConfidenceScore | null;
|
|
57
|
+
readonly sourceArtifactIds: string[];
|
|
58
|
+
readonly createdAt: IsoDateString;
|
|
59
|
+
constructor(props: TaskResultProps);
|
|
60
|
+
static create(params: Omit<TaskResultProps, 'resultId' | 'createdAt'> & {
|
|
61
|
+
resultId?: string;
|
|
62
|
+
createdAt?: IsoDateString;
|
|
63
|
+
clock?: Clock;
|
|
64
|
+
idGenerator?: IdGenerator;
|
|
65
|
+
}): TaskResult;
|
|
66
|
+
static fromJSON(input: TaskResultProps): TaskResult;
|
|
67
|
+
toJSON(): TaskResultProps;
|
|
68
|
+
}
|
|
69
|
+
export interface ContextBundleProps {
|
|
70
|
+
contextId: string;
|
|
71
|
+
runId: string;
|
|
72
|
+
summary: string;
|
|
73
|
+
files?: FileRefProps[];
|
|
74
|
+
diffs?: DiffRefProps[];
|
|
75
|
+
logs?: LogRefProps[];
|
|
76
|
+
metadata?: Record<string, unknown>;
|
|
77
|
+
createdAt: IsoDateString;
|
|
78
|
+
}
|
|
79
|
+
export declare class ContextBundle {
|
|
80
|
+
readonly contextId: string;
|
|
81
|
+
readonly runId: string;
|
|
82
|
+
readonly summary: string;
|
|
83
|
+
readonly files: FileRef[];
|
|
84
|
+
readonly diffs: DiffRef[];
|
|
85
|
+
readonly logs: LogRef[];
|
|
86
|
+
readonly metadata: Record<string, unknown>;
|
|
87
|
+
readonly createdAt: IsoDateString;
|
|
88
|
+
constructor(props: ContextBundleProps);
|
|
89
|
+
static create(params: Omit<ContextBundleProps, 'contextId' | 'createdAt'> & {
|
|
90
|
+
contextId?: string;
|
|
91
|
+
createdAt?: IsoDateString;
|
|
92
|
+
clock?: Clock;
|
|
93
|
+
idGenerator?: IdGenerator;
|
|
94
|
+
}): ContextBundle;
|
|
95
|
+
static fromJSON(input: ContextBundleProps): ContextBundle;
|
|
96
|
+
toJSON(): ContextBundleProps;
|
|
97
|
+
}
|
|
98
|
+
export interface ProviderResponseProps {
|
|
99
|
+
responseId: string;
|
|
100
|
+
taskId: string;
|
|
101
|
+
provider: string;
|
|
102
|
+
rawTextRef?: string | null;
|
|
103
|
+
rawJsonRef?: string | null;
|
|
104
|
+
usage?: UsageProps | null;
|
|
105
|
+
latencyMs?: number | null;
|
|
106
|
+
externalRefs?: ExternalRefProps[];
|
|
107
|
+
createdAt: IsoDateString;
|
|
108
|
+
}
|
|
109
|
+
export declare class ProviderResponse {
|
|
110
|
+
readonly responseId: string;
|
|
111
|
+
readonly taskId: string;
|
|
112
|
+
readonly provider: string;
|
|
113
|
+
readonly rawTextRef: string | null;
|
|
114
|
+
readonly rawJsonRef: string | null;
|
|
115
|
+
readonly usage: Usage | null;
|
|
116
|
+
readonly latencyMs: number | null;
|
|
117
|
+
readonly externalRefs: ExternalRef[];
|
|
118
|
+
readonly createdAt: IsoDateString;
|
|
119
|
+
constructor(props: ProviderResponseProps);
|
|
120
|
+
static create(params: Omit<ProviderResponseProps, 'responseId' | 'createdAt'> & {
|
|
121
|
+
responseId?: string;
|
|
122
|
+
createdAt?: IsoDateString;
|
|
123
|
+
clock?: Clock;
|
|
124
|
+
idGenerator?: IdGenerator;
|
|
125
|
+
}): ProviderResponse;
|
|
126
|
+
static fromJSON(input: ProviderResponseProps): ProviderResponse;
|
|
127
|
+
toJSON(): ProviderResponseProps;
|
|
128
|
+
}
|
|
129
|
+
export interface NormalizedResponseProps {
|
|
130
|
+
normalizedResponseId: string;
|
|
131
|
+
taskId: string;
|
|
132
|
+
provider: string;
|
|
133
|
+
summary: string;
|
|
134
|
+
findings?: string[];
|
|
135
|
+
suggestions?: string[];
|
|
136
|
+
citations?: CitationProps[];
|
|
137
|
+
confidence?: ConfidenceScoreProps | null;
|
|
138
|
+
createdAt: IsoDateString;
|
|
139
|
+
}
|
|
140
|
+
export declare class NormalizedResponse {
|
|
141
|
+
readonly normalizedResponseId: string;
|
|
142
|
+
readonly taskId: string;
|
|
143
|
+
readonly provider: string;
|
|
144
|
+
readonly summary: string;
|
|
145
|
+
readonly findings: string[];
|
|
146
|
+
readonly suggestions: string[];
|
|
147
|
+
readonly citations: Citation[];
|
|
148
|
+
readonly confidence: ConfidenceScore | null;
|
|
149
|
+
readonly createdAt: IsoDateString;
|
|
150
|
+
constructor(props: NormalizedResponseProps);
|
|
151
|
+
static create(params: Omit<NormalizedResponseProps, 'normalizedResponseId' | 'createdAt'> & {
|
|
152
|
+
normalizedResponseId?: string;
|
|
153
|
+
createdAt?: IsoDateString;
|
|
154
|
+
clock?: Clock;
|
|
155
|
+
idGenerator?: IdGenerator;
|
|
156
|
+
}): NormalizedResponse;
|
|
157
|
+
static fromJSON(input: NormalizedResponseProps): NormalizedResponse;
|
|
158
|
+
toJSON(): NormalizedResponseProps;
|
|
159
|
+
}
|
|
160
|
+
export interface ComparisonReportProps {
|
|
161
|
+
reportId: string;
|
|
162
|
+
runId: string;
|
|
163
|
+
topic: string;
|
|
164
|
+
responseIds?: string[];
|
|
165
|
+
agreements?: string[];
|
|
166
|
+
differences?: string[];
|
|
167
|
+
recommendation?: string | null;
|
|
168
|
+
createdAt: IsoDateString;
|
|
169
|
+
}
|
|
170
|
+
export declare class ComparisonReport {
|
|
171
|
+
readonly reportId: string;
|
|
172
|
+
readonly runId: string;
|
|
173
|
+
readonly topic: string;
|
|
174
|
+
readonly responseIds: string[];
|
|
175
|
+
readonly agreements: string[];
|
|
176
|
+
readonly differences: string[];
|
|
177
|
+
readonly recommendation: string | null;
|
|
178
|
+
readonly createdAt: IsoDateString;
|
|
179
|
+
constructor(props: ComparisonReportProps);
|
|
180
|
+
static create(params: Omit<ComparisonReportProps, 'reportId' | 'createdAt'> & {
|
|
181
|
+
reportId?: string;
|
|
182
|
+
createdAt?: IsoDateString;
|
|
183
|
+
clock?: Clock;
|
|
184
|
+
idGenerator?: IdGenerator;
|
|
185
|
+
}): ComparisonReport;
|
|
186
|
+
static fromJSON(input: ComparisonReportProps): ComparisonReport;
|
|
187
|
+
toJSON(): ComparisonReportProps;
|
|
188
|
+
}
|
|
189
|
+
export interface RunProps {
|
|
190
|
+
schemaVersion?: number;
|
|
191
|
+
runId: string;
|
|
192
|
+
sessionId?: string | null;
|
|
193
|
+
command: string;
|
|
194
|
+
mode: string;
|
|
195
|
+
status: RunStatus;
|
|
196
|
+
planVersion: string;
|
|
197
|
+
createdAt: IsoDateString;
|
|
198
|
+
updatedAt: IsoDateString;
|
|
199
|
+
plan?: Record<string, unknown> | null;
|
|
200
|
+
finalSummary?: string | null;
|
|
201
|
+
validationStatus?: string | null;
|
|
202
|
+
errorMessage?: string | null;
|
|
203
|
+
tasks?: RunTaskProps[];
|
|
204
|
+
taskResults?: TaskResultProps[];
|
|
205
|
+
contextBundles?: ContextBundleProps[];
|
|
206
|
+
providerResponses?: ProviderResponseProps[];
|
|
207
|
+
normalizedResponses?: NormalizedResponseProps[];
|
|
208
|
+
comparisonReports?: ComparisonReportProps[];
|
|
209
|
+
}
|
|
210
|
+
export declare class Run {
|
|
211
|
+
readonly schemaVersion: number;
|
|
212
|
+
readonly runId: string;
|
|
213
|
+
readonly sessionId: string | null;
|
|
214
|
+
readonly command: string;
|
|
215
|
+
readonly mode: string;
|
|
216
|
+
status: RunStatus;
|
|
217
|
+
readonly planVersion: string;
|
|
218
|
+
readonly createdAt: IsoDateString;
|
|
219
|
+
updatedAt: IsoDateString;
|
|
220
|
+
plan: Record<string, unknown> | null;
|
|
221
|
+
finalSummary: string | null;
|
|
222
|
+
validationStatus: string | null;
|
|
223
|
+
errorMessage: string | null;
|
|
224
|
+
tasks: RunTask[];
|
|
225
|
+
taskResults: TaskResult[];
|
|
226
|
+
contextBundles: ContextBundle[];
|
|
227
|
+
providerResponses: ProviderResponse[];
|
|
228
|
+
normalizedResponses: NormalizedResponse[];
|
|
229
|
+
comparisonReports: ComparisonReport[];
|
|
230
|
+
constructor(props: RunProps);
|
|
231
|
+
static create(params: {
|
|
232
|
+
runId?: string;
|
|
233
|
+
sessionId?: string | null;
|
|
234
|
+
command: string;
|
|
235
|
+
mode?: string;
|
|
236
|
+
status?: RunStatus;
|
|
237
|
+
planVersion?: string;
|
|
238
|
+
plan?: Record<string, unknown> | null;
|
|
239
|
+
createdAt?: IsoDateString;
|
|
240
|
+
updatedAt?: IsoDateString;
|
|
241
|
+
clock?: Clock;
|
|
242
|
+
idGenerator?: IdGenerator;
|
|
243
|
+
}): Run;
|
|
244
|
+
static fromJSON(input: RunProps): Run;
|
|
245
|
+
setPlan(plan: Record<string, unknown> | null, updatedAt?: IsoDateString): void;
|
|
246
|
+
transition(status: RunStatus, updatedAt?: IsoDateString): void;
|
|
247
|
+
addTask(task: RunTask, updatedAt?: IsoDateString): void;
|
|
248
|
+
addTaskResult(taskResult: TaskResult, updatedAt?: IsoDateString): void;
|
|
249
|
+
addContextBundle(contextBundle: ContextBundle, updatedAt?: IsoDateString): void;
|
|
250
|
+
addProviderResponse(providerResponse: ProviderResponse, updatedAt?: IsoDateString): void;
|
|
251
|
+
addNormalizedResponse(normalizedResponse: NormalizedResponse, updatedAt?: IsoDateString): void;
|
|
252
|
+
addComparisonReport(comparisonReport: ComparisonReport, updatedAt?: IsoDateString): void;
|
|
253
|
+
complete(params?: {
|
|
254
|
+
finalSummary?: string | null;
|
|
255
|
+
validationStatus?: string | null;
|
|
256
|
+
updatedAt?: IsoDateString;
|
|
257
|
+
}): void;
|
|
258
|
+
fail(message: string, status?: RunStatus, updatedAt?: IsoDateString): void;
|
|
259
|
+
toJSON(): RunProps;
|
|
260
|
+
}
|