@makaio/framework 1.0.0-dev-1781367632837 → 1.0.0-dev-1781368534585
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/contracts/adapter/index.d.mts +2 -2
- package/dist/contracts/adapter/schemas/session-lineage.d.mts +1 -1
- package/dist/contracts/client/index.d.mts +1 -1
- package/dist/contracts/config/index.d.mts +6 -6
- package/dist/contracts/extension/index.d.mts +2 -2
- package/dist/contracts/facet/index.d.mts +1 -1
- package/dist/contracts/harness/index.d.mts +1 -1
- package/dist/contracts/index.d.mts +115 -115
- package/dist/contracts/provider/index.d.mts +1 -1
- 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/{index-fVgKVvta.d.mts → index-BT5tNA3Y.d.mts} +1 -1
- package/dist/{index-CcBAFO-1.d.mts → index-BZPdJ-cc.d.mts} +3 -3
- package/dist/{index-COPhs8Ay.d.mts → index-Buo9H8RK.d.mts} +1 -1
- package/dist/{index-B7uYo0C6.d.mts → index-ClJybiRp.d.mts} +3 -3
- package/dist/{index-C3zfJg6s.d.mts → index-D--1C5cq.d.mts} +9 -9
- package/dist/{index-IekAD8Gp.d.mts → index-D0KbxzzL.d.mts} +8 -8
- package/dist/{index-CncH-7wf.d.mts → index-DVhdhnCz.d.mts} +20 -20
- package/dist/{index-BAhJKQLX.d.mts → index-DfyXMHbr.d.mts} +8 -8
- package/dist/{index-qGJoNJon.d.mts → index-V-TYYJbM.d.mts} +6 -6
- package/dist/{index-Bibt5jAX.d.mts → index-zvz6W1SY.d.mts} +8 -8
- package/dist/{namespace-DRFJN-_z.d.mts → namespace-BybC0T6L.d.mts} +2 -2
- package/dist/{namespace-6OzA9SwY.d.mts → namespace-CWqZfW61.d.mts} +32 -32
- package/dist/{namespace-B60mn8J-2.d.mts → namespace-DC1VWMKj2.d.mts} +2 -2
- package/dist/{namespace-DI9_OYOU.d.mts → namespace-Dg8SmyyE.d.mts} +3 -3
- package/dist/package.json +1 -1
- package/dist/{schemas-Chyj6HuZ.d.mts → schemas-BFO5Ovdp.d.mts} +4 -4
- package/dist/{schemas-DtJWNKZ_2.d.mts → schemas-BFYzBjpp2.d.mts} +9 -9
- package/dist/{schemas-DZUaRcYl.d.mts → schemas-CTgHFHmK.d.mts} +7 -7
- package/dist/{schemas-Dv5FxHDT.d.mts → schemas-Dk1d5uZE.d.mts} +2 -2
- package/dist/services/adapter-subsystem/index.d.mts +2 -2
- package/dist/services/adapter-subsystem/namespace.d.mts +1 -1
- 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/context-rules/index.d.mts +3 -3
- 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 +38 -38
- package/dist/services/preferences/index.d.mts +2 -2
- package/dist/services/preferences/schemas.d.mts +1 -1
- package/dist/services/preferences/storage-namespace.d.mts +2 -2
- package/dist/services/session/index.d.mts +1 -1
- package/dist/services/session/messages/namespace.d.mts +1 -1
- package/dist/services/settings/namespace.d.mts +6 -6
- 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/{session-lineage-CKg6mErA.d.mts → session-lineage-BoyuhtiV.d.mts} +1 -1
- package/dist/{storage-namespace-BXmMUd7a.d.mts → storage-namespace-n4KCNecF.d.mts} +10 -10
- package/dist/{types-BOuU-0Vs.d.mts → types-8pL9-Me7.d.mts} +2 -2
- package/dist/ui-kernel/index.d.mts +4 -4
- package/dist/ui-kernel/pages/namespace.d.mts +4 -4
- package/dist/ui-kernel/pages/schemas.d.mts +1 -1
- package/dist/workflow-engine/index.d.mts +50 -50
- package/package.json +1 -1
|
@@ -13,9 +13,9 @@ declare const PreferenceKeySchema: z.ZodObject<{
|
|
|
13
13
|
scope: z.ZodString;
|
|
14
14
|
context: z.ZodOptional<z.ZodString>;
|
|
15
15
|
viewport: z.ZodOptional<z.ZodEnum<{
|
|
16
|
+
mobile: "mobile";
|
|
16
17
|
desktop: "desktop";
|
|
17
18
|
tablet: "tablet";
|
|
18
|
-
mobile: "mobile";
|
|
19
19
|
}>>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
type PreferenceKey = z.infer<typeof PreferenceKeySchema>;
|
|
@@ -33,9 +33,9 @@ declare const PreferenceItemSchema: z.ZodObject<{
|
|
|
33
33
|
scope: z.ZodString;
|
|
34
34
|
context: z.ZodOptional<z.ZodString>;
|
|
35
35
|
viewport: z.ZodOptional<z.ZodEnum<{
|
|
36
|
+
mobile: "mobile";
|
|
36
37
|
desktop: "desktop";
|
|
37
38
|
tablet: "tablet";
|
|
38
|
-
mobile: "mobile";
|
|
39
39
|
}>>;
|
|
40
40
|
}, z.core.$strip>;
|
|
41
41
|
category: z.ZodString;
|
|
@@ -67,9 +67,9 @@ declare const PreferencesSchemas: {
|
|
|
67
67
|
scope: z.ZodString;
|
|
68
68
|
context: z.ZodOptional<z.ZodString>;
|
|
69
69
|
viewport: z.ZodOptional<z.ZodEnum<{
|
|
70
|
+
mobile: "mobile";
|
|
70
71
|
desktop: "desktop";
|
|
71
72
|
tablet: "tablet";
|
|
72
|
-
mobile: "mobile";
|
|
73
73
|
}>>;
|
|
74
74
|
}, z.core.$strip>;
|
|
75
75
|
category: z.ZodString;
|
|
@@ -94,9 +94,9 @@ declare const PreferencesSchemas: {
|
|
|
94
94
|
scope: z.ZodString;
|
|
95
95
|
context: z.ZodOptional<z.ZodString>;
|
|
96
96
|
viewport: z.ZodOptional<z.ZodEnum<{
|
|
97
|
+
mobile: "mobile";
|
|
97
98
|
desktop: "desktop";
|
|
98
99
|
tablet: "tablet";
|
|
99
|
-
mobile: "mobile";
|
|
100
100
|
}>>;
|
|
101
101
|
}, z.core.$strip>;
|
|
102
102
|
category: z.ZodString;
|
|
@@ -122,9 +122,9 @@ declare const PreferencesSchemas: {
|
|
|
122
122
|
scope: z.ZodString;
|
|
123
123
|
context: z.ZodOptional<z.ZodString>;
|
|
124
124
|
viewport: z.ZodOptional<z.ZodEnum<{
|
|
125
|
+
mobile: "mobile";
|
|
125
126
|
desktop: "desktop";
|
|
126
127
|
tablet: "tablet";
|
|
127
|
-
mobile: "mobile";
|
|
128
128
|
}>>;
|
|
129
129
|
}, z.core.$strip>;
|
|
130
130
|
category: z.ZodString;
|
|
@@ -149,9 +149,9 @@ declare const PreferencesSchemas: {
|
|
|
149
149
|
scope: z.ZodOptional<z.ZodString>;
|
|
150
150
|
context: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
151
151
|
viewport: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
152
|
+
mobile: "mobile";
|
|
152
153
|
desktop: "desktop";
|
|
153
154
|
tablet: "tablet";
|
|
154
|
-
mobile: "mobile";
|
|
155
155
|
}>>>;
|
|
156
156
|
}, z.core.$strip>>;
|
|
157
157
|
category: z.ZodOptional<z.ZodString>;
|
|
@@ -166,9 +166,9 @@ declare const PreferencesSchemas: {
|
|
|
166
166
|
scope: z.ZodString;
|
|
167
167
|
context: z.ZodOptional<z.ZodString>;
|
|
168
168
|
viewport: z.ZodOptional<z.ZodEnum<{
|
|
169
|
+
mobile: "mobile";
|
|
169
170
|
desktop: "desktop";
|
|
170
171
|
tablet: "tablet";
|
|
171
|
-
mobile: "mobile";
|
|
172
172
|
}>>;
|
|
173
173
|
}, z.core.$strip>;
|
|
174
174
|
category: z.ZodString;
|
|
@@ -420,9 +420,9 @@ declare const AgentInstanceStatusSchema: z.ZodObject<{
|
|
|
420
420
|
status: z.ZodEnum<{
|
|
421
421
|
completed: "completed";
|
|
422
422
|
cancelled: "cancelled";
|
|
423
|
-
failed: "failed";
|
|
424
423
|
running: "running";
|
|
425
424
|
waiting_input: "waiting_input";
|
|
425
|
+
failed: "failed";
|
|
426
426
|
}>;
|
|
427
427
|
result: z.ZodOptional<z.ZodString>;
|
|
428
428
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -878,9 +878,9 @@ declare const AgentRuntimeSchemas: {
|
|
|
878
878
|
status: z.ZodEnum<{
|
|
879
879
|
completed: "completed";
|
|
880
880
|
cancelled: "cancelled";
|
|
881
|
-
failed: "failed";
|
|
882
881
|
running: "running";
|
|
883
882
|
waiting_input: "waiting_input";
|
|
883
|
+
failed: "failed";
|
|
884
884
|
}>;
|
|
885
885
|
result: z.ZodOptional<z.ZodString>;
|
|
886
886
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { S as ProviderConfigFileRecordSchema, _ as BindingRecord, a as CanonicalProviderConfigPatchSchema, b as EffectiveAdapterSchema, c as CreateCanonicalProviderConfigInputSchema, d as ProviderConfigFileSet, f as AdapterFileConfig, g as AdapterSubsystemSchemas, h as AdapterReadinessSchema, i as CanonicalProviderConfigPatch, l as AdapterFileConfigSet, m as AdapterReadiness, n as CanonicalProviderConfigCredentialRefsPayload, o as CreateCanonicalProviderConfigInput, p as AdapterFileConfigSchema, r as CanonicalProviderConfigCredentialRefsSchema, s as CreateCanonicalProviderConfigInputPayload, t as CanonicalProviderConfigCredentialRefs, u as IAdapterConfigRepository, v as BindingRecordSchema, x as ProviderConfigFileRecord, y as EffectiveAdapter } from "../../index-
|
|
2
|
-
import { n as AdapterSubsystemSubjects, t as AdapterSubsystemNamespace } from "../../namespace-
|
|
1
|
+
import { S as ProviderConfigFileRecordSchema, _ as BindingRecord, a as CanonicalProviderConfigPatchSchema, b as EffectiveAdapterSchema, c as CreateCanonicalProviderConfigInputSchema, d as ProviderConfigFileSet, f as AdapterFileConfig, g as AdapterSubsystemSchemas, h as AdapterReadinessSchema, i as CanonicalProviderConfigPatch, l as AdapterFileConfigSet, m as AdapterReadiness, n as CanonicalProviderConfigCredentialRefsPayload, o as CreateCanonicalProviderConfigInput, p as AdapterFileConfigSchema, r as CanonicalProviderConfigCredentialRefsSchema, s as CreateCanonicalProviderConfigInputPayload, t as CanonicalProviderConfigCredentialRefs, u as IAdapterConfigRepository, v as BindingRecordSchema, x as ProviderConfigFileRecord, y as EffectiveAdapter } from "../../index-DVhdhnCz.mjs";
|
|
2
|
+
import { n as AdapterSubsystemSubjects, t as AdapterSubsystemNamespace } from "../../namespace-CWqZfW61.mjs";
|
|
3
3
|
export { AdapterFileConfig, AdapterFileConfigSchema, AdapterFileConfigSet, AdapterReadiness, AdapterReadinessSchema, AdapterSubsystemNamespace, AdapterSubsystemSchemas, AdapterSubsystemSubjects, BindingRecord, BindingRecordSchema, CanonicalProviderConfigCredentialRefs, CanonicalProviderConfigCredentialRefsPayload, CanonicalProviderConfigCredentialRefsSchema, CanonicalProviderConfigPatch, CanonicalProviderConfigPatchSchema, CreateCanonicalProviderConfigInput, CreateCanonicalProviderConfigInputPayload, CreateCanonicalProviderConfigInputSchema, EffectiveAdapter, EffectiveAdapterSchema, IAdapterConfigRepository, ProviderConfigFileRecord, ProviderConfigFileRecordSchema, ProviderConfigFileSet };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as AdapterSubsystemSubjects, t as AdapterSubsystemNamespace } from "../../namespace-
|
|
1
|
+
import { n as AdapterSubsystemSubjects, t as AdapterSubsystemNamespace } from "../../namespace-CWqZfW61.mjs";
|
|
2
2
|
export { AdapterSubsystemNamespace, AdapterSubsystemSubjects };
|
|
@@ -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-Dk1d5uZE.mjs";
|
|
2
|
+
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../../namespace-BybC0T6L.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-BybC0T6L.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-Dk1d5uZE.mjs";
|
|
2
2
|
export { AgentInstanceStatus, AgentInstanceStatusSchema, AgentRuntimeSchemas, AgentRuntimeSelection, AgentRuntimeSelectionSchema };
|
|
@@ -161,8 +161,8 @@ declare const ContextRuleChangedEventSchema: z.ZodObject<{
|
|
|
161
161
|
ruleId: z.ZodString;
|
|
162
162
|
changeType: z.ZodEnum<{
|
|
163
163
|
created: "created";
|
|
164
|
-
updated: "updated";
|
|
165
164
|
deleted: "deleted";
|
|
165
|
+
updated: "updated";
|
|
166
166
|
}>;
|
|
167
167
|
previous: z.ZodNullable<z.ZodObject<{
|
|
168
168
|
scope: z.ZodEnum<{
|
|
@@ -314,8 +314,8 @@ declare const ContextRulesServiceNamespace: _$_makaio_core0.BusNamespaceDefiniti
|
|
|
314
314
|
ruleId: _$zod.ZodString;
|
|
315
315
|
changeType: _$zod.ZodEnum<{
|
|
316
316
|
created: "created";
|
|
317
|
-
updated: "updated";
|
|
318
317
|
deleted: "deleted";
|
|
318
|
+
updated: "updated";
|
|
319
319
|
}>;
|
|
320
320
|
previous: _$zod.ZodNullable<_$zod.ZodObject<{
|
|
321
321
|
scope: _$zod.ZodEnum<{
|
|
@@ -384,8 +384,8 @@ declare const ContextRulesServiceSubjects: _$_makaio_core0.BusSubjects<_$_makaio
|
|
|
384
384
|
ruleId: _$zod.ZodString;
|
|
385
385
|
changeType: _$zod.ZodEnum<{
|
|
386
386
|
created: "created";
|
|
387
|
-
updated: "updated";
|
|
388
387
|
deleted: "deleted";
|
|
388
|
+
updated: "updated";
|
|
389
389
|
}>;
|
|
390
390
|
previous: _$zod.ZodNullable<_$zod.ZodObject<{
|
|
391
391
|
scope: _$zod.ZodEnum<{
|
|
@@ -11,8 +11,8 @@ declare const FsNamespace: _$_makaio_core0.BusNamespaceDefinition<"fs", {
|
|
|
11
11
|
path: _$zod.ZodString;
|
|
12
12
|
kind: _$zod.ZodEnum<{
|
|
13
13
|
create: "create";
|
|
14
|
-
change: "change";
|
|
15
14
|
delete: "delete";
|
|
15
|
+
change: "change";
|
|
16
16
|
}>;
|
|
17
17
|
}, _$zod_v4_core0.$strip>;
|
|
18
18
|
batch: _$zod.ZodObject<{
|
|
@@ -20,8 +20,8 @@ declare const FsNamespace: _$_makaio_core0.BusNamespaceDefinition<"fs", {
|
|
|
20
20
|
path: _$zod.ZodString;
|
|
21
21
|
kind: _$zod.ZodEnum<{
|
|
22
22
|
create: "create";
|
|
23
|
-
change: "change";
|
|
24
23
|
delete: "delete";
|
|
24
|
+
change: "change";
|
|
25
25
|
}>;
|
|
26
26
|
}, _$zod_v4_core0.$strip>>;
|
|
27
27
|
}, _$zod_v4_core0.$strip>;
|
|
@@ -154,8 +154,8 @@ declare const FsSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.FlatSubjec
|
|
|
154
154
|
path: _$zod.ZodString;
|
|
155
155
|
kind: _$zod.ZodEnum<{
|
|
156
156
|
create: "create";
|
|
157
|
-
change: "change";
|
|
158
157
|
delete: "delete";
|
|
158
|
+
change: "change";
|
|
159
159
|
}>;
|
|
160
160
|
}, _$zod_v4_core0.$strip>;
|
|
161
161
|
batch: _$zod.ZodObject<{
|
|
@@ -163,8 +163,8 @@ declare const FsSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.FlatSubjec
|
|
|
163
163
|
path: _$zod.ZodString;
|
|
164
164
|
kind: _$zod.ZodEnum<{
|
|
165
165
|
create: "create";
|
|
166
|
-
change: "change";
|
|
167
166
|
delete: "delete";
|
|
167
|
+
change: "change";
|
|
168
168
|
}>;
|
|
169
169
|
}, _$zod_v4_core0.$strip>>;
|
|
170
170
|
}, _$zod_v4_core0.$strip>;
|
|
@@ -295,8 +295,8 @@ declare const FileSystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
295
295
|
path: _$zod.ZodString;
|
|
296
296
|
kind: _$zod.ZodEnum<{
|
|
297
297
|
create: "create";
|
|
298
|
-
change: "change";
|
|
299
298
|
delete: "delete";
|
|
299
|
+
change: "change";
|
|
300
300
|
}>;
|
|
301
301
|
}, _$zod_v4_core0.$strip>;
|
|
302
302
|
batch: _$zod.ZodObject<{
|
|
@@ -304,8 +304,8 @@ declare const FileSystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
304
304
|
path: _$zod.ZodString;
|
|
305
305
|
kind: _$zod.ZodEnum<{
|
|
306
306
|
create: "create";
|
|
307
|
-
change: "change";
|
|
308
307
|
delete: "delete";
|
|
308
|
+
change: "change";
|
|
309
309
|
}>;
|
|
310
310
|
}, _$zod_v4_core0.$strip>>;
|
|
311
311
|
}, _$zod_v4_core0.$strip>;
|
|
@@ -6,8 +6,8 @@ import { z } from "zod";
|
|
|
6
6
|
*/
|
|
7
7
|
declare const FsChangeKindSchema: z.ZodEnum<{
|
|
8
8
|
create: "create";
|
|
9
|
-
change: "change";
|
|
10
9
|
delete: "delete";
|
|
10
|
+
change: "change";
|
|
11
11
|
}>;
|
|
12
12
|
type FsChangeKind = z.infer<typeof FsChangeKindSchema>;
|
|
13
13
|
/**
|
|
@@ -17,8 +17,8 @@ declare const FsChangedSchema: z.ZodObject<{
|
|
|
17
17
|
path: z.ZodString;
|
|
18
18
|
kind: z.ZodEnum<{
|
|
19
19
|
create: "create";
|
|
20
|
-
change: "change";
|
|
21
20
|
delete: "delete";
|
|
21
|
+
change: "change";
|
|
22
22
|
}>;
|
|
23
23
|
}, z.core.$strip>;
|
|
24
24
|
type FsChanged = z.infer<typeof FsChangedSchema>;
|
|
@@ -30,8 +30,8 @@ declare const FsBatchSchema: z.ZodObject<{
|
|
|
30
30
|
path: z.ZodString;
|
|
31
31
|
kind: z.ZodEnum<{
|
|
32
32
|
create: "create";
|
|
33
|
-
change: "change";
|
|
34
33
|
delete: "delete";
|
|
34
|
+
change: "change";
|
|
35
35
|
}>;
|
|
36
36
|
}, z.core.$strip>>;
|
|
37
37
|
}, z.core.$strip>;
|
|
@@ -14,6 +14,7 @@ declare const HarnessInputSchema: z.ZodObject<{
|
|
|
14
14
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
15
15
|
name: z.ZodString;
|
|
16
16
|
adapterName: z.ZodOptional<z.ZodString>;
|
|
17
|
+
credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
17
18
|
clientId: z.ZodOptional<z.ZodString>;
|
|
18
19
|
toolCapabilityMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
19
20
|
"file.read": "file.read";
|
|
@@ -36,7 +37,6 @@ declare const HarnessInputSchema: z.ZodObject<{
|
|
|
36
37
|
"always-ask": "always-ask";
|
|
37
38
|
"full-access": "full-access";
|
|
38
39
|
}>>>;
|
|
39
|
-
credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
40
40
|
approvalPolicy: z.ZodEnum<{
|
|
41
41
|
reject: "reject";
|
|
42
42
|
"always-ask": "always-ask";
|
|
@@ -131,6 +131,7 @@ declare const HarnessStorageNamespace: _$_makaio_storage_core0.StorageNamespaceD
|
|
|
131
131
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
132
132
|
name: z.ZodString;
|
|
133
133
|
adapterName: z.ZodOptional<z.ZodString>;
|
|
134
|
+
credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
134
135
|
clientId: z.ZodOptional<z.ZodString>;
|
|
135
136
|
toolCapabilityMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
136
137
|
"file.read": "file.read";
|
|
@@ -153,7 +154,6 @@ declare const HarnessStorageNamespace: _$_makaio_storage_core0.StorageNamespaceD
|
|
|
153
154
|
"always-ask": "always-ask";
|
|
154
155
|
"full-access": "full-access";
|
|
155
156
|
}>>>;
|
|
156
|
-
credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
157
157
|
approvalPolicy: z.ZodEnum<{
|
|
158
158
|
reject: "reject";
|
|
159
159
|
"always-ask": "always-ask";
|
|
@@ -738,6 +738,7 @@ declare const HarnessStorageSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core
|
|
|
738
738
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
739
739
|
name: z.ZodString;
|
|
740
740
|
adapterName: z.ZodOptional<z.ZodString>;
|
|
741
|
+
credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
741
742
|
clientId: z.ZodOptional<z.ZodString>;
|
|
742
743
|
toolCapabilityMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
743
744
|
"file.read": "file.read";
|
|
@@ -760,7 +761,6 @@ declare const HarnessStorageSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core
|
|
|
760
761
|
"always-ask": "always-ask";
|
|
761
762
|
"full-access": "full-access";
|
|
762
763
|
}>>>;
|
|
763
|
-
credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
764
764
|
approvalPolicy: z.ZodEnum<{
|
|
765
765
|
reject: "reject";
|
|
766
766
|
"always-ask": "always-ask";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { a as ResolveIdResponseSchema, c as ResolveNameResponse, i as ResolveIdResponse, l as ResolveNameResponseSchema, n as ResolveIdRequest, o as ResolveNameRequest, r as ResolveIdRequestSchema, s as ResolveNameRequestSchema, t as AdapterRuntimeSchemas } from "../schemas-Kq33MTPY.mjs";
|
|
2
2
|
import { n as AdapterRuntimeSubjects, t as AdapterRuntimeNamespace } from "../namespace-nlsvvMtD.mjs";
|
|
3
3
|
import { a as resolveDeterministicAdapterId, i as registerAdapterRuntimeIdentityHandlers, n as RegisteredAdapterRuntimeIdentityHandlers, r as buildDeterministicAdapterId, t as AdapterIdentityRegistry } from "../index-Bw_zL7Rs.mjs";
|
|
4
|
-
import { _ as BindingRecord } from "../index-
|
|
5
|
-
import { a as AgentRuntimeSelectionSchema, i as AgentRuntimeSelection, n as AgentInstanceStatusSchema, r as AgentRuntimeSchemas, t as AgentInstanceStatus } from "../schemas-
|
|
6
|
-
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../namespace-
|
|
4
|
+
import { _ as BindingRecord } from "../index-DVhdhnCz.mjs";
|
|
5
|
+
import { a as AgentRuntimeSelectionSchema, i as AgentRuntimeSelection, n as AgentInstanceStatusSchema, r as AgentRuntimeSchemas, t as AgentInstanceStatus } from "../schemas-Dk1d5uZE.mjs";
|
|
6
|
+
import { n as AgentRuntimeSubjects, t as AgentRuntimeNamespace } from "../namespace-BybC0T6L.mjs";
|
|
7
7
|
import { t as CapabilityService } from "../index-BnQSPC6c.mjs";
|
|
8
8
|
import { n as CodebaseSubjects, t as CodebaseNamespace } from "../namespace-XTGCaSXj.mjs";
|
|
9
9
|
import { n as CodebaseChangedEventSchema, r as CodebaseSchemas, t as CodebaseChangedEvent } from "../schemas-B77Gi8Xr.mjs";
|
|
@@ -21,7 +21,7 @@ import { a as agents, s as sessions } from "../schema-C-yfxlRI.mjs";
|
|
|
21
21
|
import { n as SessionEventStorageSubjects, t as SessionEventStorageNamespace } from "../namespace-BxxBhcV_.mjs";
|
|
22
22
|
import { t as TurnStorageNamespace } from "../namespace-aJJfBJU5.mjs";
|
|
23
23
|
import { n as TurnStorageSubjects } from "../namespace--s0d86h-.mjs";
|
|
24
|
-
import { i as MessageStorageSubjects, r as MessageStorageNamespace } from "../namespace-
|
|
24
|
+
import { i as MessageStorageSubjects, r as MessageStorageNamespace } from "../namespace-Dg8SmyyE.mjs";
|
|
25
25
|
import { a as createToolContributionProcessor, c as ToolRegistryOptions, d as ToolsetPolicy, f as ToolsetPolicyProvider, l as ToolsWithToolsetsResult, o as ToolRegistry, s as ListToolsFilter, u as ToolsetInfo } from "../index-BxFA1XcP.mjs";
|
|
26
26
|
import { t as ToolApprovalService } from "../index-Cz9JMjZK.mjs";
|
|
27
27
|
import { t as TrayMenuService } from "../index-BMpRB6iE.mjs";
|
|
@@ -29,10 +29,10 @@ import { a as TrayMenuGroupSchema, c as TrayMenuListEntry, d as TrayMenuSchemas,
|
|
|
29
29
|
import { n as TrayMenuSubjects, t as TrayMenuNamespace } from "../namespace-Bx40zNgT.mjs";
|
|
30
30
|
import { C as ModelRegistrySchemas, S as ModelRegistrySchema, T as ProviderModelOverrideSchema, _ as ModelRegistryGetLabModelsResponse, a as ModelRegistryService, b as ModelRegistryRefreshRequest, c as IModelRegistryFetcher, d as ModelRegistry, f as ModelRegistryCheckModelInProvidersRequest, g as ModelRegistryGetLabModelsRequest, h as ModelRegistryGetForProviderResponse, i as ModelRegistryProviderNotFoundError, l as ModelRegistryNamespace, m as ModelRegistryGetForProviderRequest, n as CachedRegistryFetcher, o as ModelRegistryServiceOptions, p as ModelRegistryCheckModelInProvidersResponse, r as FallbackRegistryFetcher, s as IModelRegistryCache, t as mergeModelMetadata, u as ModelRegistrySubjects, v as ModelRegistryGetProviderModelsRequest, w as ProviderModelOverride, x as ModelRegistryRefreshResponse, y as ModelRegistryGetProviderModelsResponse } from "../index-9IDJUJ4X.mjs";
|
|
31
31
|
import { a as InternalPendingRequest, c as SubagentServiceToken, i as InputResolver, l as subagentServicePackage, n as TrackOptions, o as SpawnOptions, r as AwaitResult, s as TrackedSubagent, t as SubagentManager, u as SubagentService } from "../index-zgm2j9V92.mjs";
|
|
32
|
-
import { a as PreferenceValueSchema, i as PreferenceKeySchema, n as PreferenceItemSchema, o as PreferencesSchemas, r as PreferenceKey, t as PreferenceItem } from "../schemas-
|
|
33
|
-
import { n as PreferencesSubjects, t as PreferencesNamespace } from "../storage-namespace-
|
|
34
|
-
import { _ as SubagentTemplateUpdate, a as SubagentTemplateInstance, c as SubagentTemplateInstanceStatusSchema, d as SubagentTemplateSettingsSchemas, f as SubagentTemplateSpawnRequest, g as SubagentTemplateSummarySchema, h as SubagentTemplateSummary, i as SubagentTemplateCreateSchema, l as SubagentTemplateKernelSchemas, m as SubagentTemplateSpawnedEventSchema, n as SubagentTemplateCompletedEventSchema, o as SubagentTemplateInstanceSchema, p as SubagentTemplateSpawnRequestSchema, r as SubagentTemplateCreate, s as SubagentTemplateInstanceStatus, t as SubagentTemplate, u as SubagentTemplateSchema, v as SubagentTemplateUpdateSchema } from "../schemas-
|
|
35
|
-
import { n as SubagentTemplateSubjects, t as SubagentTemplateKernelNamespace } from "../namespace-
|
|
32
|
+
import { a as PreferenceValueSchema, i as PreferenceKeySchema, n as PreferenceItemSchema, o as PreferencesSchemas, r as PreferenceKey, t as PreferenceItem } from "../schemas-CTgHFHmK.mjs";
|
|
33
|
+
import { n as PreferencesSubjects, t as PreferencesNamespace } from "../storage-namespace-n4KCNecF.mjs";
|
|
34
|
+
import { _ as SubagentTemplateUpdate, a as SubagentTemplateInstance, c as SubagentTemplateInstanceStatusSchema, d as SubagentTemplateSettingsSchemas, f as SubagentTemplateSpawnRequest, g as SubagentTemplateSummarySchema, h as SubagentTemplateSummary, i as SubagentTemplateCreateSchema, l as SubagentTemplateKernelSchemas, m as SubagentTemplateSpawnedEventSchema, n as SubagentTemplateCompletedEventSchema, o as SubagentTemplateInstanceSchema, p as SubagentTemplateSpawnRequestSchema, r as SubagentTemplateCreate, s as SubagentTemplateInstanceStatus, t as SubagentTemplate, u as SubagentTemplateSchema, v as SubagentTemplateUpdateSchema } from "../schemas-BFYzBjpp2.mjs";
|
|
35
|
+
import { n as SubagentTemplateSubjects, t as SubagentTemplateKernelNamespace } from "../namespace-DC1VWMKj2.mjs";
|
|
36
36
|
import * as _$zod from "zod";
|
|
37
37
|
import { z } from "zod";
|
|
38
38
|
import * as _$_makaio_core0 from "@makaio/framework/core";
|
|
@@ -1288,13 +1288,13 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1288
1288
|
displayName: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1289
1289
|
protocol: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1290
1290
|
clientId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1291
|
+
settings: _$zod.ZodOptional<_$zod.ZodType<Record<string, unknown>, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1291
1292
|
helpLinks: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodObject<{
|
|
1292
1293
|
label: _$zod.ZodString;
|
|
1293
1294
|
url: _$zod.ZodString;
|
|
1294
1295
|
}, _$zod_v4_core0.$strict>>>;
|
|
1295
1296
|
instructions: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1296
1297
|
providerDefinitionIds: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodString>>;
|
|
1297
|
-
settings: _$zod.ZodOptional<_$zod.ZodType<Record<string, unknown>, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1298
1298
|
name: _$zod.ZodString;
|
|
1299
1299
|
enabled: _$zod.ZodBoolean;
|
|
1300
1300
|
bindings: _$zod.ZodArray<_$zod.ZodObject<{
|
|
@@ -1313,13 +1313,13 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1313
1313
|
displayName: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1314
1314
|
protocol: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1315
1315
|
clientId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1316
|
+
settings: _$zod.ZodOptional<_$zod.ZodType<Record<string, unknown>, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1316
1317
|
helpLinks: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodObject<{
|
|
1317
1318
|
label: _$zod.ZodString;
|
|
1318
1319
|
url: _$zod.ZodString;
|
|
1319
1320
|
}, _$zod_v4_core0.$strict>>>;
|
|
1320
1321
|
instructions: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1321
1322
|
providerDefinitionIds: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodString>>;
|
|
1322
|
-
settings: _$zod.ZodOptional<_$zod.ZodType<Record<string, unknown>, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1323
1323
|
name: _$zod.ZodString;
|
|
1324
1324
|
enabled: _$zod.ZodBoolean;
|
|
1325
1325
|
bindings: _$zod.ZodArray<_$zod.ZodObject<{
|
|
@@ -1341,8 +1341,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1341
1341
|
name: _$zod.ZodString;
|
|
1342
1342
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1343
1343
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1344
|
-
disabled: "disabled";
|
|
1345
1344
|
enabled: "enabled";
|
|
1345
|
+
disabled: "disabled";
|
|
1346
1346
|
visible: "visible";
|
|
1347
1347
|
}>>>;
|
|
1348
1348
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1368,8 +1368,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1368
1368
|
name: _$zod.ZodString;
|
|
1369
1369
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1370
1370
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1371
|
-
disabled: "disabled";
|
|
1372
1371
|
enabled: "enabled";
|
|
1372
|
+
disabled: "disabled";
|
|
1373
1373
|
visible: "visible";
|
|
1374
1374
|
}>>>;
|
|
1375
1375
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1395,8 +1395,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1395
1395
|
name: _$zod.ZodString;
|
|
1396
1396
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1397
1397
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1398
|
-
disabled: "disabled";
|
|
1399
1398
|
enabled: "enabled";
|
|
1399
|
+
disabled: "disabled";
|
|
1400
1400
|
visible: "visible";
|
|
1401
1401
|
}>>>;
|
|
1402
1402
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1459,8 +1459,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1459
1459
|
name: _$zod.ZodString;
|
|
1460
1460
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1461
1461
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1462
|
-
disabled: "disabled";
|
|
1463
1462
|
enabled: "enabled";
|
|
1463
|
+
disabled: "disabled";
|
|
1464
1464
|
visible: "visible";
|
|
1465
1465
|
}>>>;
|
|
1466
1466
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1606,8 +1606,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1606
1606
|
openai: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1607
1607
|
}, _$zod_v4_core0.$strip>>;
|
|
1608
1608
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1609
|
-
disabled: "disabled";
|
|
1610
1609
|
enabled: "enabled";
|
|
1610
|
+
disabled: "disabled";
|
|
1611
1611
|
visible: "visible";
|
|
1612
1612
|
}>>>;
|
|
1613
1613
|
modelFilterMode: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
@@ -1623,8 +1623,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1623
1623
|
name: _$zod.ZodString;
|
|
1624
1624
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1625
1625
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1626
|
-
disabled: "disabled";
|
|
1627
1626
|
enabled: "enabled";
|
|
1627
|
+
disabled: "disabled";
|
|
1628
1628
|
visible: "visible";
|
|
1629
1629
|
}>>>;
|
|
1630
1630
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1649,8 +1649,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1649
1649
|
openai: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1650
1650
|
}, _$zod_v4_core0.$strip>>>;
|
|
1651
1651
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1652
|
-
disabled: "disabled";
|
|
1653
1652
|
enabled: "enabled";
|
|
1653
|
+
disabled: "disabled";
|
|
1654
1654
|
visible: "visible";
|
|
1655
1655
|
}>>>;
|
|
1656
1656
|
enabled: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
@@ -1663,8 +1663,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1663
1663
|
name: _$zod.ZodString;
|
|
1664
1664
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1665
1665
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1666
|
-
disabled: "disabled";
|
|
1667
1666
|
enabled: "enabled";
|
|
1667
|
+
disabled: "disabled";
|
|
1668
1668
|
visible: "visible";
|
|
1669
1669
|
}>>>;
|
|
1670
1670
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1691,8 +1691,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1691
1691
|
name: _$zod.ZodString;
|
|
1692
1692
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1693
1693
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1694
|
-
disabled: "disabled";
|
|
1695
1694
|
enabled: "enabled";
|
|
1695
|
+
disabled: "disabled";
|
|
1696
1696
|
visible: "visible";
|
|
1697
1697
|
}>>>;
|
|
1698
1698
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1726,8 +1726,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1726
1726
|
name: _$zod.ZodString;
|
|
1727
1727
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1728
1728
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1729
|
-
disabled: "disabled";
|
|
1730
1729
|
enabled: "enabled";
|
|
1730
|
+
disabled: "disabled";
|
|
1731
1731
|
visible: "visible";
|
|
1732
1732
|
}>>>;
|
|
1733
1733
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1758,8 +1758,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1758
1758
|
name: _$zod.ZodString;
|
|
1759
1759
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1760
1760
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1761
|
-
disabled: "disabled";
|
|
1762
1761
|
enabled: "enabled";
|
|
1762
|
+
disabled: "disabled";
|
|
1763
1763
|
visible: "visible";
|
|
1764
1764
|
}>>>;
|
|
1765
1765
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1798,13 +1798,13 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1798
1798
|
displayName: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1799
1799
|
protocol: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1800
1800
|
clientId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1801
|
+
settings: _$zod.ZodOptional<_$zod.ZodType<Record<string, unknown>, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1801
1802
|
helpLinks: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodObject<{
|
|
1802
1803
|
label: _$zod.ZodString;
|
|
1803
1804
|
url: _$zod.ZodString;
|
|
1804
1805
|
}, _$zod_v4_core0.$strict>>>;
|
|
1805
1806
|
instructions: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1806
1807
|
providerDefinitionIds: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodString>>;
|
|
1807
|
-
settings: _$zod.ZodOptional<_$zod.ZodType<Record<string, unknown>, Record<string, unknown>, _$zod_v4_core0.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1808
1808
|
name: _$zod.ZodString;
|
|
1809
1809
|
enabled: _$zod.ZodBoolean;
|
|
1810
1810
|
bindings: _$zod.ZodArray<_$zod.ZodObject<{
|
|
@@ -1863,8 +1863,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1863
1863
|
name: _$zod.ZodString;
|
|
1864
1864
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1865
1865
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1866
|
-
disabled: "disabled";
|
|
1867
1866
|
enabled: "enabled";
|
|
1867
|
+
disabled: "disabled";
|
|
1868
1868
|
visible: "visible";
|
|
1869
1869
|
}>>>;
|
|
1870
1870
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1883,8 +1883,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
1883
1883
|
name: _$zod.ZodString;
|
|
1884
1884
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1885
1885
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1886
|
-
disabled: "disabled";
|
|
1887
1886
|
enabled: "enabled";
|
|
1887
|
+
disabled: "disabled";
|
|
1888
1888
|
visible: "visible";
|
|
1889
1889
|
}>>>;
|
|
1890
1890
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -2339,9 +2339,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
2339
2339
|
status: _$zod.ZodEnum<{
|
|
2340
2340
|
completed: "completed";
|
|
2341
2341
|
cancelled: "cancelled";
|
|
2342
|
-
failed: "failed";
|
|
2343
2342
|
running: "running";
|
|
2344
2343
|
waiting_input: "waiting_input";
|
|
2344
|
+
failed: "failed";
|
|
2345
2345
|
}>;
|
|
2346
2346
|
result: _$zod.ZodOptional<_$zod.ZodString>;
|
|
2347
2347
|
error: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -3207,8 +3207,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
3207
3207
|
ruleId: _$zod.ZodString;
|
|
3208
3208
|
changeType: _$zod.ZodEnum<{
|
|
3209
3209
|
created: "created";
|
|
3210
|
-
updated: "updated";
|
|
3211
3210
|
deleted: "deleted";
|
|
3211
|
+
updated: "updated";
|
|
3212
3212
|
}>;
|
|
3213
3213
|
previous: _$zod.ZodNullable<_$zod.ZodObject<{
|
|
3214
3214
|
scope: _$zod.ZodEnum<{
|
|
@@ -3807,8 +3807,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
3807
3807
|
path: _$zod.ZodString;
|
|
3808
3808
|
kind: _$zod.ZodEnum<{
|
|
3809
3809
|
create: "create";
|
|
3810
|
-
change: "change";
|
|
3811
3810
|
delete: "delete";
|
|
3811
|
+
change: "change";
|
|
3812
3812
|
}>;
|
|
3813
3813
|
}, _$zod_v4_core0.$strip>;
|
|
3814
3814
|
batch: _$zod.ZodObject<{
|
|
@@ -3816,8 +3816,8 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
3816
3816
|
path: _$zod.ZodString;
|
|
3817
3817
|
kind: _$zod.ZodEnum<{
|
|
3818
3818
|
create: "create";
|
|
3819
|
-
change: "change";
|
|
3820
3819
|
delete: "delete";
|
|
3820
|
+
change: "change";
|
|
3821
3821
|
}>;
|
|
3822
3822
|
}, _$zod_v4_core0.$strip>>;
|
|
3823
3823
|
}, _$zod_v4_core0.$strip>;
|
|
@@ -4008,6 +4008,7 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
4008
4008
|
env: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
4009
4009
|
name: _$zod.ZodString;
|
|
4010
4010
|
adapterName: _$zod.ZodOptional<_$zod.ZodString>;
|
|
4011
|
+
credentials: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
4011
4012
|
clientId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
4012
4013
|
toolCapabilityMap: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodReadonly<_$zod.ZodArray<_$zod.ZodEnum<{
|
|
4013
4014
|
"file.read": "file.read";
|
|
@@ -4030,7 +4031,6 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
4030
4031
|
"always-ask": "always-ask";
|
|
4031
4032
|
"full-access": "full-access";
|
|
4032
4033
|
}>>>;
|
|
4033
|
-
credentials: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
4034
4034
|
approvalPolicy: _$zod.ZodEnum<{
|
|
4035
4035
|
reject: "reject";
|
|
4036
4036
|
"always-ask": "always-ask";
|
|
@@ -5065,9 +5065,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
5065
5065
|
scope: _$zod.ZodString;
|
|
5066
5066
|
context: _$zod.ZodOptional<_$zod.ZodString>;
|
|
5067
5067
|
viewport: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
5068
|
+
mobile: "mobile";
|
|
5068
5069
|
desktop: "desktop";
|
|
5069
5070
|
tablet: "tablet";
|
|
5070
|
-
mobile: "mobile";
|
|
5071
5071
|
}>>;
|
|
5072
5072
|
}, _$zod_v4_core0.$strip>;
|
|
5073
5073
|
category: _$zod.ZodString;
|
|
@@ -5086,9 +5086,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
5086
5086
|
scope: _$zod.ZodString;
|
|
5087
5087
|
context: _$zod.ZodOptional<_$zod.ZodString>;
|
|
5088
5088
|
viewport: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
5089
|
+
mobile: "mobile";
|
|
5089
5090
|
desktop: "desktop";
|
|
5090
5091
|
tablet: "tablet";
|
|
5091
|
-
mobile: "mobile";
|
|
5092
5092
|
}>>;
|
|
5093
5093
|
}, _$zod_v4_core0.$strip>;
|
|
5094
5094
|
category: _$zod.ZodString;
|
|
@@ -5108,9 +5108,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
5108
5108
|
scope: _$zod.ZodString;
|
|
5109
5109
|
context: _$zod.ZodOptional<_$zod.ZodString>;
|
|
5110
5110
|
viewport: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
5111
|
+
mobile: "mobile";
|
|
5111
5112
|
desktop: "desktop";
|
|
5112
5113
|
tablet: "tablet";
|
|
5113
|
-
mobile: "mobile";
|
|
5114
5114
|
}>>;
|
|
5115
5115
|
}, _$zod_v4_core0.$strip>;
|
|
5116
5116
|
category: _$zod.ZodString;
|
|
@@ -5129,9 +5129,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
5129
5129
|
scope: _$zod.ZodOptional<_$zod.ZodString>;
|
|
5130
5130
|
context: _$zod.ZodOptional<_$zod.ZodOptional<_$zod.ZodString>>;
|
|
5131
5131
|
viewport: _$zod.ZodOptional<_$zod.ZodOptional<_$zod.ZodEnum<{
|
|
5132
|
+
mobile: "mobile";
|
|
5132
5133
|
desktop: "desktop";
|
|
5133
5134
|
tablet: "tablet";
|
|
5134
|
-
mobile: "mobile";
|
|
5135
5135
|
}>>>;
|
|
5136
5136
|
}, _$zod_v4_core0.$strip>>;
|
|
5137
5137
|
category: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -5146,9 +5146,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
5146
5146
|
scope: _$zod.ZodString;
|
|
5147
5147
|
context: _$zod.ZodOptional<_$zod.ZodString>;
|
|
5148
5148
|
viewport: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
5149
|
+
mobile: "mobile";
|
|
5149
5150
|
desktop: "desktop";
|
|
5150
5151
|
tablet: "tablet";
|
|
5151
|
-
mobile: "mobile";
|
|
5152
5152
|
}>>;
|
|
5153
5153
|
}, _$zod_v4_core0.$strip>;
|
|
5154
5154
|
category: _$zod.ZodString;
|
|
@@ -6152,9 +6152,9 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
6152
6152
|
status: _$zod.ZodEnum<{
|
|
6153
6153
|
completed: "completed";
|
|
6154
6154
|
cancelled: "cancelled";
|
|
6155
|
-
failed: "failed";
|
|
6156
6155
|
running: "running";
|
|
6157
6156
|
waiting_input: "waiting_input";
|
|
6157
|
+
failed: "failed";
|
|
6158
6158
|
}>;
|
|
6159
6159
|
result: _$zod.ZodOptional<_$zod.ZodString>;
|
|
6160
6160
|
error: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -6229,18 +6229,18 @@ declare const FrameworkServicesCoreNamespaces: readonly [_$_makaio_core0.BusName
|
|
|
6229
6229
|
create: {
|
|
6230
6230
|
request: _$zod.ZodObject<{
|
|
6231
6231
|
name: _$zod.ZodString;
|
|
6232
|
-
enabled: _$zod.ZodDefault<_$zod.ZodBoolean>;
|
|
6233
|
-
model: _$zod.ZodOptional<_$zod.ZodString>;
|
|
6234
6232
|
providerConfigId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
6233
|
+
model: _$zod.ZodOptional<_$zod.ZodString>;
|
|
6235
6234
|
systemPrompt: _$zod.ZodOptional<_$zod.ZodString>;
|
|
6236
6235
|
allowedTools: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodString>>;
|
|
6237
6236
|
disallowedTools: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodString>>;
|
|
6237
|
+
enabled: _$zod.ZodDefault<_$zod.ZodBoolean>;
|
|
6238
6238
|
allowedDirectories: _$zod.ZodOptional<_$zod.ZodArray<_$zod.ZodString>>;
|
|
6239
|
-
adapterName: _$zod.ZodString;
|
|
6240
6239
|
contextMode: _$zod.ZodDefault<_$zod.ZodEnum<{
|
|
6241
6240
|
fork: "fork";
|
|
6242
6241
|
fresh: "fresh";
|
|
6243
6242
|
}>>;
|
|
6243
|
+
adapterName: _$zod.ZodString;
|
|
6244
6244
|
}, _$zod_v4_core0.$strip>;
|
|
6245
6245
|
response: _$zod.ZodObject<{
|
|
6246
6246
|
id: _$zod.ZodString;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as PreferenceValueSchema, i as PreferenceKeySchema, n as PreferenceItemSchema, o as PreferencesSchemas, r as PreferenceKey, t as PreferenceItem } from "../../schemas-
|
|
2
|
-
import { n as PreferencesSubjects, t as PreferencesNamespace } from "../../storage-namespace-
|
|
1
|
+
import { a as PreferenceValueSchema, i as PreferenceKeySchema, n as PreferenceItemSchema, o as PreferencesSchemas, r as PreferenceKey, t as PreferenceItem } from "../../schemas-CTgHFHmK.mjs";
|
|
2
|
+
import { n as PreferencesSubjects, t as PreferencesNamespace } from "../../storage-namespace-n4KCNecF.mjs";
|
|
3
3
|
export { type PreferenceItem, PreferenceItemSchema, type PreferenceKey, PreferenceKeySchema, PreferenceValueSchema, PreferencesNamespace, PreferencesSchemas, PreferencesSubjects };
|