@makaio/framework 1.0.0-dev-1784706768858 → 1.0.0-dev-1784806252593
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/clients/index.d.mts +5 -5
- package/dist/clients/index.mjs +1 -1
- package/dist/{context-resolution-DZSBOCKY.d.mts → context-resolution-B5IH2Z9v.d.mts} +6 -6
- package/dist/contracts/adapter/index.d.mts +2 -2
- package/dist/contracts/adapter/schemas/session-lineage.d.mts +1 -1
- package/dist/contracts/artifact/index.d.mts +2 -2
- package/dist/contracts/client/index.d.mts +2 -2
- package/dist/contracts/extension/index.d.mts +3 -3
- package/dist/contracts/index.d.mts +81 -81
- package/dist/contracts/materialization/index.d.mts +3 -3
- package/dist/contracts/session/index.d.mts +2 -2
- package/dist/contracts/variant/index.d.mts +1 -1
- package/dist/contracts/workflow/index.d.mts +2 -2
- package/dist/{hook-responses-mmqRa2Dq.d.mts → hook-responses-Dg8wDvRo.d.mts} +308 -21
- package/dist/{index-BDDbcWNI.d.mts → index-B6SBIKyk.d.mts} +3 -3
- package/dist/{index-BKeJ-Act.d.mts → index-BF-ZfYo4.d.mts} +7 -298
- package/dist/{index-t9fTvyq6.d.mts → index-BXgsQUhf.d.mts} +4 -4
- package/dist/{index-CHxWUmmA.d.mts → index-CYfiCzb-.d.mts} +1 -1
- package/dist/{index-BWvTZJxe.d.mts → index-D9Tk7hyM.d.mts} +25 -25
- package/dist/{index-CKccv4s2.d.mts → index-DSyyWwR2.d.mts} +24 -24
- package/dist/{index-CFqShlHD.d.mts → index-DeoKITib.d.mts} +79 -79
- package/dist/{index-C81hMexK.d.mts → index-Dfl1vniO.d.mts} +5 -5
- package/dist/{index-0Ju2i8gV.d.mts → index-g36yJDge.d.mts} +6 -6
- package/dist/{index-B_aBwkE-.d.mts → index-y5-qCuUL.d.mts} +36 -36
- package/dist/{index-DitLUuR5.d.mts → index-z9bcglqL.d.mts} +4 -4
- 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-BWsPZGiq2.d.mts → namespace-DRHnU5Yi2.d.mts} +7 -7
- package/dist/package.json +1 -1
- package/dist/{schemas-oTIqxZN_.d.mts → schemas-1ahuxM83.d.mts} +10 -10
- package/dist/services/context-rules/index.d.mts +3 -3
- package/dist/services/execution-target/index.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/git/namespace.d.mts +2 -2
- package/dist/services/git/schemas.d.mts +1 -1
- package/dist/services/index.d.mts +13 -13
- 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 +10 -10
- package/dist/services/settings/storage/extension-configs/namespace.d.mts +3 -3
- package/dist/services/subagent-template/index.d.mts +1 -1
- package/dist/services/subagent-template/schemas.d.mts +1 -1
- package/dist/{session-lineage-Cte63dGx.d.mts → session-lineage-D4z26OtM.d.mts} +1 -1
- package/dist/{transition-BMYk_IVK.d.mts → transition-BuUKc2J1.d.mts} +1 -1
- package/dist/{types-CtSkJqzV.d.mts → types-D2KG8ewJ.d.mts} +1 -1
- package/dist/{view-builder-CpKzgyS2.d.mts → view-builder-BktOepKR.d.mts} +4 -4
- package/dist/workflow-engine/index.d.mts +46 -46
- package/package.json +1 -1
|
@@ -18,10 +18,10 @@ import { ExtensionWarningEntry, ExtensionWarningEntrySchema } from "@makaio/fram
|
|
|
18
18
|
* detail, not an externally observable state.
|
|
19
19
|
*/
|
|
20
20
|
declare const ComponentStateSchema: z.ZodEnum<{
|
|
21
|
-
failed: "failed";
|
|
22
21
|
discovered: "discovered";
|
|
23
|
-
|
|
22
|
+
failed: "failed";
|
|
24
23
|
active: "active";
|
|
24
|
+
skipped: "skipped";
|
|
25
25
|
stopped: "stopped";
|
|
26
26
|
initializing: "initializing";
|
|
27
27
|
}>;
|
|
@@ -47,10 +47,10 @@ declare const ComponentInfoSchema: z.ZodObject<{
|
|
|
47
47
|
name: z.ZodString;
|
|
48
48
|
displayName: z.ZodString;
|
|
49
49
|
state: z.ZodEnum<{
|
|
50
|
-
failed: "failed";
|
|
51
50
|
discovered: "discovered";
|
|
52
|
-
|
|
51
|
+
failed: "failed";
|
|
53
52
|
active: "active";
|
|
53
|
+
skipped: "skipped";
|
|
54
54
|
stopped: "stopped";
|
|
55
55
|
initializing: "initializing";
|
|
56
56
|
}>;
|
|
@@ -68,10 +68,10 @@ declare const ServiceInfoSchema: z.ZodObject<{
|
|
|
68
68
|
name: z.ZodString;
|
|
69
69
|
displayName: z.ZodString;
|
|
70
70
|
state: z.ZodEnum<{
|
|
71
|
-
failed: "failed";
|
|
72
71
|
discovered: "discovered";
|
|
73
|
-
|
|
72
|
+
failed: "failed";
|
|
74
73
|
active: "active";
|
|
74
|
+
skipped: "skipped";
|
|
75
75
|
stopped: "stopped";
|
|
76
76
|
initializing: "initializing";
|
|
77
77
|
}>;
|
|
@@ -90,10 +90,10 @@ declare const ExtensionInfoSchema: z.ZodObject<{
|
|
|
90
90
|
name: z.ZodString;
|
|
91
91
|
displayName: z.ZodString;
|
|
92
92
|
state: z.ZodEnum<{
|
|
93
|
-
failed: "failed";
|
|
94
93
|
discovered: "discovered";
|
|
95
|
-
|
|
94
|
+
failed: "failed";
|
|
96
95
|
active: "active";
|
|
96
|
+
skipped: "skipped";
|
|
97
97
|
stopped: "stopped";
|
|
98
98
|
initializing: "initializing";
|
|
99
99
|
}>;
|
|
@@ -138,18 +138,18 @@ declare const ExtensionNamespace: _$_makaio_core0.BusNamespaceDefinition<"kernel
|
|
|
138
138
|
name: z.ZodString;
|
|
139
139
|
displayName: z.ZodString;
|
|
140
140
|
from: z.ZodEnum<{
|
|
141
|
-
failed: "failed";
|
|
142
141
|
discovered: "discovered";
|
|
143
|
-
|
|
142
|
+
failed: "failed";
|
|
144
143
|
active: "active";
|
|
144
|
+
skipped: "skipped";
|
|
145
145
|
stopped: "stopped";
|
|
146
146
|
initializing: "initializing";
|
|
147
147
|
}>;
|
|
148
148
|
to: z.ZodEnum<{
|
|
149
|
-
failed: "failed";
|
|
150
149
|
discovered: "discovered";
|
|
151
|
-
|
|
150
|
+
failed: "failed";
|
|
152
151
|
active: "active";
|
|
152
|
+
skipped: "skipped";
|
|
153
153
|
stopped: "stopped";
|
|
154
154
|
initializing: "initializing";
|
|
155
155
|
}>;
|
|
@@ -181,10 +181,10 @@ declare const ExtensionNamespace: _$_makaio_core0.BusNamespaceDefinition<"kernel
|
|
|
181
181
|
name: z.ZodString;
|
|
182
182
|
displayName: z.ZodString;
|
|
183
183
|
state: z.ZodEnum<{
|
|
184
|
-
failed: "failed";
|
|
185
184
|
discovered: "discovered";
|
|
186
|
-
|
|
185
|
+
failed: "failed";
|
|
187
186
|
active: "active";
|
|
187
|
+
skipped: "skipped";
|
|
188
188
|
stopped: "stopped";
|
|
189
189
|
initializing: "initializing";
|
|
190
190
|
}>;
|
|
@@ -219,10 +219,10 @@ declare const ExtensionNamespace: _$_makaio_core0.BusNamespaceDefinition<"kernel
|
|
|
219
219
|
name: z.ZodString;
|
|
220
220
|
displayName: z.ZodString;
|
|
221
221
|
state: z.ZodEnum<{
|
|
222
|
-
failed: "failed";
|
|
223
222
|
discovered: "discovered";
|
|
224
|
-
|
|
223
|
+
failed: "failed";
|
|
225
224
|
active: "active";
|
|
225
|
+
skipped: "skipped";
|
|
226
226
|
stopped: "stopped";
|
|
227
227
|
initializing: "initializing";
|
|
228
228
|
}>;
|
|
@@ -641,18 +641,18 @@ declare const ExtensionSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fla
|
|
|
641
641
|
name: z.ZodString;
|
|
642
642
|
displayName: z.ZodString;
|
|
643
643
|
from: z.ZodEnum<{
|
|
644
|
-
failed: "failed";
|
|
645
644
|
discovered: "discovered";
|
|
646
|
-
|
|
645
|
+
failed: "failed";
|
|
647
646
|
active: "active";
|
|
647
|
+
skipped: "skipped";
|
|
648
648
|
stopped: "stopped";
|
|
649
649
|
initializing: "initializing";
|
|
650
650
|
}>;
|
|
651
651
|
to: z.ZodEnum<{
|
|
652
|
-
failed: "failed";
|
|
653
652
|
discovered: "discovered";
|
|
654
|
-
|
|
653
|
+
failed: "failed";
|
|
655
654
|
active: "active";
|
|
655
|
+
skipped: "skipped";
|
|
656
656
|
stopped: "stopped";
|
|
657
657
|
initializing: "initializing";
|
|
658
658
|
}>;
|
|
@@ -684,10 +684,10 @@ declare const ExtensionSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fla
|
|
|
684
684
|
name: z.ZodString;
|
|
685
685
|
displayName: z.ZodString;
|
|
686
686
|
state: z.ZodEnum<{
|
|
687
|
-
failed: "failed";
|
|
688
687
|
discovered: "discovered";
|
|
689
|
-
|
|
688
|
+
failed: "failed";
|
|
690
689
|
active: "active";
|
|
690
|
+
skipped: "skipped";
|
|
691
691
|
stopped: "stopped";
|
|
692
692
|
initializing: "initializing";
|
|
693
693
|
}>;
|
|
@@ -722,10 +722,10 @@ declare const ExtensionSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fla
|
|
|
722
722
|
name: z.ZodString;
|
|
723
723
|
displayName: z.ZodString;
|
|
724
724
|
state: z.ZodEnum<{
|
|
725
|
-
failed: "failed";
|
|
726
725
|
discovered: "discovered";
|
|
727
|
-
|
|
726
|
+
failed: "failed";
|
|
728
727
|
active: "active";
|
|
728
|
+
skipped: "skipped";
|
|
729
729
|
stopped: "stopped";
|
|
730
730
|
initializing: "initializing";
|
|
731
731
|
}>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as ArtifactRepresentations, L as ArtifactRef$1, U as ArtifactRelationTarget, Y as ArtifactScope, a as ResolvedArtifactContextWire$1, j as ArtifactObservation$1, k as ArtifactKindRegistration$1, l as ArtifactProjectionPolicy$1, q as ArtifactRevision$1, r as ArtifactContextUnresolvedReason, x as ArtifactActor, z as ArtifactRelation } from "./context-resolution-
|
|
1
|
+
import { G as ArtifactRepresentations, L as ArtifactRef$1, U as ArtifactRelationTarget, Y as ArtifactScope, a as ResolvedArtifactContextWire$1, j as ArtifactObservation$1, k as ArtifactKindRegistration$1, l as ArtifactProjectionPolicy$1, q as ArtifactRevision$1, r as ArtifactContextUnresolvedReason, x as ArtifactActor, z as ArtifactRelation } from "./context-resolution-B5IH2Z9v.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
import * as _$_makaio_core0 from "@makaio/framework/core";
|
|
4
4
|
import { MakaioBusLike } from "@makaio/framework/core";
|
|
@@ -618,9 +618,9 @@ declare const ArtifactSchemas: {
|
|
|
618
618
|
lifecycle: z.ZodOptional<z.ZodObject<{
|
|
619
619
|
defaultRelevance: z.ZodOptional<z.ZodEnum<{
|
|
620
620
|
active: "active";
|
|
621
|
+
archived: "archived";
|
|
621
622
|
fading: "fading";
|
|
622
623
|
retired: "retired";
|
|
623
|
-
archived: "archived";
|
|
624
624
|
}>>;
|
|
625
625
|
decayPolicy: z.ZodOptional<z.ZodString>;
|
|
626
626
|
}, z.core.$strip>>;
|
|
@@ -651,8 +651,8 @@ declare const ArtifactSchemas: {
|
|
|
651
651
|
}>>;
|
|
652
652
|
fromLevel: z.ZodOptional<z.ZodEnum<{
|
|
653
653
|
link: "link";
|
|
654
|
-
summary: "summary";
|
|
655
654
|
full: "full";
|
|
655
|
+
summary: "summary";
|
|
656
656
|
}>>;
|
|
657
657
|
viewRole: z.ZodOptional<z.ZodEnum<{
|
|
658
658
|
title: "title";
|
|
@@ -666,8 +666,8 @@ declare const ArtifactSchemas: {
|
|
|
666
666
|
hostRelation: z.ZodString;
|
|
667
667
|
as: z.ZodOptional<z.ZodEnum<{
|
|
668
668
|
link: "link";
|
|
669
|
-
summary: "summary";
|
|
670
669
|
full: "full";
|
|
670
|
+
summary: "summary";
|
|
671
671
|
}>>;
|
|
672
672
|
}, z.core.$strip>, z.ZodObject<{
|
|
673
673
|
kind: z.ZodLiteral<"entry">;
|
|
@@ -707,9 +707,9 @@ declare const ArtifactSchemas: {
|
|
|
707
707
|
lifecycle: z.ZodOptional<z.ZodObject<{
|
|
708
708
|
defaultRelevance: z.ZodOptional<z.ZodEnum<{
|
|
709
709
|
active: "active";
|
|
710
|
+
archived: "archived";
|
|
710
711
|
fading: "fading";
|
|
711
712
|
retired: "retired";
|
|
712
|
-
archived: "archived";
|
|
713
713
|
}>>;
|
|
714
714
|
decayPolicy: z.ZodOptional<z.ZodString>;
|
|
715
715
|
}, z.core.$strip>>;
|
|
@@ -740,8 +740,8 @@ declare const ArtifactSchemas: {
|
|
|
740
740
|
}>>;
|
|
741
741
|
fromLevel: z.ZodOptional<z.ZodEnum<{
|
|
742
742
|
link: "link";
|
|
743
|
-
summary: "summary";
|
|
744
743
|
full: "full";
|
|
744
|
+
summary: "summary";
|
|
745
745
|
}>>;
|
|
746
746
|
viewRole: z.ZodOptional<z.ZodEnum<{
|
|
747
747
|
title: "title";
|
|
@@ -755,8 +755,8 @@ declare const ArtifactSchemas: {
|
|
|
755
755
|
hostRelation: z.ZodString;
|
|
756
756
|
as: z.ZodOptional<z.ZodEnum<{
|
|
757
757
|
link: "link";
|
|
758
|
-
summary: "summary";
|
|
759
758
|
full: "full";
|
|
759
|
+
summary: "summary";
|
|
760
760
|
}>>;
|
|
761
761
|
}, z.core.$strip>, z.ZodObject<{
|
|
762
762
|
kind: z.ZodLiteral<"entry">;
|
|
@@ -816,16 +816,6 @@ declare const ArtifactSchemas: {
|
|
|
816
816
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
817
817
|
kind: z.ZodString;
|
|
818
818
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
819
|
-
scope: z.ZodObject<{
|
|
820
|
-
level: z.ZodString;
|
|
821
|
-
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
822
|
-
}, z.core.$strip>;
|
|
823
|
-
schemaVersion: z.ZodString;
|
|
824
|
-
actor: z.ZodObject<{
|
|
825
|
-
kind: z.ZodString;
|
|
826
|
-
id: z.ZodString;
|
|
827
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
828
|
-
}, z.core.$strip>;
|
|
829
819
|
relations: z.ZodArray<z.ZodObject<{
|
|
830
820
|
type: z.ZodString;
|
|
831
821
|
target: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -850,6 +840,16 @@ declare const ArtifactSchemas: {
|
|
|
850
840
|
locator: z.ZodOptional<z.ZodString>;
|
|
851
841
|
}, z.core.$strip>], "refClass">>;
|
|
852
842
|
}, z.core.$strip>>;
|
|
843
|
+
scope: z.ZodObject<{
|
|
844
|
+
level: z.ZodString;
|
|
845
|
+
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
846
|
+
}, z.core.$strip>;
|
|
847
|
+
schemaVersion: z.ZodString;
|
|
848
|
+
actor: z.ZodObject<{
|
|
849
|
+
kind: z.ZodString;
|
|
850
|
+
id: z.ZodString;
|
|
851
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
852
|
+
}, z.core.$strip>;
|
|
853
853
|
confidence: z.ZodOptional<z.ZodObject<{
|
|
854
854
|
level: z.ZodEnum<{
|
|
855
855
|
inferred: "inferred";
|
|
@@ -998,16 +998,6 @@ declare const ArtifactSchemas: {
|
|
|
998
998
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
999
999
|
kind: z.ZodString;
|
|
1000
1000
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
1001
|
-
scope: z.ZodObject<{
|
|
1002
|
-
level: z.ZodString;
|
|
1003
|
-
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1004
|
-
}, z.core.$strip>;
|
|
1005
|
-
schemaVersion: z.ZodString;
|
|
1006
|
-
actor: z.ZodObject<{
|
|
1007
|
-
kind: z.ZodString;
|
|
1008
|
-
id: z.ZodString;
|
|
1009
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
1010
|
-
}, z.core.$strip>;
|
|
1011
1001
|
relations: z.ZodArray<z.ZodObject<{
|
|
1012
1002
|
type: z.ZodString;
|
|
1013
1003
|
target: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -1032,6 +1022,16 @@ declare const ArtifactSchemas: {
|
|
|
1032
1022
|
locator: z.ZodOptional<z.ZodString>;
|
|
1033
1023
|
}, z.core.$strip>], "refClass">>;
|
|
1034
1024
|
}, z.core.$strip>>;
|
|
1025
|
+
scope: z.ZodObject<{
|
|
1026
|
+
level: z.ZodString;
|
|
1027
|
+
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1028
|
+
}, z.core.$strip>;
|
|
1029
|
+
schemaVersion: z.ZodString;
|
|
1030
|
+
actor: z.ZodObject<{
|
|
1031
|
+
kind: z.ZodString;
|
|
1032
|
+
id: z.ZodString;
|
|
1033
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1034
|
+
}, z.core.$strip>;
|
|
1035
1035
|
confidence: z.ZodOptional<z.ZodObject<{
|
|
1036
1036
|
level: z.ZodEnum<{
|
|
1037
1037
|
inferred: "inferred";
|
|
@@ -2069,9 +2069,9 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2069
2069
|
lifecycle: z.ZodOptional<z.ZodObject<{
|
|
2070
2070
|
defaultRelevance: z.ZodOptional<z.ZodEnum<{
|
|
2071
2071
|
active: "active";
|
|
2072
|
+
archived: "archived";
|
|
2072
2073
|
fading: "fading";
|
|
2073
2074
|
retired: "retired";
|
|
2074
|
-
archived: "archived";
|
|
2075
2075
|
}>>;
|
|
2076
2076
|
decayPolicy: z.ZodOptional<z.ZodString>;
|
|
2077
2077
|
}, z.core.$strip>>;
|
|
@@ -2102,8 +2102,8 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2102
2102
|
}>>;
|
|
2103
2103
|
fromLevel: z.ZodOptional<z.ZodEnum<{
|
|
2104
2104
|
link: "link";
|
|
2105
|
-
summary: "summary";
|
|
2106
2105
|
full: "full";
|
|
2106
|
+
summary: "summary";
|
|
2107
2107
|
}>>;
|
|
2108
2108
|
viewRole: z.ZodOptional<z.ZodEnum<{
|
|
2109
2109
|
title: "title";
|
|
@@ -2117,8 +2117,8 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2117
2117
|
hostRelation: z.ZodString;
|
|
2118
2118
|
as: z.ZodOptional<z.ZodEnum<{
|
|
2119
2119
|
link: "link";
|
|
2120
|
-
summary: "summary";
|
|
2121
2120
|
full: "full";
|
|
2121
|
+
summary: "summary";
|
|
2122
2122
|
}>>;
|
|
2123
2123
|
}, z.core.$strip>, z.ZodObject<{
|
|
2124
2124
|
kind: z.ZodLiteral<"entry">;
|
|
@@ -2158,9 +2158,9 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2158
2158
|
lifecycle: z.ZodOptional<z.ZodObject<{
|
|
2159
2159
|
defaultRelevance: z.ZodOptional<z.ZodEnum<{
|
|
2160
2160
|
active: "active";
|
|
2161
|
+
archived: "archived";
|
|
2161
2162
|
fading: "fading";
|
|
2162
2163
|
retired: "retired";
|
|
2163
|
-
archived: "archived";
|
|
2164
2164
|
}>>;
|
|
2165
2165
|
decayPolicy: z.ZodOptional<z.ZodString>;
|
|
2166
2166
|
}, z.core.$strip>>;
|
|
@@ -2191,8 +2191,8 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2191
2191
|
}>>;
|
|
2192
2192
|
fromLevel: z.ZodOptional<z.ZodEnum<{
|
|
2193
2193
|
link: "link";
|
|
2194
|
-
summary: "summary";
|
|
2195
2194
|
full: "full";
|
|
2195
|
+
summary: "summary";
|
|
2196
2196
|
}>>;
|
|
2197
2197
|
viewRole: z.ZodOptional<z.ZodEnum<{
|
|
2198
2198
|
title: "title";
|
|
@@ -2206,8 +2206,8 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2206
2206
|
hostRelation: z.ZodString;
|
|
2207
2207
|
as: z.ZodOptional<z.ZodEnum<{
|
|
2208
2208
|
link: "link";
|
|
2209
|
-
summary: "summary";
|
|
2210
2209
|
full: "full";
|
|
2210
|
+
summary: "summary";
|
|
2211
2211
|
}>>;
|
|
2212
2212
|
}, z.core.$strip>, z.ZodObject<{
|
|
2213
2213
|
kind: z.ZodLiteral<"entry">;
|
|
@@ -2267,16 +2267,6 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2267
2267
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
2268
2268
|
kind: z.ZodString;
|
|
2269
2269
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
2270
|
-
scope: z.ZodObject<{
|
|
2271
|
-
level: z.ZodString;
|
|
2272
|
-
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2273
|
-
}, z.core.$strip>;
|
|
2274
|
-
schemaVersion: z.ZodString;
|
|
2275
|
-
actor: z.ZodObject<{
|
|
2276
|
-
kind: z.ZodString;
|
|
2277
|
-
id: z.ZodString;
|
|
2278
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2279
|
-
}, z.core.$strip>;
|
|
2280
2270
|
relations: z.ZodArray<z.ZodObject<{
|
|
2281
2271
|
type: z.ZodString;
|
|
2282
2272
|
target: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2301,6 +2291,16 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2301
2291
|
locator: z.ZodOptional<z.ZodString>;
|
|
2302
2292
|
}, z.core.$strip>], "refClass">>;
|
|
2303
2293
|
}, z.core.$strip>>;
|
|
2294
|
+
scope: z.ZodObject<{
|
|
2295
|
+
level: z.ZodString;
|
|
2296
|
+
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2297
|
+
}, z.core.$strip>;
|
|
2298
|
+
schemaVersion: z.ZodString;
|
|
2299
|
+
actor: z.ZodObject<{
|
|
2300
|
+
kind: z.ZodString;
|
|
2301
|
+
id: z.ZodString;
|
|
2302
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2303
|
+
}, z.core.$strip>;
|
|
2304
2304
|
confidence: z.ZodOptional<z.ZodObject<{
|
|
2305
2305
|
level: z.ZodEnum<{
|
|
2306
2306
|
inferred: "inferred";
|
|
@@ -2449,16 +2449,6 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2449
2449
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
2450
2450
|
kind: z.ZodString;
|
|
2451
2451
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
2452
|
-
scope: z.ZodObject<{
|
|
2453
|
-
level: z.ZodString;
|
|
2454
|
-
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2455
|
-
}, z.core.$strip>;
|
|
2456
|
-
schemaVersion: z.ZodString;
|
|
2457
|
-
actor: z.ZodObject<{
|
|
2458
|
-
kind: z.ZodString;
|
|
2459
|
-
id: z.ZodString;
|
|
2460
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2461
|
-
}, z.core.$strip>;
|
|
2462
2452
|
relations: z.ZodArray<z.ZodObject<{
|
|
2463
2453
|
type: z.ZodString;
|
|
2464
2454
|
target: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -2483,6 +2473,16 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2483
2473
|
locator: z.ZodOptional<z.ZodString>;
|
|
2484
2474
|
}, z.core.$strip>], "refClass">>;
|
|
2485
2475
|
}, z.core.$strip>>;
|
|
2476
|
+
scope: z.ZodObject<{
|
|
2477
|
+
level: z.ZodString;
|
|
2478
|
+
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2479
|
+
}, z.core.$strip>;
|
|
2480
|
+
schemaVersion: z.ZodString;
|
|
2481
|
+
actor: z.ZodObject<{
|
|
2482
|
+
kind: z.ZodString;
|
|
2483
|
+
id: z.ZodString;
|
|
2484
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2485
|
+
}, z.core.$strip>;
|
|
2486
2486
|
confidence: z.ZodOptional<z.ZodObject<{
|
|
2487
2487
|
level: z.ZodEnum<{
|
|
2488
2488
|
inferred: "inferred";
|
|
@@ -3534,9 +3534,9 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3534
3534
|
lifecycle: z.ZodOptional<z.ZodObject<{
|
|
3535
3535
|
defaultRelevance: z.ZodOptional<z.ZodEnum<{
|
|
3536
3536
|
active: "active";
|
|
3537
|
+
archived: "archived";
|
|
3537
3538
|
fading: "fading";
|
|
3538
3539
|
retired: "retired";
|
|
3539
|
-
archived: "archived";
|
|
3540
3540
|
}>>;
|
|
3541
3541
|
decayPolicy: z.ZodOptional<z.ZodString>;
|
|
3542
3542
|
}, z.core.$strip>>;
|
|
@@ -3567,8 +3567,8 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3567
3567
|
}>>;
|
|
3568
3568
|
fromLevel: z.ZodOptional<z.ZodEnum<{
|
|
3569
3569
|
link: "link";
|
|
3570
|
-
summary: "summary";
|
|
3571
3570
|
full: "full";
|
|
3571
|
+
summary: "summary";
|
|
3572
3572
|
}>>;
|
|
3573
3573
|
viewRole: z.ZodOptional<z.ZodEnum<{
|
|
3574
3574
|
title: "title";
|
|
@@ -3582,8 +3582,8 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3582
3582
|
hostRelation: z.ZodString;
|
|
3583
3583
|
as: z.ZodOptional<z.ZodEnum<{
|
|
3584
3584
|
link: "link";
|
|
3585
|
-
summary: "summary";
|
|
3586
3585
|
full: "full";
|
|
3586
|
+
summary: "summary";
|
|
3587
3587
|
}>>;
|
|
3588
3588
|
}, z.core.$strip>, z.ZodObject<{
|
|
3589
3589
|
kind: z.ZodLiteral<"entry">;
|
|
@@ -3623,9 +3623,9 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3623
3623
|
lifecycle: z.ZodOptional<z.ZodObject<{
|
|
3624
3624
|
defaultRelevance: z.ZodOptional<z.ZodEnum<{
|
|
3625
3625
|
active: "active";
|
|
3626
|
+
archived: "archived";
|
|
3626
3627
|
fading: "fading";
|
|
3627
3628
|
retired: "retired";
|
|
3628
|
-
archived: "archived";
|
|
3629
3629
|
}>>;
|
|
3630
3630
|
decayPolicy: z.ZodOptional<z.ZodString>;
|
|
3631
3631
|
}, z.core.$strip>>;
|
|
@@ -3656,8 +3656,8 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3656
3656
|
}>>;
|
|
3657
3657
|
fromLevel: z.ZodOptional<z.ZodEnum<{
|
|
3658
3658
|
link: "link";
|
|
3659
|
-
summary: "summary";
|
|
3660
3659
|
full: "full";
|
|
3660
|
+
summary: "summary";
|
|
3661
3661
|
}>>;
|
|
3662
3662
|
viewRole: z.ZodOptional<z.ZodEnum<{
|
|
3663
3663
|
title: "title";
|
|
@@ -3671,8 +3671,8 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3671
3671
|
hostRelation: z.ZodString;
|
|
3672
3672
|
as: z.ZodOptional<z.ZodEnum<{
|
|
3673
3673
|
link: "link";
|
|
3674
|
-
summary: "summary";
|
|
3675
3674
|
full: "full";
|
|
3675
|
+
summary: "summary";
|
|
3676
3676
|
}>>;
|
|
3677
3677
|
}, z.core.$strip>, z.ZodObject<{
|
|
3678
3678
|
kind: z.ZodLiteral<"entry">;
|
|
@@ -3732,16 +3732,6 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3732
3732
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
3733
3733
|
kind: z.ZodString;
|
|
3734
3734
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
3735
|
-
scope: z.ZodObject<{
|
|
3736
|
-
level: z.ZodString;
|
|
3737
|
-
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3738
|
-
}, z.core.$strip>;
|
|
3739
|
-
schemaVersion: z.ZodString;
|
|
3740
|
-
actor: z.ZodObject<{
|
|
3741
|
-
kind: z.ZodString;
|
|
3742
|
-
id: z.ZodString;
|
|
3743
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
3744
|
-
}, z.core.$strip>;
|
|
3745
3735
|
relations: z.ZodArray<z.ZodObject<{
|
|
3746
3736
|
type: z.ZodString;
|
|
3747
3737
|
target: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -3766,6 +3756,16 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3766
3756
|
locator: z.ZodOptional<z.ZodString>;
|
|
3767
3757
|
}, z.core.$strip>], "refClass">>;
|
|
3768
3758
|
}, z.core.$strip>>;
|
|
3759
|
+
scope: z.ZodObject<{
|
|
3760
|
+
level: z.ZodString;
|
|
3761
|
+
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3762
|
+
}, z.core.$strip>;
|
|
3763
|
+
schemaVersion: z.ZodString;
|
|
3764
|
+
actor: z.ZodObject<{
|
|
3765
|
+
kind: z.ZodString;
|
|
3766
|
+
id: z.ZodString;
|
|
3767
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3768
|
+
}, z.core.$strip>;
|
|
3769
3769
|
confidence: z.ZodOptional<z.ZodObject<{
|
|
3770
3770
|
level: z.ZodEnum<{
|
|
3771
3771
|
inferred: "inferred";
|
|
@@ -3914,16 +3914,6 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3914
3914
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
3915
3915
|
kind: z.ZodString;
|
|
3916
3916
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
3917
|
-
scope: z.ZodObject<{
|
|
3918
|
-
level: z.ZodString;
|
|
3919
|
-
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3920
|
-
}, z.core.$strip>;
|
|
3921
|
-
schemaVersion: z.ZodString;
|
|
3922
|
-
actor: z.ZodObject<{
|
|
3923
|
-
kind: z.ZodString;
|
|
3924
|
-
id: z.ZodString;
|
|
3925
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
3926
|
-
}, z.core.$strip>;
|
|
3927
3917
|
relations: z.ZodArray<z.ZodObject<{
|
|
3928
3918
|
type: z.ZodString;
|
|
3929
3919
|
target: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -3948,6 +3938,16 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3948
3938
|
locator: z.ZodOptional<z.ZodString>;
|
|
3949
3939
|
}, z.core.$strip>], "refClass">>;
|
|
3950
3940
|
}, z.core.$strip>>;
|
|
3941
|
+
scope: z.ZodObject<{
|
|
3942
|
+
level: z.ZodString;
|
|
3943
|
+
ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3944
|
+
}, z.core.$strip>;
|
|
3945
|
+
schemaVersion: z.ZodString;
|
|
3946
|
+
actor: z.ZodObject<{
|
|
3947
|
+
kind: z.ZodString;
|
|
3948
|
+
id: z.ZodString;
|
|
3949
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3950
|
+
}, z.core.$strip>;
|
|
3951
3951
|
confidence: z.ZodOptional<z.ZodObject<{
|
|
3952
3952
|
level: z.ZodEnum<{
|
|
3953
3953
|
inferred: "inferred";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as SessionMessage$1, ct as BranchKind$1 } from "./types-
|
|
1
|
+
import { H as SessionMessage$1, ct as BranchKind$1 } from "./types-D2KG8ewJ.mjs";
|
|
2
2
|
import { o as Message$1 } from "./index-4NQLoI7R.mjs";
|
|
3
3
|
import { t as ContractStorageNamespaceDefinition } from "./storage-namespace-definition-V8sc3drq.mjs";
|
|
4
4
|
import * as _$zod from "zod";
|
|
@@ -3278,8 +3278,8 @@ declare const SessionNamespace: _$_makaio_core0.BusNamespaceDefinition<"session"
|
|
|
3278
3278
|
maxTokens: _$zod.ZodNumber;
|
|
3279
3279
|
percentage: _$zod.ZodNumber;
|
|
3280
3280
|
level: _$zod.ZodEnum<{
|
|
3281
|
-
ok: "ok";
|
|
3282
3281
|
warn: "warn";
|
|
3282
|
+
ok: "ok";
|
|
3283
3283
|
critical: "critical";
|
|
3284
3284
|
}>;
|
|
3285
3285
|
lastUpdatedAt: _$zod.ZodNumber;
|
|
@@ -7585,8 +7585,8 @@ declare const SessionSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fla
|
|
|
7585
7585
|
maxTokens: _$zod.ZodNumber;
|
|
7586
7586
|
percentage: _$zod.ZodNumber;
|
|
7587
7587
|
level: _$zod.ZodEnum<{
|
|
7588
|
-
ok: "ok";
|
|
7589
7588
|
warn: "warn";
|
|
7589
|
+
ok: "ok";
|
|
7590
7590
|
critical: "critical";
|
|
7591
7591
|
}>;
|
|
7592
7592
|
lastUpdatedAt: _$zod.ZodNumber;
|
|
@@ -9445,9 +9445,9 @@ declare const MessageStorageNamespace$1: ContractStorageNamespaceDefinition<"mes
|
|
|
9445
9445
|
output: z.ZodString;
|
|
9446
9446
|
isError: z.ZodOptional<z.ZodBoolean>;
|
|
9447
9447
|
}, z.core.$strip>], "type">>;
|
|
9448
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
9449
9448
|
turnId: z.ZodNullable<z.ZodString>;
|
|
9450
9449
|
adapterSessionId: z.ZodOptional<z.ZodString>;
|
|
9450
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
9451
9451
|
timestamp: z.ZodNumber;
|
|
9452
9452
|
contentText: z.ZodString;
|
|
9453
9453
|
adapterMessageId: z.ZodOptional<z.ZodString>;
|
|
@@ -10293,9 +10293,9 @@ declare const MessageStorageSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
10293
10293
|
output: z.ZodString;
|
|
10294
10294
|
isError: z.ZodOptional<z.ZodBoolean>;
|
|
10295
10295
|
}, z.core.$strip>], "type">>;
|
|
10296
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
10297
10296
|
turnId: z.ZodNullable<z.ZodString>;
|
|
10298
10297
|
adapterSessionId: z.ZodOptional<z.ZodString>;
|
|
10298
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
10299
10299
|
timestamp: z.ZodNumber;
|
|
10300
10300
|
contentText: z.ZodString;
|
|
10301
10301
|
adapterMessageId: z.ZodOptional<z.ZodString>;
|
|
@@ -168,8 +168,8 @@ type ContainerRuntime = z.infer<typeof ContainerRuntimeSchema>;
|
|
|
168
168
|
* Container state.
|
|
169
169
|
*/
|
|
170
170
|
declare const ContainerStateSchema: z.ZodEnum<{
|
|
171
|
-
running: "running";
|
|
172
171
|
created: "created";
|
|
172
|
+
running: "running";
|
|
173
173
|
stopped: "stopped";
|
|
174
174
|
destroyed: "destroyed";
|
|
175
175
|
}>;
|
|
@@ -381,8 +381,8 @@ type StatusRequest = z.infer<typeof StatusRequestSchema>;
|
|
|
381
381
|
*/
|
|
382
382
|
declare const StatusResponseSchema: z.ZodObject<{
|
|
383
383
|
state: z.ZodEnum<{
|
|
384
|
-
running: "running";
|
|
385
384
|
created: "created";
|
|
385
|
+
running: "running";
|
|
386
386
|
stopped: "stopped";
|
|
387
387
|
destroyed: "destroyed";
|
|
388
388
|
}>;
|
|
@@ -594,8 +594,8 @@ declare const DockerNamespace: _$_makaio_core0.BusNamespaceDefinition<"docker",
|
|
|
594
594
|
}, z.core.$strip>;
|
|
595
595
|
response: z.ZodObject<{
|
|
596
596
|
state: z.ZodEnum<{
|
|
597
|
-
running: "running";
|
|
598
597
|
created: "created";
|
|
598
|
+
running: "running";
|
|
599
599
|
stopped: "stopped";
|
|
600
600
|
destroyed: "destroyed";
|
|
601
601
|
}>;
|
|
@@ -788,8 +788,8 @@ declare const DockerSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.FlatSu
|
|
|
788
788
|
}, z.core.$strip>;
|
|
789
789
|
response: z.ZodObject<{
|
|
790
790
|
state: z.ZodEnum<{
|
|
791
|
-
running: "running";
|
|
792
791
|
created: "created";
|
|
792
|
+
running: "running";
|
|
793
793
|
stopped: "stopped";
|
|
794
794
|
destroyed: "destroyed";
|
|
795
795
|
}>;
|
|
@@ -973,8 +973,8 @@ declare const ContainerSpawnNamespace: _$_makaio_core0.BusNamespaceDefinition<"d
|
|
|
973
973
|
}, _$zod_v4_core0.$strip>;
|
|
974
974
|
response: _$zod.ZodObject<{
|
|
975
975
|
state: _$zod.ZodEnum<{
|
|
976
|
-
running: "running";
|
|
977
976
|
created: "created";
|
|
977
|
+
running: "running";
|
|
978
978
|
stopped: "stopped";
|
|
979
979
|
destroyed: "destroyed";
|
|
980
980
|
}>;
|
|
@@ -1156,8 +1156,8 @@ declare const ContainerSpawnSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core
|
|
|
1156
1156
|
}, _$zod_v4_core0.$strip>;
|
|
1157
1157
|
response: _$zod.ZodObject<{
|
|
1158
1158
|
state: _$zod.ZodEnum<{
|
|
1159
|
-
running: "running";
|
|
1160
1159
|
created: "created";
|
|
1160
|
+
running: "running";
|
|
1161
1161
|
stopped: "stopped";
|
|
1162
1162
|
destroyed: "destroyed";
|
|
1163
1163
|
}>;
|