@frumu/tandem-client 0.3.22 → 0.3.24

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,580 +1,4 @@
1
- import { z } from 'zod';
2
-
3
- type JsonValue = string | number | boolean | null | JsonValue[] | {
4
- [key: string]: JsonValue;
5
- };
6
- type JsonObject = {
7
- [key: string]: JsonValue;
8
- };
9
- type RunStatus = "queued" | "running" | "succeeded" | "failed" | "canceled" | "unknown";
10
- type RoutineStatus = "enabled" | "disabled" | "paused" | "unknown";
11
- type ApprovalStatus = "pending" | "approved" | "rejected" | "unknown";
12
- type ChannelName = "telegram" | "discord" | "slack";
13
- interface TandemClientOptions {
14
- baseUrl: string;
15
- token: string;
16
- timeoutMs?: number;
17
- }
18
- interface SystemHealth {
19
- ready?: boolean;
20
- phase?: string;
21
- [key: string]: unknown;
22
- }
23
- interface CreateSessionOptions {
24
- title?: string;
25
- directory?: string;
26
- permissions?: PermissionRule[];
27
- provider?: string;
28
- model?: string;
29
- }
30
- interface UpdateSessionOptions {
31
- title?: string;
32
- archived?: boolean;
33
- }
34
- interface SessionRecord {
35
- id: string;
36
- title: string;
37
- createdAtMs: number;
38
- directory?: string;
39
- workspaceRoot?: string;
40
- archived?: boolean;
41
- [key: string]: unknown;
42
- }
43
- interface SessionListResponse {
44
- sessions: SessionRecord[];
45
- count: number;
46
- }
47
- interface ListSessionsOptions {
48
- q?: string;
49
- page?: number;
50
- pageSize?: number;
51
- archived?: boolean;
52
- scope?: "workspace" | "global";
53
- workspace?: string;
54
- }
55
- interface SessionRunStateResponse {
56
- active?: {
57
- runId?: string;
58
- attachEventStream?: string;
59
- [key: string]: unknown;
60
- } | null;
61
- }
62
- interface PromptAsyncResult {
63
- runId: string;
64
- }
65
- interface SessionDiff {
66
- diff?: string;
67
- files?: string[];
68
- [key: string]: unknown;
69
- }
70
- interface SessionTodo {
71
- id?: string;
72
- content: string;
73
- status?: string;
74
- [key: string]: unknown;
75
- }
76
- interface MessagePart {
77
- type?: string;
78
- text?: string;
79
- }
80
- interface EngineMessage {
81
- info?: {
82
- role?: string;
83
- };
84
- parts?: MessagePart[];
85
- }
86
- interface PermissionRule {
87
- permission: string;
88
- pattern: string;
89
- action: "allow" | "deny" | "ask";
90
- }
91
- interface PermissionRequestRecord {
92
- id: string;
93
- permission?: string;
94
- pattern?: string;
95
- tool?: string;
96
- status?: ApprovalStatus | string;
97
- sessionId?: string;
98
- [key: string]: unknown;
99
- }
100
- interface PermissionRuleRecord {
101
- id: string;
102
- permission: string;
103
- pattern: string;
104
- action: string;
105
- [key: string]: unknown;
106
- }
107
- interface PermissionSnapshotResponse {
108
- requests?: PermissionRequestRecord[];
109
- rules?: PermissionRuleRecord[];
110
- }
111
- type PermissionReply = "allow" | "always" | "deny" | "reject" | "once";
112
- interface QuestionRecord {
113
- id: string;
114
- text?: string;
115
- choices?: string[];
116
- status?: ApprovalStatus | string;
117
- sessionId?: string;
118
- [key: string]: unknown;
119
- }
120
- interface QuestionsListResponse {
121
- questions: QuestionRecord[];
122
- [key: string]: unknown;
123
- }
124
- interface ProviderModelEntry {
125
- name?: string;
126
- }
127
- interface ProviderEntry {
128
- id: string;
129
- name?: string;
130
- models?: Record<string, ProviderModelEntry>;
131
- }
132
- interface ProviderCatalog {
133
- all: ProviderEntry[];
134
- connected?: string[];
135
- default?: string | null;
136
- }
137
- interface ProviderConfigEntry {
138
- defaultModel?: string;
139
- }
140
- interface ProvidersConfigResponse {
141
- default?: string | null;
142
- providers: Record<string, ProviderConfigEntry>;
143
- }
144
- interface ChannelConfigEntry {
145
- hasToken?: boolean;
146
- allowedUsers?: string[];
147
- mentionOnly?: boolean;
148
- guildId?: string;
149
- channelId?: string;
150
- }
151
- interface ChannelsConfigResponse {
152
- telegram: ChannelConfigEntry;
153
- discord: ChannelConfigEntry;
154
- slack: ChannelConfigEntry;
155
- }
156
- interface ChannelStatusEntry {
157
- enabled: boolean;
158
- connected: boolean;
159
- lastError?: string | null;
160
- activeSessions: number;
161
- meta?: JsonObject;
162
- }
163
- interface ChannelsStatusResponse {
164
- telegram: ChannelStatusEntry;
165
- discord: ChannelStatusEntry;
166
- slack: ChannelStatusEntry;
167
- }
168
- interface AddMcpServerOptions {
169
- name: string;
170
- transport: string;
171
- headers?: Record<string, string>;
172
- enabled?: boolean;
173
- }
174
- interface MemoryItem {
175
- id?: string;
176
- text: string;
177
- tags?: string[];
178
- source?: string;
179
- sessionId?: string;
180
- runId?: string;
181
- [key: string]: unknown;
182
- }
183
- interface MemoryPutOptions {
184
- text: string;
185
- tags?: string[];
186
- source?: string;
187
- sessionId?: string;
188
- runId?: string;
189
- capability?: string;
190
- }
191
- interface MemoryPutResponse {
192
- id: string;
193
- ok: boolean;
194
- [key: string]: unknown;
195
- }
196
- interface MemorySearchOptions {
197
- query: string;
198
- limit?: number;
199
- tags?: string[];
200
- sessionId?: string;
201
- capability?: string;
202
- }
203
- interface MemorySearchResult {
204
- id: string;
205
- text: string;
206
- score?: number;
207
- tags?: string[];
208
- [key: string]: unknown;
209
- }
210
- interface MemorySearchResponse {
211
- results: MemorySearchResult[];
212
- count: number;
213
- }
214
- interface MemoryListResponse {
215
- items: MemoryItem[];
216
- count: number;
217
- }
218
- interface MemoryPromoteOptions {
219
- id: string;
220
- capability?: string;
221
- }
222
- interface MemoryPromoteResponse {
223
- ok: boolean;
224
- id: string;
225
- [key: string]: unknown;
226
- }
227
- interface MemoryAuditEntry {
228
- id?: string;
229
- tsMs?: number;
230
- action?: string;
231
- runId?: string;
232
- [key: string]: unknown;
233
- }
234
- interface MemoryAuditResponse {
235
- entries: MemoryAuditEntry[];
236
- count: number;
237
- }
238
- type SkillLocation = "user" | "workspace" | "builtin";
239
- interface SkillRecord {
240
- name: string;
241
- location?: SkillLocation;
242
- description?: string;
243
- version?: string;
244
- [key: string]: unknown;
245
- }
246
- interface SkillsListResponse {
247
- skills: SkillRecord[];
248
- count: number;
249
- }
250
- interface SkillImportOptions {
251
- content?: string;
252
- fileOrPath?: string;
253
- location: SkillLocation;
254
- namespace?: string;
255
- conflictPolicy?: "skip" | "overwrite" | "error";
256
- }
257
- interface SkillImportResponse {
258
- ok: boolean;
259
- imported?: number;
260
- [key: string]: unknown;
261
- }
262
- interface SkillTemplate {
263
- name: string;
264
- description?: string;
265
- [key: string]: unknown;
266
- }
267
- interface SkillTemplatesResponse {
268
- templates: SkillTemplate[];
269
- count: number;
270
- }
271
- interface ResourceRecord {
272
- key: string;
273
- value: unknown;
274
- rev?: number;
275
- updatedAtMs?: number;
276
- updatedBy?: string;
277
- [key: string]: unknown;
278
- }
279
- interface ResourceListResponse {
280
- items: ResourceRecord[];
281
- count: number;
282
- }
283
- interface ResourceWriteOptions {
284
- key: string;
285
- value: unknown;
286
- ifMatchRev?: number;
287
- updatedBy?: string;
288
- ttlMs?: number;
289
- }
290
- interface ResourceWriteResponse {
291
- ok: boolean;
292
- rev?: number;
293
- [key: string]: unknown;
294
- }
295
- type RoutineFamily = "routines" | "automations";
296
- type RoutineSchedule = {
297
- type: "cron";
298
- cron: string;
299
- } | {
300
- type: "interval";
301
- intervalMs: number;
302
- } | {
303
- type: "manual";
304
- } | string;
305
- interface RoutineRecord {
306
- id: string;
307
- name?: string;
308
- schedule?: RoutineSchedule;
309
- entrypoint?: string;
310
- prompt?: string;
311
- status?: RoutineStatus | string;
312
- lastRun?: string;
313
- lastRunAt?: string;
314
- requiresApproval?: boolean;
315
- externalIntegrationsAllowed?: boolean;
316
- [key: string]: unknown;
317
- }
318
- interface DefinitionListResponse {
319
- routines?: RoutineRecord[];
320
- automations?: RoutineRecord[];
321
- count: number;
322
- }
323
- interface DefinitionCreateResponse {
324
- routine?: RoutineRecord;
325
- automation?: RoutineRecord;
326
- }
327
- interface CreateRoutineOptions {
328
- name: string;
329
- schedule?: RoutineSchedule;
330
- timezone?: string;
331
- misfirePolicy?: "skip" | "run_late" | "run_now";
332
- entrypoint?: string;
333
- args?: JsonObject;
334
- allowedTools?: string[];
335
- outputTargets?: string[];
336
- requiresApproval?: boolean;
337
- externalIntegrationsAllowed?: boolean;
338
- nextFireAtMs?: number;
339
- [key: string]: unknown;
340
- }
341
- interface PatchRoutineOptions {
342
- name?: string;
343
- status?: RoutineStatus | string;
344
- schedule?: RoutineSchedule;
345
- timezone?: string;
346
- misfirePolicy?: string;
347
- entrypoint?: string;
348
- args?: JsonObject;
349
- allowedTools?: string[];
350
- outputTargets?: string[];
351
- requiresApproval?: boolean;
352
- externalIntegrationsAllowed?: boolean;
353
- nextFireAtMs?: number;
354
- }
355
- interface AutomationMissionOptions {
356
- objective: string;
357
- successCriteria?: string[];
358
- briefing?: string;
359
- }
360
- interface CreateAutomationOptions {
361
- name: string;
362
- schedule: RoutineSchedule;
363
- timezone?: string;
364
- misfirePolicy?: string;
365
- mission: AutomationMissionOptions;
366
- mode?: string;
367
- policy?: {
368
- tool?: {
369
- runAllowlist?: string[];
370
- externalIntegrationsAllowed?: boolean;
371
- };
372
- approval?: {
373
- requiresApproval?: boolean;
374
- };
375
- };
376
- outputTargets?: string[];
377
- modelPolicy?: JsonObject;
378
- nextFireAtMs?: number;
379
- }
380
- interface PatchAutomationOptions {
381
- name?: string;
382
- status?: RoutineStatus | string;
383
- schedule?: RoutineSchedule;
384
- mission?: Partial<AutomationMissionOptions>;
385
- mode?: string;
386
- policy?: JsonObject;
387
- outputTargets?: string[];
388
- modelPolicy?: JsonObject;
389
- nextFireAtMs?: number;
390
- }
391
- interface RunNowResponse {
392
- ok?: boolean;
393
- runId?: string;
394
- status?: RunStatus | string;
395
- }
396
- interface RunsListResponse {
397
- runs: RunRecord[];
398
- count: number;
399
- }
400
- interface RunRecord {
401
- id?: string;
402
- runId?: string;
403
- routineId?: string;
404
- automationId?: string;
405
- status?: RunStatus | string;
406
- startedAtMs?: number;
407
- finishedAtMs?: number;
408
- [key: string]: unknown;
409
- }
410
- interface ArtifactRecord {
411
- artifactId?: string;
412
- uri: string;
413
- kind: string;
414
- label?: string;
415
- metadata?: JsonObject;
416
- createdAtMs?: number;
417
- }
418
- interface RunArtifactsResponse {
419
- runId?: string;
420
- artifacts: ArtifactRecord[];
421
- count: number;
422
- }
423
- interface RoutineHistoryEntry {
424
- event?: string;
425
- tsMs?: number;
426
- status?: RoutineStatus | string;
427
- [key: string]: unknown;
428
- }
429
- interface RoutineHistoryResponse {
430
- history: RoutineHistoryEntry[];
431
- count: number;
432
- }
433
- interface AgentTeamSpawnInput {
434
- missionId?: string;
435
- parentInstanceId?: string;
436
- templateId?: string;
437
- role: string;
438
- source?: string;
439
- justification: string;
440
- budgetOverride?: JsonObject;
441
- }
442
- interface AgentTeamSpawnResponse {
443
- ok?: boolean;
444
- missionId?: string;
445
- instanceId?: string;
446
- sessionId?: string;
447
- runId?: string | null;
448
- status?: string;
449
- code?: string;
450
- error?: string;
451
- }
452
- interface AgentTeamTemplate {
453
- id: string;
454
- name?: string;
455
- role?: string;
456
- [key: string]: unknown;
457
- }
458
- interface AgentTeamTemplatesResponse {
459
- templates: AgentTeamTemplate[];
460
- count: number;
461
- }
462
- interface AgentTeamInstance {
463
- instanceId?: string;
464
- missionId?: string;
465
- role?: string;
466
- status?: string;
467
- sessionId?: string;
468
- [key: string]: unknown;
469
- }
470
- interface AgentTeamInstancesResponse {
471
- instances: AgentTeamInstance[];
472
- count: number;
473
- }
474
- interface AgentTeamMissionsResponse {
475
- missions: JsonObject[];
476
- count: number;
477
- }
478
- interface AgentTeamSpawnApproval {
479
- approvalId?: string;
480
- status?: ApprovalStatus | string;
481
- [key: string]: unknown;
482
- }
483
- interface AgentTeamApprovalsResponse {
484
- spawnApprovals: AgentTeamSpawnApproval[];
485
- toolApprovals: JsonObject[];
486
- count: number;
487
- }
488
- interface MissionWorkItem {
489
- title: string;
490
- detail?: string;
491
- assignedAgent?: string;
492
- }
493
- interface MissionCreateInput {
494
- title: string;
495
- goal: string;
496
- workItems: MissionWorkItem[];
497
- }
498
- interface MissionRecord {
499
- id?: string;
500
- title?: string;
501
- goal?: string;
502
- status?: string;
503
- [key: string]: unknown;
504
- }
505
- interface MissionCreateResponse {
506
- mission?: MissionRecord;
507
- }
508
- interface MissionListResponse {
509
- missions: MissionRecord[];
510
- count: number;
511
- }
512
- interface MissionGetResponse {
513
- mission: MissionRecord;
514
- }
515
- interface MissionEventResponse {
516
- mission?: MissionRecord;
517
- commands?: unknown[];
518
- [key: string]: unknown;
519
- }
520
- interface ToolSchema {
521
- name: string;
522
- description?: string;
523
- inputSchema?: JsonObject;
524
- [key: string]: unknown;
525
- }
526
- interface ToolExecuteResult {
527
- output?: string;
528
- metadata?: JsonObject;
529
- [key: string]: unknown;
530
- }
531
- interface EngineEventBase {
532
- type: string;
533
- properties: Record<string, unknown>;
534
- sessionId?: string;
535
- runId?: string;
536
- timestamp?: string;
537
- [key: string]: unknown;
538
- }
539
- interface RunStartedEvent extends EngineEventBase {
540
- type: "run.started";
541
- }
542
- interface RunProgressEvent extends EngineEventBase {
543
- type: "run.progress";
544
- }
545
- interface RunCompletedEvent extends EngineEventBase {
546
- type: "run.completed";
547
- }
548
- interface RunFailedEvent extends EngineEventBase {
549
- type: "run.failed";
550
- }
551
- interface ToolCalledEvent extends EngineEventBase {
552
- type: "tool.called";
553
- }
554
- interface ToolResultEvent extends EngineEventBase {
555
- type: "tool.result";
556
- }
557
- interface ApprovalRequestedEvent extends EngineEventBase {
558
- type: "approval.requested";
559
- }
560
- interface ApprovalResolvedEvent extends EngineEventBase {
561
- type: "approval.resolved";
562
- }
563
- interface RoutineTriggeredEvent extends EngineEventBase {
564
- type: "routine.triggered";
565
- }
566
- interface RoutineCompletedEvent extends EngineEventBase {
567
- type: "routine.completed";
568
- }
569
- interface SessionResponseEvent extends EngineEventBase {
570
- type: "session.response";
571
- }
572
- interface UnknownEvent extends EngineEventBase {
573
- type: string;
574
- }
575
- type KnownEventType = "run.started" | "run.progress" | "run.completed" | "run.failed" | "tool.called" | "tool.result" | "approval.requested" | "approval.resolved" | "routine.triggered" | "routine.completed" | "session.response";
576
- type EngineEvent = RunStartedEvent | RunProgressEvent | RunCompletedEvent | RunFailedEvent | ToolCalledEvent | ToolResultEvent | ApprovalRequestedEvent | ApprovalResolvedEvent | RoutineTriggeredEvent | RoutineCompletedEvent | SessionResponseEvent | UnknownEvent;
577
-
1
+ import type { TandemClientOptions, JsonObject, SystemHealth, SessionRecord, SessionListResponse, ListSessionsOptions, CreateSessionOptions, UpdateSessionOptions, SessionRunStateResponse, PromptAsyncResult, SessionDiff, SessionTodo, EngineMessage, PermissionSnapshotResponse, PermissionReply, QuestionsListResponse, ProviderCatalog, ProvidersConfigResponse, ChannelName, ChannelsConfigResponse, ChannelsStatusResponse, AddMcpServerOptions, MemoryPutOptions, MemoryPutResponse, MemorySearchOptions, MemorySearchResponse, MemoryListResponse, MemoryPromoteOptions, MemoryPromoteResponse, MemoryAuditResponse, SkillLocation, SkillRecord, SkillsListResponse, SkillImportOptions, SkillImportResponse, SkillTemplatesResponse, ResourceListResponse, ResourceWriteOptions, ResourceWriteResponse, RoutineRecord, DefinitionListResponse, DefinitionCreateResponse, CreateRoutineOptions, PatchRoutineOptions, CreateAutomationOptions, PatchAutomationOptions, RunNowResponse, RunsListResponse, RunRecord, RunArtifactsResponse, RoutineHistoryResponse, AgentTeamSpawnInput, AgentTeamSpawnResponse, AgentTeamTemplatesResponse, AgentTeamInstancesResponse, AgentTeamMissionsResponse, AgentTeamApprovalsResponse, MissionCreateInput, MissionCreateResponse, MissionListResponse, MissionGetResponse, MissionEventResponse, ToolSchema, ToolExecuteResult, EngineEvent, RoutineFamily } from "./public/index.js";
578
2
  /**
579
3
  * HTTP client for the Tandem autonomous agent engine.
580
4
  *
@@ -600,7 +24,7 @@ type EngineEvent = RunStartedEvent | RunProgressEvent | RunCompletedEvent | RunF
600
24
  * }
601
25
  * ```
602
26
  */
603
- declare class TandemClient {
27
+ export declare class TandemClient {
604
28
  private baseUrl;
605
29
  private token;
606
30
  private timeoutMs;
@@ -631,6 +55,10 @@ declare class TandemClient {
631
55
  /** Multi-agent mission management */
632
56
  readonly missions: Missions;
633
57
  constructor(options: TandemClientOptions);
58
+ /**
59
+ * Update the bearer token used for future HTTP and SSE requests.
60
+ */
61
+ setToken(token: string): void;
634
62
  /** Check engine health. Returns `{ ready: true }` when the engine is ready. */
635
63
  health(): Promise<SystemHealth>;
636
64
  /** List all tool IDs registered in the engine. */
@@ -684,6 +112,7 @@ declare class Sessions {
684
112
  private timeoutMs;
685
113
  private req;
686
114
  constructor(baseUrl: string, token: string, timeoutMs: number, req: TandemClient["_request"]);
115
+ setToken(token: string): void;
687
116
  /** Create a new session. Returns the session ID. */
688
117
  create(options?: CreateSessionOptions): Promise<string>;
689
118
  /** List sessions with optional filtering. */
@@ -1127,59 +556,5 @@ declare class Missions {
1127
556
  /** Apply a state event to a mission. */
1128
557
  applyEvent(missionId: string, event: JsonObject): Promise<MissionEventResponse>;
1129
558
  }
1130
-
1131
- /**
1132
- * Filter an async stream to only yield events of a specific type.
1133
- *
1134
- * @example
1135
- * ```typescript
1136
- * for await (const event of filterByType(client.stream(s, r), "session.response")) {
1137
- * console.log(event.properties.delta);
1138
- * }
1139
- * ```
1140
- */
1141
- declare function filterByType<T extends KnownEventType>(stream: AsyncIterable<EngineEvent>, type: T): AsyncGenerator<Extract<EngineEvent, {
1142
- type: T;
1143
- }>>;
1144
- /**
1145
- * Consume a stream in the background and trigger a callback for a specific event type.
1146
- *
1147
- * @example
1148
- * ```typescript
1149
- * on(client.stream(s, r), "run.completed", (event) => console.log(event.runId));
1150
- * ```
1151
- */
1152
- declare function on<T extends KnownEventType>(stream: AsyncIterable<EngineEvent>, type: T, callback: (event: Extract<EngineEvent, {
1153
- type: T;
1154
- }>) => void | Promise<void>): Promise<void>;
1155
- /**
1156
- * Streams Server-Sent Events from a Tandem engine SSE endpoint.
1157
- *
1158
- * Uses Node's built-in fetch + ReadableStream — no browser globals required.
1159
- *
1160
- * @example
1161
- * ```typescript
1162
- * for await (const event of streamSse(url, token)) {
1163
- * if (event.type === "session.response") {
1164
- * process.stdout.write(String(event.properties.delta ?? ""));
1165
- * }
1166
- * if (event.type === "run.complete") break;
1167
- * }
1168
- * ```
1169
- */
1170
- declare function streamSse(url: string, token: string, options?: {
1171
- /** Signal to abort the stream */
1172
- signal?: AbortSignal;
1173
- /** Max time to wait for the first byte (ms, default 30000) */
1174
- connectTimeoutMs?: number;
1175
- }): AsyncGenerator<EngineEvent>;
1176
-
1177
- declare class TandemValidationError extends Error {
1178
- readonly endpoint: string;
1179
- readonly status: number;
1180
- readonly issues: z.ZodIssue[];
1181
- readonly rawSnippet: string;
1182
- constructor(endpoint: string, status: number, issues: z.ZodIssue[], rawSnippet: string);
1183
- }
1184
-
1185
- export { type AddMcpServerOptions, type AgentTeamApprovalsResponse, type AgentTeamInstance, type AgentTeamInstancesResponse, type AgentTeamMissionsResponse, type AgentTeamSpawnApproval, type AgentTeamSpawnInput, type AgentTeamSpawnResponse, type AgentTeamTemplate, type AgentTeamTemplatesResponse, type ApprovalRequestedEvent, type ApprovalResolvedEvent, type ApprovalStatus, type ArtifactRecord, type AutomationMissionOptions, type ChannelConfigEntry, type ChannelName, type ChannelStatusEntry, type ChannelsConfigResponse, type ChannelsStatusResponse, type CreateAutomationOptions, type CreateRoutineOptions, type CreateSessionOptions, type DefinitionCreateResponse, type DefinitionListResponse, type EngineEvent, type EngineEventBase, type EngineMessage, type JsonObject, type JsonValue, type KnownEventType, type ListSessionsOptions, type MemoryAuditEntry, type MemoryAuditResponse, type MemoryItem, type MemoryListResponse, type MemoryPromoteOptions, type MemoryPromoteResponse, type MemoryPutOptions, type MemoryPutResponse, type MemorySearchOptions, type MemorySearchResponse, type MemorySearchResult, type MessagePart, type MissionCreateInput, type MissionCreateResponse, type MissionEventResponse, type MissionGetResponse, type MissionListResponse, type MissionRecord, type MissionWorkItem, type PatchAutomationOptions, type PatchRoutineOptions, type PermissionReply, type PermissionRequestRecord, type PermissionRule, type PermissionRuleRecord, type PermissionSnapshotResponse, type PromptAsyncResult, type ProviderCatalog, type ProviderConfigEntry, type ProviderEntry, type ProviderModelEntry, type ProvidersConfigResponse, type QuestionRecord, type QuestionsListResponse, type ResourceListResponse, type ResourceRecord, type ResourceWriteOptions, type ResourceWriteResponse, type RoutineCompletedEvent, type RoutineFamily, type RoutineHistoryEntry, type RoutineHistoryResponse, type RoutineRecord, type RoutineSchedule, type RoutineStatus, type RoutineTriggeredEvent, type RunArtifactsResponse, type RunCompletedEvent, type RunFailedEvent, type RunNowResponse, type RunProgressEvent, type RunRecord, type RunStartedEvent, type RunStatus, type RunsListResponse, type SessionDiff, type SessionListResponse, type SessionRecord, type SessionResponseEvent, type SessionRunStateResponse, type SessionTodo, type SkillImportOptions, type SkillImportResponse, type SkillLocation, type SkillRecord, type SkillTemplate, type SkillTemplatesResponse, type SkillsListResponse, type SystemHealth, TandemClient, type TandemClientOptions, TandemValidationError, type ToolCalledEvent, type ToolExecuteResult, type ToolResultEvent, type ToolSchema, type UnknownEvent, type UpdateSessionOptions, filterByType, on, streamSse };
559
+ export type { RoutineFamily, RoutineRecord };
560
+ //# sourceMappingURL=client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}