@makaio/framework 1.0.0-dev-1781994277521 → 1.0.0-dev-1781996773251
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/dist/.makaio-build.json +2 -2
- package/dist/adapter-subsystem/index.mjs +1 -1
- package/dist/adapters/index.d.mts +1 -1
- package/dist/adapters/index.mjs +1 -1
- package/dist/bus/index.d.mts +20 -20
- package/dist/contracts/adapter/index.d.mts +1 -1
- package/dist/contracts/artifact/index.d.mts +1 -1
- package/dist/contracts/canonical-model/index.d.mts +1 -1
- package/dist/contracts/extension/index.d.mts +3 -3
- package/dist/contracts/harness/index.d.mts +1 -1
- package/dist/contracts/index.d.mts +153 -153
- package/dist/contracts/session/index.d.mts +2 -2
- package/dist/contracts/shared/index.d.mts +1 -1
- package/dist/contracts/variant/index.d.mts +1 -1
- package/dist/contracts/workflow/index.d.mts +2 -2
- package/dist/{index-CmHdpW0E.d.mts → index-4eP9DRL_.d.mts} +8 -8
- package/dist/{index-DcKU6lPk.d.mts → index-BfsvUD9j.d.mts} +54 -54
- package/dist/{index-Bb6a9c_k.d.mts → index-CUSOL0X_.d.mts} +339 -339
- package/dist/{index-NkNbYFud.d.mts → index-CaerrEDH.d.mts} +1 -1
- package/dist/{index-BHol4LQf.d.mts → index-Cx1Bm6WD.d.mts} +4 -4
- package/dist/{index-B4ZdZi50.d.mts → index-DDehaguq.d.mts} +338 -338
- package/dist/{index-BfTHRjZa.d.mts → index-DHUARU-6.d.mts} +4 -4
- package/dist/{index-CUgqdVBB.d.mts → index-DImePakw.d.mts} +8 -8
- package/dist/{index-DDrS0Axp.d.mts → index-DOIbPMcj.d.mts} +15 -15
- package/dist/{index-BmvbMMIk.d.mts → index-Dch9gi4S.d.mts} +1 -1
- package/dist/{index-CszcIqMC.d.mts → index-DvLCzle5.d.mts} +12 -12
- package/dist/{index-CqImyhjX.d.mts → index-WHUV7neB.d.mts} +100 -100
- package/dist/kernel/extension/index.d.mts +1 -1
- package/dist/kernel/index.d.mts +2 -2
- package/dist/kernel/observability/index.d.mts +1 -1
- package/dist/{namespace-4xHw59K8.d.mts → namespace-Bm77p82L.d.mts} +1 -1
- package/dist/{namespace-CmUh_lVP.d.mts → namespace-CfvtDD_U.d.mts} +154 -154
- package/dist/{namespace-6sIu5nBI2.d.mts → namespace-D8P8Sxce2.d.mts} +2 -2
- package/dist/{namespace-Bz0ORDns.d.mts → namespace-UaiY5v62.d.mts} +38 -38
- package/dist/package.json +1 -1
- package/dist/{schema-Dky4zu9D.d.mts → schema-CKTzwiif.d.mts} +2 -2
- package/dist/{schemas-DRYXani5.d.mts → schemas-CoFCV42v.d.mts} +154 -154
- package/dist/{schemas-Do7Js2ao2.d.mts → schemas-CwgS7KoL2.d.mts} +15 -15
- package/dist/services/agent-runtime/index.d.mts +2 -2
- package/dist/services/agent-runtime/namespace.d.mts +1 -1
- package/dist/services/agent-runtime/schemas.d.mts +1 -1
- package/dist/services/filesystem/namespace.d.mts +6 -6
- package/dist/services/filesystem/schemas.d.mts +3 -3
- package/dist/services/harness/index.d.mts +3 -3
- package/dist/services/index.d.mts +102 -102
- package/dist/services/session/index.d.mts +4 -4
- package/dist/services/session/messages/namespace.d.mts +1 -1
- package/dist/services/session/storage/namespace.d.mts +1 -1
- package/dist/services/session/storage/schema.d.mts +1 -1
- package/dist/services/settings/namespace.d.mts +12 -12
- package/dist/services/subagent-template/index.d.mts +2 -2
- package/dist/services/subagent-template/namespace.d.mts +1 -1
- package/dist/services/subagent-template/schemas.d.mts +1 -1
- package/dist/{transition-BUKCl8gP.d.mts → transition-BBElJqQ8.d.mts} +1 -1
- package/dist/{types-CFbvKZRj.d.mts → types-B49V7vZJ.d.mts} +246 -246
- package/dist/workflow-engine/index.d.mts +52 -52
- package/package.json +1 -1
|
@@ -37,25 +37,6 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
37
37
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
38
38
|
mcpSessionContext: z.ZodOptional<z.ZodObject<{
|
|
39
39
|
sessionId: z.ZodString;
|
|
40
|
-
directTools: z.ZodArray<z.ZodObject<{
|
|
41
|
-
fullName: z.ZodString;
|
|
42
|
-
originalName: z.ZodString;
|
|
43
|
-
serverName: z.ZodString;
|
|
44
|
-
description: z.ZodOptional<z.ZodString>;
|
|
45
|
-
inputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
46
|
-
exposureMode: z.ZodEnum<{
|
|
47
|
-
discovery: "discovery";
|
|
48
|
-
direct: "direct";
|
|
49
|
-
hidden: "hidden";
|
|
50
|
-
}>;
|
|
51
|
-
enabled: z.ZodBoolean;
|
|
52
|
-
enabledBy: z.ZodOptional<z.ZodEnum<{
|
|
53
|
-
discovery: "discovery";
|
|
54
|
-
toolset: "toolset";
|
|
55
|
-
}>>;
|
|
56
|
-
enabledAt: z.ZodOptional<z.ZodNumber>;
|
|
57
|
-
exposed: z.ZodBoolean;
|
|
58
|
-
}, z.core.$strip>>;
|
|
59
40
|
servers: z.ZodArray<z.ZodObject<{
|
|
60
41
|
name: z.ZodString;
|
|
61
42
|
transport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -92,9 +73,28 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
92
73
|
type: z.ZodLiteral<"http">;
|
|
93
74
|
}, z.core.$strip>], "type">;
|
|
94
75
|
exposureMode: z.ZodEnum<{
|
|
76
|
+
direct: "direct";
|
|
95
77
|
discovery: "discovery";
|
|
78
|
+
}>;
|
|
79
|
+
}, z.core.$strip>>;
|
|
80
|
+
directTools: z.ZodArray<z.ZodObject<{
|
|
81
|
+
fullName: z.ZodString;
|
|
82
|
+
originalName: z.ZodString;
|
|
83
|
+
serverName: z.ZodString;
|
|
84
|
+
description: z.ZodOptional<z.ZodString>;
|
|
85
|
+
inputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
86
|
+
exposureMode: z.ZodEnum<{
|
|
96
87
|
direct: "direct";
|
|
88
|
+
discovery: "discovery";
|
|
89
|
+
hidden: "hidden";
|
|
97
90
|
}>;
|
|
91
|
+
enabled: z.ZodBoolean;
|
|
92
|
+
enabledBy: z.ZodOptional<z.ZodEnum<{
|
|
93
|
+
discovery: "discovery";
|
|
94
|
+
toolset: "toolset";
|
|
95
|
+
}>>;
|
|
96
|
+
enabledAt: z.ZodOptional<z.ZodNumber>;
|
|
97
|
+
exposed: z.ZodBoolean;
|
|
98
98
|
}, z.core.$strip>>;
|
|
99
99
|
discoverableTools: z.ZodArray<z.ZodObject<{
|
|
100
100
|
fullName: z.ZodString;
|
|
@@ -103,8 +103,8 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
103
103
|
description: z.ZodOptional<z.ZodString>;
|
|
104
104
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
105
105
|
exposureMode: z.ZodEnum<{
|
|
106
|
-
discovery: "discovery";
|
|
107
106
|
direct: "direct";
|
|
107
|
+
discovery: "discovery";
|
|
108
108
|
hidden: "hidden";
|
|
109
109
|
}>;
|
|
110
110
|
enabled: z.ZodBoolean;
|
|
@@ -134,18 +134,6 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
134
134
|
env?: Record<string, string> | undefined;
|
|
135
135
|
mcpSessionContext?: {
|
|
136
136
|
sessionId: string;
|
|
137
|
-
directTools: {
|
|
138
|
-
fullName: string;
|
|
139
|
-
originalName: string;
|
|
140
|
-
serverName: string;
|
|
141
|
-
inputSchema: Record<string, unknown>;
|
|
142
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
143
|
-
enabled: boolean;
|
|
144
|
-
exposed: boolean;
|
|
145
|
-
description?: string | undefined;
|
|
146
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
147
|
-
enabledAt?: number | undefined;
|
|
148
|
-
}[];
|
|
149
137
|
servers: {
|
|
150
138
|
name: string;
|
|
151
139
|
transport: {
|
|
@@ -173,14 +161,26 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
173
161
|
}[] | undefined;
|
|
174
162
|
alwaysLoad?: boolean | undefined;
|
|
175
163
|
};
|
|
176
|
-
exposureMode: "
|
|
164
|
+
exposureMode: "direct" | "discovery";
|
|
165
|
+
}[];
|
|
166
|
+
directTools: {
|
|
167
|
+
fullName: string;
|
|
168
|
+
originalName: string;
|
|
169
|
+
serverName: string;
|
|
170
|
+
inputSchema: Record<string, unknown>;
|
|
171
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
172
|
+
enabled: boolean;
|
|
173
|
+
exposed: boolean;
|
|
174
|
+
description?: string | undefined;
|
|
175
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
176
|
+
enabledAt?: number | undefined;
|
|
177
177
|
}[];
|
|
178
178
|
discoverableTools: {
|
|
179
179
|
fullName: string;
|
|
180
180
|
originalName: string;
|
|
181
181
|
serverName: string;
|
|
182
182
|
inputSchema: Record<string, unknown>;
|
|
183
|
-
exposureMode: "
|
|
183
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
184
184
|
enabled: boolean;
|
|
185
185
|
exposed: boolean;
|
|
186
186
|
description?: string | undefined;
|
|
@@ -208,18 +208,6 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
208
208
|
env?: Record<string, string> | undefined;
|
|
209
209
|
mcpSessionContext?: {
|
|
210
210
|
sessionId: string;
|
|
211
|
-
directTools: {
|
|
212
|
-
fullName: string;
|
|
213
|
-
originalName: string;
|
|
214
|
-
serverName: string;
|
|
215
|
-
inputSchema: Record<string, unknown>;
|
|
216
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
217
|
-
enabled: boolean;
|
|
218
|
-
exposed: boolean;
|
|
219
|
-
description?: string | undefined;
|
|
220
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
221
|
-
enabledAt?: number | undefined;
|
|
222
|
-
}[];
|
|
223
211
|
servers: {
|
|
224
212
|
name: string;
|
|
225
213
|
transport: {
|
|
@@ -247,14 +235,26 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
247
235
|
}[] | undefined;
|
|
248
236
|
alwaysLoad?: boolean | undefined;
|
|
249
237
|
};
|
|
250
|
-
exposureMode: "
|
|
238
|
+
exposureMode: "direct" | "discovery";
|
|
239
|
+
}[];
|
|
240
|
+
directTools: {
|
|
241
|
+
fullName: string;
|
|
242
|
+
originalName: string;
|
|
243
|
+
serverName: string;
|
|
244
|
+
inputSchema: Record<string, unknown>;
|
|
245
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
246
|
+
enabled: boolean;
|
|
247
|
+
exposed: boolean;
|
|
248
|
+
description?: string | undefined;
|
|
249
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
250
|
+
enabledAt?: number | undefined;
|
|
251
251
|
}[];
|
|
252
252
|
discoverableTools: {
|
|
253
253
|
fullName: string;
|
|
254
254
|
originalName: string;
|
|
255
255
|
serverName: string;
|
|
256
256
|
inputSchema: Record<string, unknown>;
|
|
257
|
-
exposureMode: "
|
|
257
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
258
258
|
enabled: boolean;
|
|
259
259
|
exposed: boolean;
|
|
260
260
|
description?: string | undefined;
|
|
@@ -280,18 +280,6 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
280
280
|
env?: Record<string, string> | undefined;
|
|
281
281
|
mcpSessionContext?: {
|
|
282
282
|
sessionId: string;
|
|
283
|
-
directTools: {
|
|
284
|
-
fullName: string;
|
|
285
|
-
originalName: string;
|
|
286
|
-
serverName: string;
|
|
287
|
-
inputSchema: Record<string, unknown>;
|
|
288
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
289
|
-
enabled: boolean;
|
|
290
|
-
exposed: boolean;
|
|
291
|
-
description?: string | undefined;
|
|
292
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
293
|
-
enabledAt?: number | undefined;
|
|
294
|
-
}[];
|
|
295
283
|
servers: {
|
|
296
284
|
name: string;
|
|
297
285
|
transport: {
|
|
@@ -319,14 +307,26 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
319
307
|
}[] | undefined;
|
|
320
308
|
alwaysLoad?: boolean | undefined;
|
|
321
309
|
};
|
|
322
|
-
exposureMode: "
|
|
310
|
+
exposureMode: "direct" | "discovery";
|
|
311
|
+
}[];
|
|
312
|
+
directTools: {
|
|
313
|
+
fullName: string;
|
|
314
|
+
originalName: string;
|
|
315
|
+
serverName: string;
|
|
316
|
+
inputSchema: Record<string, unknown>;
|
|
317
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
318
|
+
enabled: boolean;
|
|
319
|
+
exposed: boolean;
|
|
320
|
+
description?: string | undefined;
|
|
321
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
322
|
+
enabledAt?: number | undefined;
|
|
323
323
|
}[];
|
|
324
324
|
discoverableTools: {
|
|
325
325
|
fullName: string;
|
|
326
326
|
originalName: string;
|
|
327
327
|
serverName: string;
|
|
328
328
|
inputSchema: Record<string, unknown>;
|
|
329
|
-
exposureMode: "
|
|
329
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
330
330
|
enabled: boolean;
|
|
331
331
|
exposed: boolean;
|
|
332
332
|
description?: string | undefined;
|
|
@@ -354,18 +354,6 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
354
354
|
env?: Record<string, string> | undefined;
|
|
355
355
|
mcpSessionContext?: {
|
|
356
356
|
sessionId: string;
|
|
357
|
-
directTools: {
|
|
358
|
-
fullName: string;
|
|
359
|
-
originalName: string;
|
|
360
|
-
serverName: string;
|
|
361
|
-
inputSchema: Record<string, unknown>;
|
|
362
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
363
|
-
enabled: boolean;
|
|
364
|
-
exposed: boolean;
|
|
365
|
-
description?: string | undefined;
|
|
366
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
367
|
-
enabledAt?: number | undefined;
|
|
368
|
-
}[];
|
|
369
357
|
servers: {
|
|
370
358
|
name: string;
|
|
371
359
|
transport: {
|
|
@@ -393,14 +381,26 @@ declare const AgentRuntimeSelectionSchema: z.ZodObject<{
|
|
|
393
381
|
}[] | undefined;
|
|
394
382
|
alwaysLoad?: boolean | undefined;
|
|
395
383
|
};
|
|
396
|
-
exposureMode: "
|
|
384
|
+
exposureMode: "direct" | "discovery";
|
|
385
|
+
}[];
|
|
386
|
+
directTools: {
|
|
387
|
+
fullName: string;
|
|
388
|
+
originalName: string;
|
|
389
|
+
serverName: string;
|
|
390
|
+
inputSchema: Record<string, unknown>;
|
|
391
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
392
|
+
enabled: boolean;
|
|
393
|
+
exposed: boolean;
|
|
394
|
+
description?: string | undefined;
|
|
395
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
396
|
+
enabledAt?: number | undefined;
|
|
397
397
|
}[];
|
|
398
398
|
discoverableTools: {
|
|
399
399
|
fullName: string;
|
|
400
400
|
originalName: string;
|
|
401
401
|
serverName: string;
|
|
402
402
|
inputSchema: Record<string, unknown>;
|
|
403
|
-
exposureMode: "
|
|
403
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
404
404
|
enabled: boolean;
|
|
405
405
|
exposed: boolean;
|
|
406
406
|
description?: string | undefined;
|
|
@@ -425,9 +425,9 @@ declare const AgentInstanceStatusSchema: z.ZodObject<{
|
|
|
425
425
|
status: z.ZodEnum<{
|
|
426
426
|
completed: "completed";
|
|
427
427
|
cancelled: "cancelled";
|
|
428
|
+
failed: "failed";
|
|
428
429
|
running: "running";
|
|
429
430
|
waiting_input: "waiting_input";
|
|
430
|
-
failed: "failed";
|
|
431
431
|
}>;
|
|
432
432
|
result: z.ZodOptional<z.ZodString>;
|
|
433
433
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -488,25 +488,6 @@ declare const AgentRuntimeSchemas: {
|
|
|
488
488
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
489
489
|
mcpSessionContext: z.ZodOptional<z.ZodObject<{
|
|
490
490
|
sessionId: z.ZodString;
|
|
491
|
-
directTools: z.ZodArray<z.ZodObject<{
|
|
492
|
-
fullName: z.ZodString;
|
|
493
|
-
originalName: z.ZodString;
|
|
494
|
-
serverName: z.ZodString;
|
|
495
|
-
description: z.ZodOptional<z.ZodString>;
|
|
496
|
-
inputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
497
|
-
exposureMode: z.ZodEnum<{
|
|
498
|
-
discovery: "discovery";
|
|
499
|
-
direct: "direct";
|
|
500
|
-
hidden: "hidden";
|
|
501
|
-
}>;
|
|
502
|
-
enabled: z.ZodBoolean;
|
|
503
|
-
enabledBy: z.ZodOptional<z.ZodEnum<{
|
|
504
|
-
discovery: "discovery";
|
|
505
|
-
toolset: "toolset";
|
|
506
|
-
}>>;
|
|
507
|
-
enabledAt: z.ZodOptional<z.ZodNumber>;
|
|
508
|
-
exposed: z.ZodBoolean;
|
|
509
|
-
}, z.core.$strip>>;
|
|
510
491
|
servers: z.ZodArray<z.ZodObject<{
|
|
511
492
|
name: z.ZodString;
|
|
512
493
|
transport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -543,9 +524,28 @@ declare const AgentRuntimeSchemas: {
|
|
|
543
524
|
type: z.ZodLiteral<"http">;
|
|
544
525
|
}, z.core.$strip>], "type">;
|
|
545
526
|
exposureMode: z.ZodEnum<{
|
|
527
|
+
direct: "direct";
|
|
546
528
|
discovery: "discovery";
|
|
529
|
+
}>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
531
|
+
directTools: z.ZodArray<z.ZodObject<{
|
|
532
|
+
fullName: z.ZodString;
|
|
533
|
+
originalName: z.ZodString;
|
|
534
|
+
serverName: z.ZodString;
|
|
535
|
+
description: z.ZodOptional<z.ZodString>;
|
|
536
|
+
inputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
537
|
+
exposureMode: z.ZodEnum<{
|
|
547
538
|
direct: "direct";
|
|
539
|
+
discovery: "discovery";
|
|
540
|
+
hidden: "hidden";
|
|
548
541
|
}>;
|
|
542
|
+
enabled: z.ZodBoolean;
|
|
543
|
+
enabledBy: z.ZodOptional<z.ZodEnum<{
|
|
544
|
+
discovery: "discovery";
|
|
545
|
+
toolset: "toolset";
|
|
546
|
+
}>>;
|
|
547
|
+
enabledAt: z.ZodOptional<z.ZodNumber>;
|
|
548
|
+
exposed: z.ZodBoolean;
|
|
549
549
|
}, z.core.$strip>>;
|
|
550
550
|
discoverableTools: z.ZodArray<z.ZodObject<{
|
|
551
551
|
fullName: z.ZodString;
|
|
@@ -554,8 +554,8 @@ declare const AgentRuntimeSchemas: {
|
|
|
554
554
|
description: z.ZodOptional<z.ZodString>;
|
|
555
555
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
556
556
|
exposureMode: z.ZodEnum<{
|
|
557
|
-
discovery: "discovery";
|
|
558
557
|
direct: "direct";
|
|
558
|
+
discovery: "discovery";
|
|
559
559
|
hidden: "hidden";
|
|
560
560
|
}>;
|
|
561
561
|
enabled: z.ZodBoolean;
|
|
@@ -585,18 +585,6 @@ declare const AgentRuntimeSchemas: {
|
|
|
585
585
|
env?: Record<string, string> | undefined;
|
|
586
586
|
mcpSessionContext?: {
|
|
587
587
|
sessionId: string;
|
|
588
|
-
directTools: {
|
|
589
|
-
fullName: string;
|
|
590
|
-
originalName: string;
|
|
591
|
-
serverName: string;
|
|
592
|
-
inputSchema: Record<string, unknown>;
|
|
593
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
594
|
-
enabled: boolean;
|
|
595
|
-
exposed: boolean;
|
|
596
|
-
description?: string | undefined;
|
|
597
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
598
|
-
enabledAt?: number | undefined;
|
|
599
|
-
}[];
|
|
600
588
|
servers: {
|
|
601
589
|
name: string;
|
|
602
590
|
transport: {
|
|
@@ -624,14 +612,26 @@ declare const AgentRuntimeSchemas: {
|
|
|
624
612
|
}[] | undefined;
|
|
625
613
|
alwaysLoad?: boolean | undefined;
|
|
626
614
|
};
|
|
627
|
-
exposureMode: "
|
|
615
|
+
exposureMode: "direct" | "discovery";
|
|
616
|
+
}[];
|
|
617
|
+
directTools: {
|
|
618
|
+
fullName: string;
|
|
619
|
+
originalName: string;
|
|
620
|
+
serverName: string;
|
|
621
|
+
inputSchema: Record<string, unknown>;
|
|
622
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
623
|
+
enabled: boolean;
|
|
624
|
+
exposed: boolean;
|
|
625
|
+
description?: string | undefined;
|
|
626
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
627
|
+
enabledAt?: number | undefined;
|
|
628
628
|
}[];
|
|
629
629
|
discoverableTools: {
|
|
630
630
|
fullName: string;
|
|
631
631
|
originalName: string;
|
|
632
632
|
serverName: string;
|
|
633
633
|
inputSchema: Record<string, unknown>;
|
|
634
|
-
exposureMode: "
|
|
634
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
635
635
|
enabled: boolean;
|
|
636
636
|
exposed: boolean;
|
|
637
637
|
description?: string | undefined;
|
|
@@ -659,18 +659,6 @@ declare const AgentRuntimeSchemas: {
|
|
|
659
659
|
env?: Record<string, string> | undefined;
|
|
660
660
|
mcpSessionContext?: {
|
|
661
661
|
sessionId: string;
|
|
662
|
-
directTools: {
|
|
663
|
-
fullName: string;
|
|
664
|
-
originalName: string;
|
|
665
|
-
serverName: string;
|
|
666
|
-
inputSchema: Record<string, unknown>;
|
|
667
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
668
|
-
enabled: boolean;
|
|
669
|
-
exposed: boolean;
|
|
670
|
-
description?: string | undefined;
|
|
671
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
672
|
-
enabledAt?: number | undefined;
|
|
673
|
-
}[];
|
|
674
662
|
servers: {
|
|
675
663
|
name: string;
|
|
676
664
|
transport: {
|
|
@@ -698,14 +686,26 @@ declare const AgentRuntimeSchemas: {
|
|
|
698
686
|
}[] | undefined;
|
|
699
687
|
alwaysLoad?: boolean | undefined;
|
|
700
688
|
};
|
|
701
|
-
exposureMode: "
|
|
689
|
+
exposureMode: "direct" | "discovery";
|
|
690
|
+
}[];
|
|
691
|
+
directTools: {
|
|
692
|
+
fullName: string;
|
|
693
|
+
originalName: string;
|
|
694
|
+
serverName: string;
|
|
695
|
+
inputSchema: Record<string, unknown>;
|
|
696
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
697
|
+
enabled: boolean;
|
|
698
|
+
exposed: boolean;
|
|
699
|
+
description?: string | undefined;
|
|
700
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
701
|
+
enabledAt?: number | undefined;
|
|
702
702
|
}[];
|
|
703
703
|
discoverableTools: {
|
|
704
704
|
fullName: string;
|
|
705
705
|
originalName: string;
|
|
706
706
|
serverName: string;
|
|
707
707
|
inputSchema: Record<string, unknown>;
|
|
708
|
-
exposureMode: "
|
|
708
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
709
709
|
enabled: boolean;
|
|
710
710
|
exposed: boolean;
|
|
711
711
|
description?: string | undefined;
|
|
@@ -731,18 +731,6 @@ declare const AgentRuntimeSchemas: {
|
|
|
731
731
|
env?: Record<string, string> | undefined;
|
|
732
732
|
mcpSessionContext?: {
|
|
733
733
|
sessionId: string;
|
|
734
|
-
directTools: {
|
|
735
|
-
fullName: string;
|
|
736
|
-
originalName: string;
|
|
737
|
-
serverName: string;
|
|
738
|
-
inputSchema: Record<string, unknown>;
|
|
739
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
740
|
-
enabled: boolean;
|
|
741
|
-
exposed: boolean;
|
|
742
|
-
description?: string | undefined;
|
|
743
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
744
|
-
enabledAt?: number | undefined;
|
|
745
|
-
}[];
|
|
746
734
|
servers: {
|
|
747
735
|
name: string;
|
|
748
736
|
transport: {
|
|
@@ -770,14 +758,26 @@ declare const AgentRuntimeSchemas: {
|
|
|
770
758
|
}[] | undefined;
|
|
771
759
|
alwaysLoad?: boolean | undefined;
|
|
772
760
|
};
|
|
773
|
-
exposureMode: "
|
|
761
|
+
exposureMode: "direct" | "discovery";
|
|
762
|
+
}[];
|
|
763
|
+
directTools: {
|
|
764
|
+
fullName: string;
|
|
765
|
+
originalName: string;
|
|
766
|
+
serverName: string;
|
|
767
|
+
inputSchema: Record<string, unknown>;
|
|
768
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
769
|
+
enabled: boolean;
|
|
770
|
+
exposed: boolean;
|
|
771
|
+
description?: string | undefined;
|
|
772
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
773
|
+
enabledAt?: number | undefined;
|
|
774
774
|
}[];
|
|
775
775
|
discoverableTools: {
|
|
776
776
|
fullName: string;
|
|
777
777
|
originalName: string;
|
|
778
778
|
serverName: string;
|
|
779
779
|
inputSchema: Record<string, unknown>;
|
|
780
|
-
exposureMode: "
|
|
780
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
781
781
|
enabled: boolean;
|
|
782
782
|
exposed: boolean;
|
|
783
783
|
description?: string | undefined;
|
|
@@ -805,18 +805,6 @@ declare const AgentRuntimeSchemas: {
|
|
|
805
805
|
env?: Record<string, string> | undefined;
|
|
806
806
|
mcpSessionContext?: {
|
|
807
807
|
sessionId: string;
|
|
808
|
-
directTools: {
|
|
809
|
-
fullName: string;
|
|
810
|
-
originalName: string;
|
|
811
|
-
serverName: string;
|
|
812
|
-
inputSchema: Record<string, unknown>;
|
|
813
|
-
exposureMode: "discovery" | "direct" | "hidden";
|
|
814
|
-
enabled: boolean;
|
|
815
|
-
exposed: boolean;
|
|
816
|
-
description?: string | undefined;
|
|
817
|
-
enabledBy?: "discovery" | "toolset" | undefined;
|
|
818
|
-
enabledAt?: number | undefined;
|
|
819
|
-
}[];
|
|
820
808
|
servers: {
|
|
821
809
|
name: string;
|
|
822
810
|
transport: {
|
|
@@ -844,14 +832,26 @@ declare const AgentRuntimeSchemas: {
|
|
|
844
832
|
}[] | undefined;
|
|
845
833
|
alwaysLoad?: boolean | undefined;
|
|
846
834
|
};
|
|
847
|
-
exposureMode: "
|
|
835
|
+
exposureMode: "direct" | "discovery";
|
|
836
|
+
}[];
|
|
837
|
+
directTools: {
|
|
838
|
+
fullName: string;
|
|
839
|
+
originalName: string;
|
|
840
|
+
serverName: string;
|
|
841
|
+
inputSchema: Record<string, unknown>;
|
|
842
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
843
|
+
enabled: boolean;
|
|
844
|
+
exposed: boolean;
|
|
845
|
+
description?: string | undefined;
|
|
846
|
+
enabledBy?: "discovery" | "toolset" | undefined;
|
|
847
|
+
enabledAt?: number | undefined;
|
|
848
848
|
}[];
|
|
849
849
|
discoverableTools: {
|
|
850
850
|
fullName: string;
|
|
851
851
|
originalName: string;
|
|
852
852
|
serverName: string;
|
|
853
853
|
inputSchema: Record<string, unknown>;
|
|
854
|
-
exposureMode: "
|
|
854
|
+
exposureMode: "direct" | "discovery" | "hidden";
|
|
855
855
|
enabled: boolean;
|
|
856
856
|
exposed: boolean;
|
|
857
857
|
description?: string | undefined;
|
|
@@ -888,9 +888,9 @@ declare const AgentRuntimeSchemas: {
|
|
|
888
888
|
status: z.ZodEnum<{
|
|
889
889
|
completed: "completed";
|
|
890
890
|
cancelled: "cancelled";
|
|
891
|
+
failed: "failed";
|
|
891
892
|
running: "running";
|
|
892
893
|
waiting_input: "waiting_input";
|
|
893
|
-
failed: "failed";
|
|
894
894
|
}>;
|
|
895
895
|
result: z.ZodOptional<z.ZodString>;
|
|
896
896
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -44,18 +44,18 @@ type SubagentTemplateSummary = z.infer<typeof SubagentTemplateSummarySchema>;
|
|
|
44
44
|
*/
|
|
45
45
|
declare const SubagentTemplateCreateSchema: z.ZodObject<{
|
|
46
46
|
name: z.ZodString;
|
|
47
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
48
|
-
adapterName: z.ZodString;
|
|
49
47
|
providerConfigId: z.ZodOptional<z.ZodString>;
|
|
50
48
|
model: z.ZodOptional<z.ZodString>;
|
|
49
|
+
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
50
|
+
allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
51
|
+
disallowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
52
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
53
|
+
allowedDirectories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
51
54
|
contextMode: z.ZodDefault<z.ZodEnum<{
|
|
52
55
|
fork: "fork";
|
|
53
56
|
fresh: "fresh";
|
|
54
57
|
}>>;
|
|
55
|
-
|
|
56
|
-
allowedDirectories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
57
|
-
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
58
|
-
allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
58
|
+
adapterName: z.ZodString;
|
|
59
59
|
}, z.core.$strip>;
|
|
60
60
|
type SubagentTemplateCreate = z.infer<typeof SubagentTemplateCreateSchema>;
|
|
61
61
|
/**
|
|
@@ -129,18 +129,18 @@ declare const SubagentTemplateSettingsSchemas: {
|
|
|
129
129
|
create: {
|
|
130
130
|
request: z.ZodObject<{
|
|
131
131
|
name: z.ZodString;
|
|
132
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
133
|
-
adapterName: z.ZodString;
|
|
134
132
|
providerConfigId: z.ZodOptional<z.ZodString>;
|
|
135
133
|
model: z.ZodOptional<z.ZodString>;
|
|
134
|
+
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
135
|
+
allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
|
+
disallowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
137
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
138
|
+
allowedDirectories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
139
|
contextMode: z.ZodDefault<z.ZodEnum<{
|
|
137
140
|
fork: "fork";
|
|
138
141
|
fresh: "fresh";
|
|
139
142
|
}>>;
|
|
140
|
-
|
|
141
|
-
allowedDirectories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
142
|
-
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
143
|
-
allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
143
|
+
adapterName: z.ZodString;
|
|
144
144
|
}, z.core.$strip>;
|
|
145
145
|
response: z.ZodObject<{
|
|
146
146
|
id: z.ZodString;
|
|
@@ -191,9 +191,9 @@ declare const SubagentTemplateInstanceSchema: z.ZodObject<{
|
|
|
191
191
|
status: z.ZodEnum<{
|
|
192
192
|
completed: "completed";
|
|
193
193
|
cancelled: "cancelled";
|
|
194
|
+
failed: "failed";
|
|
194
195
|
running: "running";
|
|
195
196
|
waiting_input: "waiting_input";
|
|
196
|
-
failed: "failed";
|
|
197
197
|
}>;
|
|
198
198
|
createdAt: z.ZodString;
|
|
199
199
|
}, z.core.$strip>;
|
|
@@ -222,9 +222,9 @@ declare const SubagentTemplateInstanceStatusSchema: z.ZodObject<{
|
|
|
222
222
|
status: z.ZodEnum<{
|
|
223
223
|
completed: "completed";
|
|
224
224
|
cancelled: "cancelled";
|
|
225
|
+
failed: "failed";
|
|
225
226
|
running: "running";
|
|
226
227
|
waiting_input: "waiting_input";
|
|
227
|
-
failed: "failed";
|
|
228
228
|
}>;
|
|
229
229
|
result: z.ZodOptional<z.ZodString>;
|
|
230
230
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -274,9 +274,9 @@ declare const SubagentTemplateKernelSchemas: {
|
|
|
274
274
|
status: z.ZodEnum<{
|
|
275
275
|
completed: "completed";
|
|
276
276
|
cancelled: "cancelled";
|
|
277
|
+
failed: "failed";
|
|
277
278
|
running: "running";
|
|
278
279
|
waiting_input: "waiting_input";
|
|
279
|
-
failed: "failed";
|
|
280
280
|
}>;
|
|
281
281
|
result: z.ZodOptional<z.ZodString>;
|
|
282
282
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as AgentRuntimeSelectionSchema, i as AgentRuntimeSelection, n as AgentInstanceStatusSchema, r as AgentRuntimeSchemas, t as AgentInstanceStatus } from "../../schemas-
|
|
2
|
-
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../../namespace-
|
|
1
|
+
import { a as AgentRuntimeSelectionSchema, i as AgentRuntimeSelection, n as AgentInstanceStatusSchema, r as AgentRuntimeSchemas, t as AgentInstanceStatus } from "../../schemas-CoFCV42v.mjs";
|
|
2
|
+
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../../namespace-CfvtDD_U.mjs";
|
|
3
3
|
export { type AgentInstanceStatus, AgentInstanceStatusSchema, AgentRuntimeNamespace, AgentRuntimeSchemas, type AgentRuntimeSelection, AgentRuntimeSelectionSchema, AgentRuntimeSubjects };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../../namespace-
|
|
1
|
+
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../../namespace-CfvtDD_U.mjs";
|
|
2
2
|
export { AgentRuntimeNamespace, AgentRuntimeSubjects };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as AgentRuntimeSelectionSchema, i as AgentRuntimeSelection, n as AgentInstanceStatusSchema, r as AgentRuntimeSchemas, t as AgentInstanceStatus } from "../../schemas-
|
|
1
|
+
import { a as AgentRuntimeSelectionSchema, i as AgentRuntimeSelection, n as AgentInstanceStatusSchema, r as AgentRuntimeSchemas, t as AgentInstanceStatus } from "../../schemas-CoFCV42v.mjs";
|
|
2
2
|
export { AgentInstanceStatus, AgentInstanceStatusSchema, AgentRuntimeSchemas, AgentRuntimeSelection, AgentRuntimeSelectionSchema };
|
|
@@ -10,18 +10,18 @@ declare const FsNamespace: _$_makaio_core0.BusNamespaceDefinition<"fs", {
|
|
|
10
10
|
changed: _$zod.ZodObject<{
|
|
11
11
|
path: _$zod.ZodString;
|
|
12
12
|
kind: _$zod.ZodEnum<{
|
|
13
|
+
change: "change";
|
|
13
14
|
create: "create";
|
|
14
15
|
delete: "delete";
|
|
15
|
-
change: "change";
|
|
16
16
|
}>;
|
|
17
17
|
}, _$zod_v4_core0.$strip>;
|
|
18
18
|
batch: _$zod.ZodObject<{
|
|
19
19
|
changes: _$zod.ZodArray<_$zod.ZodObject<{
|
|
20
20
|
path: _$zod.ZodString;
|
|
21
21
|
kind: _$zod.ZodEnum<{
|
|
22
|
+
change: "change";
|
|
22
23
|
create: "create";
|
|
23
24
|
delete: "delete";
|
|
24
|
-
change: "change";
|
|
25
25
|
}>;
|
|
26
26
|
}, _$zod_v4_core0.$strip>>;
|
|
27
27
|
}, _$zod_v4_core0.$strip>;
|
|
@@ -153,18 +153,18 @@ declare const FsSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.FlatSubjec
|
|
|
153
153
|
changed: _$zod.ZodObject<{
|
|
154
154
|
path: _$zod.ZodString;
|
|
155
155
|
kind: _$zod.ZodEnum<{
|
|
156
|
+
change: "change";
|
|
156
157
|
create: "create";
|
|
157
158
|
delete: "delete";
|
|
158
|
-
change: "change";
|
|
159
159
|
}>;
|
|
160
160
|
}, _$zod_v4_core0.$strip>;
|
|
161
161
|
batch: _$zod.ZodObject<{
|
|
162
162
|
changes: _$zod.ZodArray<_$zod.ZodObject<{
|
|
163
163
|
path: _$zod.ZodString;
|
|
164
164
|
kind: _$zod.ZodEnum<{
|
|
165
|
+
change: "change";
|
|
165
166
|
create: "create";
|
|
166
167
|
delete: "delete";
|
|
167
|
-
change: "change";
|
|
168
168
|
}>;
|
|
169
169
|
}, _$zod_v4_core0.$strip>>;
|
|
170
170
|
}, _$zod_v4_core0.$strip>;
|
|
@@ -294,18 +294,18 @@ declare const FileSystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
294
294
|
changed: _$zod.ZodObject<{
|
|
295
295
|
path: _$zod.ZodString;
|
|
296
296
|
kind: _$zod.ZodEnum<{
|
|
297
|
+
change: "change";
|
|
297
298
|
create: "create";
|
|
298
299
|
delete: "delete";
|
|
299
|
-
change: "change";
|
|
300
300
|
}>;
|
|
301
301
|
}, _$zod_v4_core0.$strip>;
|
|
302
302
|
batch: _$zod.ZodObject<{
|
|
303
303
|
changes: _$zod.ZodArray<_$zod.ZodObject<{
|
|
304
304
|
path: _$zod.ZodString;
|
|
305
305
|
kind: _$zod.ZodEnum<{
|
|
306
|
+
change: "change";
|
|
306
307
|
create: "create";
|
|
307
308
|
delete: "delete";
|
|
308
|
-
change: "change";
|
|
309
309
|
}>;
|
|
310
310
|
}, _$zod_v4_core0.$strip>>;
|
|
311
311
|
}, _$zod_v4_core0.$strip>;
|