@mastra/client-js 1.26.1-alpha.2 → 1.27.0-alpha.4
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/CHANGELOG.md +54 -0
- package/dist/client.d.ts +15 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +292 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +292 -1
- package/dist/index.js.map +1 -1
- package/dist/resources/harness.d.ts +439 -0
- package/dist/resources/harness.d.ts.map +1 -0
- package/dist/resources/index.d.ts +1 -0
- package/dist/resources/index.d.ts.map +1 -1
- package/dist/route-types.generated.d.ts +1549 -186
- package/dist/route-types.generated.d.ts.map +1 -1
- package/dist/types.d.ts +40 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
import type { ClientOptions } from '../types.js';
|
|
2
|
+
import { BaseResource } from './base.js';
|
|
3
|
+
/**
|
|
4
|
+
* Harness session client.
|
|
5
|
+
*
|
|
6
|
+
* Mirrors the harness HTTP routes served when a Harness is registered on a
|
|
7
|
+
* Mastra instance (`new Mastra({ harnesses })`):
|
|
8
|
+
*
|
|
9
|
+
* GET /harness listHarnesses
|
|
10
|
+
* POST /harness/:id/sessions session().create()
|
|
11
|
+
* GET /harness/:id/sessions/:resourceId/stream session().subscribe()
|
|
12
|
+
* POST /harness/:id/sessions/:resourceId/messages session().sendMessage()
|
|
13
|
+
* POST /harness/:id/sessions/:resourceId/abort session().abort()
|
|
14
|
+
* POST /harness/:id/sessions/:resourceId/tool-approval session().approveTool()
|
|
15
|
+
*/
|
|
16
|
+
export interface HarnessInfo {
|
|
17
|
+
id: string;
|
|
18
|
+
}
|
|
19
|
+
export interface HarnessMessageContent {
|
|
20
|
+
type: 'text' | 'thinking' | 'tool_call' | 'tool_result' | string;
|
|
21
|
+
/** Correlates a `tool_call` part with its `tool_result` part. */
|
|
22
|
+
id?: string;
|
|
23
|
+
text?: string;
|
|
24
|
+
thinking?: string;
|
|
25
|
+
name?: string;
|
|
26
|
+
args?: unknown;
|
|
27
|
+
result?: unknown;
|
|
28
|
+
isError?: boolean;
|
|
29
|
+
}
|
|
30
|
+
export interface HarnessMessage {
|
|
31
|
+
id: string;
|
|
32
|
+
role: 'user' | 'assistant' | 'system';
|
|
33
|
+
content: HarnessMessageContent[];
|
|
34
|
+
stopReason?: string;
|
|
35
|
+
errorMessage?: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Harness events the SDK types explicitly. This is a discriminated union, so
|
|
39
|
+
* narrowing on `event.type` gives you the right payload fields. This mirrors the
|
|
40
|
+
* subset of the harness event stream a web client typically renders.
|
|
41
|
+
*/
|
|
42
|
+
export type KnownHarnessEvent = {
|
|
43
|
+
type: 'agent_start';
|
|
44
|
+
} | {
|
|
45
|
+
type: 'agent_end';
|
|
46
|
+
reason?: 'complete' | 'aborted' | 'error' | 'suspended';
|
|
47
|
+
} | {
|
|
48
|
+
type: 'message_start';
|
|
49
|
+
message: HarnessMessage;
|
|
50
|
+
} | {
|
|
51
|
+
type: 'message_update';
|
|
52
|
+
message: HarnessMessage;
|
|
53
|
+
} | {
|
|
54
|
+
type: 'message_end';
|
|
55
|
+
message: HarnessMessage;
|
|
56
|
+
} | {
|
|
57
|
+
type: 'tool_input_start';
|
|
58
|
+
toolCallId: string;
|
|
59
|
+
toolName: string;
|
|
60
|
+
} | {
|
|
61
|
+
type: 'tool_input_delta';
|
|
62
|
+
toolCallId: string;
|
|
63
|
+
argsTextDelta: string;
|
|
64
|
+
toolName?: string;
|
|
65
|
+
} | {
|
|
66
|
+
type: 'tool_input_end';
|
|
67
|
+
toolCallId: string;
|
|
68
|
+
} | {
|
|
69
|
+
type: 'tool_start';
|
|
70
|
+
toolCallId: string;
|
|
71
|
+
toolName: string;
|
|
72
|
+
args: unknown;
|
|
73
|
+
} | {
|
|
74
|
+
type: 'tool_update';
|
|
75
|
+
toolCallId: string;
|
|
76
|
+
partialResult: unknown;
|
|
77
|
+
} | {
|
|
78
|
+
type: 'shell_output';
|
|
79
|
+
toolCallId: string;
|
|
80
|
+
output: string;
|
|
81
|
+
stream: 'stdout' | 'stderr';
|
|
82
|
+
} | {
|
|
83
|
+
type: 'tool_end';
|
|
84
|
+
toolCallId: string;
|
|
85
|
+
result?: unknown;
|
|
86
|
+
isError?: boolean;
|
|
87
|
+
} | {
|
|
88
|
+
type: 'tool_approval_required';
|
|
89
|
+
toolCallId: string;
|
|
90
|
+
toolName: string;
|
|
91
|
+
args: unknown;
|
|
92
|
+
} | {
|
|
93
|
+
type: 'tool_suspended';
|
|
94
|
+
toolCallId: string;
|
|
95
|
+
toolName: string;
|
|
96
|
+
args: unknown;
|
|
97
|
+
suspendPayload: unknown;
|
|
98
|
+
} | {
|
|
99
|
+
type: 'mode_changed';
|
|
100
|
+
modeId: string;
|
|
101
|
+
previousModeId: string;
|
|
102
|
+
} | {
|
|
103
|
+
type: 'model_changed';
|
|
104
|
+
modelId: string;
|
|
105
|
+
scope?: 'global' | 'thread' | 'mode';
|
|
106
|
+
modeId?: string;
|
|
107
|
+
} | {
|
|
108
|
+
type: 'thread_changed';
|
|
109
|
+
threadId: string;
|
|
110
|
+
previousThreadId: string | null;
|
|
111
|
+
} | {
|
|
112
|
+
type: 'thread_created';
|
|
113
|
+
thread: {
|
|
114
|
+
id: string;
|
|
115
|
+
title?: string;
|
|
116
|
+
};
|
|
117
|
+
} | {
|
|
118
|
+
type: 'thread_deleted';
|
|
119
|
+
threadId: string;
|
|
120
|
+
} | {
|
|
121
|
+
type: 'subagent_start';
|
|
122
|
+
toolCallId: string;
|
|
123
|
+
agentType: string;
|
|
124
|
+
task: string;
|
|
125
|
+
modelId: string;
|
|
126
|
+
} | {
|
|
127
|
+
type: 'subagent_end';
|
|
128
|
+
toolCallId: string;
|
|
129
|
+
} | {
|
|
130
|
+
type: 'task_updated';
|
|
131
|
+
tasks: HarnessTaskSnapshot[];
|
|
132
|
+
} | {
|
|
133
|
+
type: 'notification';
|
|
134
|
+
notificationId?: string;
|
|
135
|
+
message: string;
|
|
136
|
+
source?: string;
|
|
137
|
+
kind?: string;
|
|
138
|
+
priority?: string;
|
|
139
|
+
status?: string;
|
|
140
|
+
attributes?: Record<string, unknown>;
|
|
141
|
+
metadata?: Record<string, unknown>;
|
|
142
|
+
} | {
|
|
143
|
+
type: 'notification_summary';
|
|
144
|
+
message: string;
|
|
145
|
+
pending: number;
|
|
146
|
+
bySource: Record<string, number>;
|
|
147
|
+
byPriority: Record<string, number>;
|
|
148
|
+
notificationIds: string[];
|
|
149
|
+
} | {
|
|
150
|
+
type: 'usage_update';
|
|
151
|
+
usage: unknown;
|
|
152
|
+
} | {
|
|
153
|
+
type: 'goal_evaluation';
|
|
154
|
+
payload: {
|
|
155
|
+
objective: string;
|
|
156
|
+
iteration: number;
|
|
157
|
+
maxRuns: number;
|
|
158
|
+
passed: boolean;
|
|
159
|
+
status: 'active' | 'paused' | 'done';
|
|
160
|
+
reason?: string;
|
|
161
|
+
};
|
|
162
|
+
} | {
|
|
163
|
+
type: 'follow_up_queued';
|
|
164
|
+
count: number;
|
|
165
|
+
} | {
|
|
166
|
+
type: 'om_observation_start';
|
|
167
|
+
} | {
|
|
168
|
+
type: 'om_observation_end';
|
|
169
|
+
} | {
|
|
170
|
+
type: 'om_observation_failed';
|
|
171
|
+
error?: string;
|
|
172
|
+
} | {
|
|
173
|
+
type: 'om_reflection_start';
|
|
174
|
+
} | {
|
|
175
|
+
type: 'om_reflection_end';
|
|
176
|
+
} | {
|
|
177
|
+
type: 'om_reflection_failed';
|
|
178
|
+
error?: string;
|
|
179
|
+
} | {
|
|
180
|
+
type: 'om_buffering_start';
|
|
181
|
+
} | {
|
|
182
|
+
type: 'om_buffering_end';
|
|
183
|
+
} | {
|
|
184
|
+
type: 'om_buffering_failed';
|
|
185
|
+
error?: string;
|
|
186
|
+
} | {
|
|
187
|
+
type: 'om_model_changed';
|
|
188
|
+
role: string;
|
|
189
|
+
modelId: string;
|
|
190
|
+
} | {
|
|
191
|
+
type: 'om_activation';
|
|
192
|
+
enabled: boolean;
|
|
193
|
+
} | {
|
|
194
|
+
type: 'om_status';
|
|
195
|
+
status: string;
|
|
196
|
+
} | {
|
|
197
|
+
type: 'om_thread_title_updated';
|
|
198
|
+
title: string;
|
|
199
|
+
} | {
|
|
200
|
+
type: 'workspace_ready';
|
|
201
|
+
} | {
|
|
202
|
+
type: 'workspace_error';
|
|
203
|
+
error?: string;
|
|
204
|
+
} | {
|
|
205
|
+
type: 'workspace_status_changed';
|
|
206
|
+
status: string;
|
|
207
|
+
} | {
|
|
208
|
+
type: 'info';
|
|
209
|
+
message: string;
|
|
210
|
+
} | {
|
|
211
|
+
type: 'error';
|
|
212
|
+
error: {
|
|
213
|
+
message?: string;
|
|
214
|
+
} | string;
|
|
215
|
+
errorType?: string;
|
|
216
|
+
};
|
|
217
|
+
/** Any other harness event the SDK doesn't model explicitly. */
|
|
218
|
+
export interface OtherHarnessEvent {
|
|
219
|
+
type: string;
|
|
220
|
+
[key: string]: unknown;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* A harness event. Narrow on `type` to access known payloads; unknown event
|
|
224
|
+
* types fall through to {@link OtherHarnessEvent}.
|
|
225
|
+
*/
|
|
226
|
+
export type HarnessEvent = KnownHarnessEvent | OtherHarnessEvent;
|
|
227
|
+
export interface CreateHarnessSessionResponse {
|
|
228
|
+
harnessId: string;
|
|
229
|
+
resourceId: string;
|
|
230
|
+
threadId?: string;
|
|
231
|
+
}
|
|
232
|
+
export interface HarnessSessionState {
|
|
233
|
+
harnessId: string;
|
|
234
|
+
resourceId: string;
|
|
235
|
+
threadId?: string;
|
|
236
|
+
modeId: string;
|
|
237
|
+
modelId: string;
|
|
238
|
+
}
|
|
239
|
+
export interface HarnessModeInfo {
|
|
240
|
+
id: string;
|
|
241
|
+
name?: string;
|
|
242
|
+
}
|
|
243
|
+
export interface HarnessThreadInfo {
|
|
244
|
+
id: string;
|
|
245
|
+
title?: string;
|
|
246
|
+
resourceId?: string;
|
|
247
|
+
createdAt?: string;
|
|
248
|
+
updatedAt?: string;
|
|
249
|
+
}
|
|
250
|
+
export interface HarnessAvailableModel {
|
|
251
|
+
id: string;
|
|
252
|
+
provider: string;
|
|
253
|
+
modelName: string;
|
|
254
|
+
hasApiKey: boolean;
|
|
255
|
+
apiKeyEnvVar?: string;
|
|
256
|
+
useCount: number;
|
|
257
|
+
}
|
|
258
|
+
export interface HarnessWorkspaceStatus {
|
|
259
|
+
hasWorkspace: boolean;
|
|
260
|
+
isReady: boolean;
|
|
261
|
+
}
|
|
262
|
+
export interface HarnessGoalRecord {
|
|
263
|
+
id?: string;
|
|
264
|
+
objective: string;
|
|
265
|
+
status: 'active' | 'paused' | 'done';
|
|
266
|
+
runsUsed: number;
|
|
267
|
+
maxRuns?: number;
|
|
268
|
+
judgeModelId?: string;
|
|
269
|
+
startedAt: number;
|
|
270
|
+
updatedAt: number;
|
|
271
|
+
pausedReason?: string;
|
|
272
|
+
}
|
|
273
|
+
/** Permission policy for a tool or category. */
|
|
274
|
+
export type PermissionPolicy = 'allow' | 'ask' | 'deny';
|
|
275
|
+
/** Tool category for permission grouping. */
|
|
276
|
+
export type ToolCategory = 'read' | 'edit' | 'execute' | 'mcp' | 'other';
|
|
277
|
+
/** Permission rules for controlling tool approval behavior. */
|
|
278
|
+
export interface PermissionRules {
|
|
279
|
+
categories?: Partial<Record<ToolCategory, PermissionPolicy>>;
|
|
280
|
+
tools?: Partial<Record<string, PermissionPolicy>>;
|
|
281
|
+
}
|
|
282
|
+
/** Snapshot of a single task item from the task tools. */
|
|
283
|
+
export interface HarnessTaskSnapshot {
|
|
284
|
+
id: string;
|
|
285
|
+
content: string;
|
|
286
|
+
status: 'pending' | 'in_progress' | 'completed';
|
|
287
|
+
activeForm: string;
|
|
288
|
+
}
|
|
289
|
+
/** Input for sending a notification signal to a session. */
|
|
290
|
+
export interface SendNotificationInput {
|
|
291
|
+
source: string;
|
|
292
|
+
kind: string;
|
|
293
|
+
summary: string;
|
|
294
|
+
priority?: 'low' | 'medium' | 'high' | 'urgent';
|
|
295
|
+
payload?: unknown;
|
|
296
|
+
sourceId?: string;
|
|
297
|
+
dedupeKey?: string;
|
|
298
|
+
coalesceKey?: string;
|
|
299
|
+
attributes?: Record<string, string | number | boolean | null | undefined>;
|
|
300
|
+
metadata?: Record<string, unknown>;
|
|
301
|
+
}
|
|
302
|
+
/** Result of sending a notification signal. */
|
|
303
|
+
export interface SendNotificationResult {
|
|
304
|
+
accepted: boolean;
|
|
305
|
+
notificationId?: string;
|
|
306
|
+
/** Delivery decision: deliver, queue, defer, summarize, persist, or discard. */
|
|
307
|
+
decision?: string;
|
|
308
|
+
runId?: string;
|
|
309
|
+
}
|
|
310
|
+
/** Resume payload for the built-in `submit_plan` suspension. */
|
|
311
|
+
export interface PlanResume {
|
|
312
|
+
action: 'approved' | 'rejected';
|
|
313
|
+
feedback?: string;
|
|
314
|
+
}
|
|
315
|
+
export interface SubscribeHarnessSessionOptions {
|
|
316
|
+
/** Called for each harness event received over the stream. */
|
|
317
|
+
onEvent: (event: HarnessEvent) => void;
|
|
318
|
+
/** Called when the stream errors or ends unexpectedly. */
|
|
319
|
+
onError?: (error: unknown) => void;
|
|
320
|
+
}
|
|
321
|
+
export interface HarnessSubscription {
|
|
322
|
+
/** Stop reading and release the underlying stream. */
|
|
323
|
+
unsubscribe: () => void;
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* A session bound to a `resourceId` within one harness. Sessions are
|
|
327
|
+
* get-or-create on the server, so re-creating the same resourceId resumes the
|
|
328
|
+
* existing conversation rather than forking it.
|
|
329
|
+
*/
|
|
330
|
+
export declare class HarnessSession extends BaseResource {
|
|
331
|
+
private readonly harnessId;
|
|
332
|
+
private readonly resourceId;
|
|
333
|
+
constructor(options: ClientOptions, harnessId: string, resourceId: string);
|
|
334
|
+
private base;
|
|
335
|
+
/** Create or resume this session. */
|
|
336
|
+
create(): Promise<CreateHarnessSessionResponse>;
|
|
337
|
+
/**
|
|
338
|
+
* Subscribe to this session's event stream (SSE). The assistant's reply to a
|
|
339
|
+
* message arrives here as `message_*` events, not on the sendMessage call.
|
|
340
|
+
*/
|
|
341
|
+
subscribe(options: SubscribeHarnessSessionOptions): Promise<HarnessSubscription>;
|
|
342
|
+
/** Send a user message. The reply streams over `subscribe()`. */
|
|
343
|
+
sendMessage(message: string): Promise<void>;
|
|
344
|
+
/** Abort the in-flight run for this session. */
|
|
345
|
+
abort(): Promise<void>;
|
|
346
|
+
/** Approve or decline a pending tool call (`tool_approval_required`). */
|
|
347
|
+
approveTool(toolCallId: string, approved: boolean): Promise<void>;
|
|
348
|
+
/**
|
|
349
|
+
* Resume a suspended interactive tool (`tool_suspended`). The resume shape
|
|
350
|
+
* depends on the tool: a string (or string[]) for `ask_user`, "Yes"/"No" for
|
|
351
|
+
* `request_access`, and a {@link PlanResume} for `submit_plan`.
|
|
352
|
+
*/
|
|
353
|
+
respondToToolSuspension(toolCallId: string, resumeData: string | string[] | PlanResume): Promise<void>;
|
|
354
|
+
/** Inject a message into the in-flight run without starting a new turn. */
|
|
355
|
+
steer(message: string): Promise<void>;
|
|
356
|
+
/** Get the current mode, model, and thread (for initial UI hydration). */
|
|
357
|
+
state(): Promise<HarnessSessionState>;
|
|
358
|
+
/** Merge key-value pairs into the session state. Existing keys not in the payload are preserved. */
|
|
359
|
+
setState(updates: Record<string, unknown>): Promise<void>;
|
|
360
|
+
/** Switch the active mode (e.g. `build`, `plan`). */
|
|
361
|
+
switchMode(modeId: string): Promise<void>;
|
|
362
|
+
/** Switch the model. Defaults to thread scope. */
|
|
363
|
+
switchModel(modelId: string, options?: {
|
|
364
|
+
scope?: 'global' | 'thread';
|
|
365
|
+
modeId?: string;
|
|
366
|
+
}): Promise<void>;
|
|
367
|
+
/** List the threads for this session's resource, most-recently-updated first. Pass `limit` for just the newest N. */
|
|
368
|
+
listThreads(limit?: number): Promise<HarnessThreadInfo[]>;
|
|
369
|
+
/** Switch the session to an existing thread (rebinds stream + state). */
|
|
370
|
+
switchThread(threadId: string): Promise<void>;
|
|
371
|
+
/** Create a new thread (unbinds previous, binds the new one). */
|
|
372
|
+
createThread(title?: string): Promise<HarnessThreadInfo>;
|
|
373
|
+
/** Delete a thread. If it's the active thread the session unbinds. */
|
|
374
|
+
deleteThread(threadId: string): Promise<void>;
|
|
375
|
+
/** Rename a thread. */
|
|
376
|
+
renameThread(threadId: string, title: string): Promise<void>;
|
|
377
|
+
/** Clone a thread (and its messages). The session binds to the clone. */
|
|
378
|
+
cloneThread(options?: {
|
|
379
|
+
sourceThreadId?: string;
|
|
380
|
+
title?: string;
|
|
381
|
+
}): Promise<HarnessThreadInfo>;
|
|
382
|
+
/** List messages for a specific thread. */
|
|
383
|
+
listMessages(threadId: string, limit?: number): Promise<HarnessMessage[]>;
|
|
384
|
+
/**
|
|
385
|
+
* Queue a follow-up message. If the session is idle it sends immediately;
|
|
386
|
+
* if a run is active it queues for after completion.
|
|
387
|
+
*/
|
|
388
|
+
followUp(message: string): Promise<void>;
|
|
389
|
+
/** Get the observational memory record for this session's thread. */
|
|
390
|
+
getOMRecord(): Promise<unknown>;
|
|
391
|
+
/** Change the session's resource identity. */
|
|
392
|
+
setResourceId(newResourceId: string): Promise<void>;
|
|
393
|
+
/** Get known resource IDs for this session. */
|
|
394
|
+
getResourceIds(): Promise<string[]>;
|
|
395
|
+
/** Get the current goal for this session's thread. */
|
|
396
|
+
getGoal(): Promise<HarnessGoalRecord | undefined>;
|
|
397
|
+
/** Set a new goal objective. The agent's in-loop judge evaluates progress after each turn. */
|
|
398
|
+
setGoal(objective: string, options?: {
|
|
399
|
+
judgeModelId?: string;
|
|
400
|
+
maxRuns?: number;
|
|
401
|
+
}): Promise<HarnessGoalRecord | undefined>;
|
|
402
|
+
/** Update goal options (judge model, max runs, status). */
|
|
403
|
+
updateGoal(options: {
|
|
404
|
+
judgeModelId?: string;
|
|
405
|
+
maxRuns?: number;
|
|
406
|
+
status?: 'active' | 'paused' | 'done';
|
|
407
|
+
}): Promise<HarnessGoalRecord | undefined>;
|
|
408
|
+
/** Clear the current goal. */
|
|
409
|
+
clearGoal(): Promise<void>;
|
|
410
|
+
/** Get the current permission rules (per-category and per-tool policies). */
|
|
411
|
+
getPermissions(): Promise<PermissionRules>;
|
|
412
|
+
/** Set the approval policy for a tool category. */
|
|
413
|
+
setPermissionForCategory(category: ToolCategory, policy: PermissionPolicy): Promise<void>;
|
|
414
|
+
/** Set the approval policy for a specific tool. */
|
|
415
|
+
setPermissionForTool(toolName: string, policy: PermissionPolicy): Promise<void>;
|
|
416
|
+
/**
|
|
417
|
+
* Send a notification signal to this session. The agent's delivery policy
|
|
418
|
+
* determines whether the notification wakes an idle thread, is summarised,
|
|
419
|
+
* or is persisted for later.
|
|
420
|
+
*/
|
|
421
|
+
sendNotification(input: SendNotificationInput): Promise<SendNotificationResult>;
|
|
422
|
+
}
|
|
423
|
+
/** A harness hosted on the connected Mastra instance. */
|
|
424
|
+
export declare class Harness extends BaseResource {
|
|
425
|
+
private readonly harnessId;
|
|
426
|
+
constructor(options: ClientOptions, harnessId: string);
|
|
427
|
+
private basePath;
|
|
428
|
+
/** List the modes configured on this harness (e.g. build, plan). */
|
|
429
|
+
listModes(): Promise<HarnessModeInfo[]>;
|
|
430
|
+
/** List available models on this harness (with auth status and use counts). */
|
|
431
|
+
listModels(): Promise<HarnessAvailableModel[]>;
|
|
432
|
+
/** Get workspace status for this harness. */
|
|
433
|
+
workspaceStatus(): Promise<HarnessWorkspaceStatus>;
|
|
434
|
+
/** Scope to a session bound to `resourceId` (e.g. a user or conversation id). */
|
|
435
|
+
session(resourceId: string): HarnessSession;
|
|
436
|
+
}
|
|
437
|
+
/** Pull the plain text out of an assistant message's content parts. */
|
|
438
|
+
export declare function harnessMessageText(message: HarnessMessage): string;
|
|
439
|
+
//# sourceMappingURL=harness.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"harness.d.ts","sourceRoot":"","sources":["../../src/resources/harness.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC"}
|