@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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { q as ArtifactRevision$1 } from "./context-resolution-
|
|
1
|
+
import { q as ArtifactRevision$1 } from "./context-resolution-B5IH2Z9v.mjs";
|
|
2
2
|
import { i as JsonValue$1, t as JsonObjectContractSchema } from "./json-value-BwVdTylT.mjs";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
import * as _$_makaio_core0 from "@makaio/framework/core";
|
|
@@ -173,10 +173,10 @@ type WorkflowSourceLocation = z.infer<typeof WorkflowSourceLocationSchema>;
|
|
|
173
173
|
* - `sequence` — ordered list of child nodes (the structural container)
|
|
174
174
|
*/
|
|
175
175
|
declare const WorkflowNodeTypeSchema: z.ZodEnum<{
|
|
176
|
-
sequence: "sequence";
|
|
177
176
|
station: "station";
|
|
178
177
|
"delegate-agent": "delegate-agent";
|
|
179
178
|
"delegate-role": "delegate-role";
|
|
179
|
+
sequence: "sequence";
|
|
180
180
|
parallel: "parallel";
|
|
181
181
|
gate: "gate";
|
|
182
182
|
iterate: "iterate";
|
|
@@ -913,10 +913,10 @@ declare const WorkflowFrameStateSchema$1: z.ZodObject<{
|
|
|
913
913
|
frameId: z.ZodString;
|
|
914
914
|
nodeId: z.ZodString;
|
|
915
915
|
nodeType: z.ZodEnum<{
|
|
916
|
-
sequence: "sequence";
|
|
917
916
|
station: "station";
|
|
918
917
|
"delegate-agent": "delegate-agent";
|
|
919
918
|
"delegate-role": "delegate-role";
|
|
919
|
+
sequence: "sequence";
|
|
920
920
|
parallel: "parallel";
|
|
921
921
|
gate: "gate";
|
|
922
922
|
iterate: "iterate";
|
|
@@ -931,8 +931,8 @@ declare const WorkflowFrameStateSchema$1: z.ZodObject<{
|
|
|
931
931
|
cancelled: "cancelled";
|
|
932
932
|
running: "running";
|
|
933
933
|
failed: "failed";
|
|
934
|
-
waiting: "waiting";
|
|
935
934
|
skipped: "skipped";
|
|
935
|
+
waiting: "waiting";
|
|
936
936
|
}>;
|
|
937
937
|
attempt: z.ZodDefault<z.ZodNumber>;
|
|
938
938
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -947,8 +947,8 @@ type WorkflowFrameState$1 = z.infer<typeof WorkflowFrameStateSchema$1>;
|
|
|
947
947
|
declare const WorkflowGateStatusSchema: z.ZodEnum<{
|
|
948
948
|
cancelled: "cancelled";
|
|
949
949
|
rejected: "rejected";
|
|
950
|
-
waiting: "waiting";
|
|
951
950
|
resumed: "resumed";
|
|
951
|
+
waiting: "waiting";
|
|
952
952
|
"timed-out": "timed-out";
|
|
953
953
|
}>;
|
|
954
954
|
type WorkflowGateStatus = z.infer<typeof WorkflowGateStatusSchema>;
|
|
@@ -968,8 +968,8 @@ declare const WorkflowGateInstanceSchema$1: z.ZodObject<{
|
|
|
968
968
|
status: z.ZodEnum<{
|
|
969
969
|
cancelled: "cancelled";
|
|
970
970
|
rejected: "rejected";
|
|
971
|
-
waiting: "waiting";
|
|
972
971
|
resumed: "resumed";
|
|
972
|
+
waiting: "waiting";
|
|
973
973
|
"timed-out": "timed-out";
|
|
974
974
|
}>;
|
|
975
975
|
autoAction: z.ZodEnum<{
|
|
@@ -1319,8 +1319,8 @@ declare const GateInstanceListQuerySchema$1: z.ZodObject<{
|
|
|
1319
1319
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1320
1320
|
cancelled: "cancelled";
|
|
1321
1321
|
rejected: "rejected";
|
|
1322
|
-
waiting: "waiting";
|
|
1323
1322
|
resumed: "resumed";
|
|
1323
|
+
waiting: "waiting";
|
|
1324
1324
|
"timed-out": "timed-out";
|
|
1325
1325
|
}>>;
|
|
1326
1326
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3842,8 +3842,8 @@ declare const WorkflowSchemas: {
|
|
|
3842
3842
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3843
3843
|
cancelled: "cancelled";
|
|
3844
3844
|
rejected: "rejected";
|
|
3845
|
-
waiting: "waiting";
|
|
3846
3845
|
resumed: "resumed";
|
|
3846
|
+
waiting: "waiting";
|
|
3847
3847
|
"timed-out": "timed-out";
|
|
3848
3848
|
}>>;
|
|
3849
3849
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3858,8 +3858,8 @@ declare const WorkflowSchemas: {
|
|
|
3858
3858
|
status: z.ZodEnum<{
|
|
3859
3859
|
cancelled: "cancelled";
|
|
3860
3860
|
rejected: "rejected";
|
|
3861
|
-
waiting: "waiting";
|
|
3862
3861
|
resumed: "resumed";
|
|
3862
|
+
waiting: "waiting";
|
|
3863
3863
|
"timed-out": "timed-out";
|
|
3864
3864
|
}>;
|
|
3865
3865
|
autoAction: z.ZodEnum<{
|
|
@@ -3938,10 +3938,10 @@ declare const WorkflowSchemas: {
|
|
|
3938
3938
|
frameId: z.ZodString;
|
|
3939
3939
|
nodeId: z.ZodString;
|
|
3940
3940
|
nodeType: z.ZodEnum<{
|
|
3941
|
-
sequence: "sequence";
|
|
3942
3941
|
station: "station";
|
|
3943
3942
|
"delegate-agent": "delegate-agent";
|
|
3944
3943
|
"delegate-role": "delegate-role";
|
|
3944
|
+
sequence: "sequence";
|
|
3945
3945
|
parallel: "parallel";
|
|
3946
3946
|
gate: "gate";
|
|
3947
3947
|
iterate: "iterate";
|
|
@@ -3956,8 +3956,8 @@ declare const WorkflowSchemas: {
|
|
|
3956
3956
|
cancelled: "cancelled";
|
|
3957
3957
|
running: "running";
|
|
3958
3958
|
failed: "failed";
|
|
3959
|
-
waiting: "waiting";
|
|
3960
3959
|
skipped: "skipped";
|
|
3960
|
+
waiting: "waiting";
|
|
3961
3961
|
}>;
|
|
3962
3962
|
attempt: z.ZodDefault<z.ZodNumber>;
|
|
3963
3963
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4553,8 +4553,8 @@ declare const WorkflowSchemas: {
|
|
|
4553
4553
|
"exit-and-resume": "exit-and-resume";
|
|
4554
4554
|
}>>;
|
|
4555
4555
|
terminalAuthority: z.ZodOptional<z.ZodEnum<{
|
|
4556
|
-
worker: "worker";
|
|
4557
4556
|
authority: "authority";
|
|
4557
|
+
worker: "worker";
|
|
4558
4558
|
}>>;
|
|
4559
4559
|
}, z.core.$strip>;
|
|
4560
4560
|
};
|
|
@@ -4781,10 +4781,10 @@ declare const WorkflowSchemas: {
|
|
|
4781
4781
|
frameId: z.ZodString;
|
|
4782
4782
|
nodeId: z.ZodString;
|
|
4783
4783
|
nodeType: z.ZodEnum<{
|
|
4784
|
-
sequence: "sequence";
|
|
4785
4784
|
station: "station";
|
|
4786
4785
|
"delegate-agent": "delegate-agent";
|
|
4787
4786
|
"delegate-role": "delegate-role";
|
|
4787
|
+
sequence: "sequence";
|
|
4788
4788
|
parallel: "parallel";
|
|
4789
4789
|
gate: "gate";
|
|
4790
4790
|
iterate: "iterate";
|
|
@@ -4942,10 +4942,10 @@ declare const WorkflowSchemas: {
|
|
|
4942
4942
|
frameId: z.ZodString;
|
|
4943
4943
|
nodeId: z.ZodString;
|
|
4944
4944
|
nodeType: z.ZodEnum<{
|
|
4945
|
-
sequence: "sequence";
|
|
4946
4945
|
station: "station";
|
|
4947
4946
|
"delegate-agent": "delegate-agent";
|
|
4948
4947
|
"delegate-role": "delegate-role";
|
|
4948
|
+
sequence: "sequence";
|
|
4949
4949
|
parallel: "parallel";
|
|
4950
4950
|
gate: "gate";
|
|
4951
4951
|
iterate: "iterate";
|
|
@@ -4959,8 +4959,8 @@ declare const WorkflowSchemas: {
|
|
|
4959
4959
|
cancelled: "cancelled";
|
|
4960
4960
|
running: "running";
|
|
4961
4961
|
failed: "failed";
|
|
4962
|
-
waiting: "waiting";
|
|
4963
4962
|
skipped: "skipped";
|
|
4963
|
+
waiting: "waiting";
|
|
4964
4964
|
}>;
|
|
4965
4965
|
attempt: z.ZodNumber;
|
|
4966
4966
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6632,8 +6632,8 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
6632
6632
|
status: z.ZodOptional<z.ZodEnum<{
|
|
6633
6633
|
cancelled: "cancelled";
|
|
6634
6634
|
rejected: "rejected";
|
|
6635
|
-
waiting: "waiting";
|
|
6636
6635
|
resumed: "resumed";
|
|
6636
|
+
waiting: "waiting";
|
|
6637
6637
|
"timed-out": "timed-out";
|
|
6638
6638
|
}>>;
|
|
6639
6639
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
@@ -6648,8 +6648,8 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
6648
6648
|
status: z.ZodEnum<{
|
|
6649
6649
|
cancelled: "cancelled";
|
|
6650
6650
|
rejected: "rejected";
|
|
6651
|
-
waiting: "waiting";
|
|
6652
6651
|
resumed: "resumed";
|
|
6652
|
+
waiting: "waiting";
|
|
6653
6653
|
"timed-out": "timed-out";
|
|
6654
6654
|
}>;
|
|
6655
6655
|
autoAction: z.ZodEnum<{
|
|
@@ -6728,10 +6728,10 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
6728
6728
|
frameId: z.ZodString;
|
|
6729
6729
|
nodeId: z.ZodString;
|
|
6730
6730
|
nodeType: z.ZodEnum<{
|
|
6731
|
-
sequence: "sequence";
|
|
6732
6731
|
station: "station";
|
|
6733
6732
|
"delegate-agent": "delegate-agent";
|
|
6734
6733
|
"delegate-role": "delegate-role";
|
|
6734
|
+
sequence: "sequence";
|
|
6735
6735
|
parallel: "parallel";
|
|
6736
6736
|
gate: "gate";
|
|
6737
6737
|
iterate: "iterate";
|
|
@@ -6746,8 +6746,8 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
6746
6746
|
cancelled: "cancelled";
|
|
6747
6747
|
running: "running";
|
|
6748
6748
|
failed: "failed";
|
|
6749
|
-
waiting: "waiting";
|
|
6750
6749
|
skipped: "skipped";
|
|
6750
|
+
waiting: "waiting";
|
|
6751
6751
|
}>;
|
|
6752
6752
|
attempt: z.ZodDefault<z.ZodNumber>;
|
|
6753
6753
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7343,8 +7343,8 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
7343
7343
|
"exit-and-resume": "exit-and-resume";
|
|
7344
7344
|
}>>;
|
|
7345
7345
|
terminalAuthority: z.ZodOptional<z.ZodEnum<{
|
|
7346
|
-
worker: "worker";
|
|
7347
7346
|
authority: "authority";
|
|
7347
|
+
worker: "worker";
|
|
7348
7348
|
}>>;
|
|
7349
7349
|
}, z.core.$strip>;
|
|
7350
7350
|
};
|
|
@@ -7571,10 +7571,10 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
7571
7571
|
frameId: z.ZodString;
|
|
7572
7572
|
nodeId: z.ZodString;
|
|
7573
7573
|
nodeType: z.ZodEnum<{
|
|
7574
|
-
sequence: "sequence";
|
|
7575
7574
|
station: "station";
|
|
7576
7575
|
"delegate-agent": "delegate-agent";
|
|
7577
7576
|
"delegate-role": "delegate-role";
|
|
7577
|
+
sequence: "sequence";
|
|
7578
7578
|
parallel: "parallel";
|
|
7579
7579
|
gate: "gate";
|
|
7580
7580
|
iterate: "iterate";
|
|
@@ -7732,10 +7732,10 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
7732
7732
|
frameId: z.ZodString;
|
|
7733
7733
|
nodeId: z.ZodString;
|
|
7734
7734
|
nodeType: z.ZodEnum<{
|
|
7735
|
-
sequence: "sequence";
|
|
7736
7735
|
station: "station";
|
|
7737
7736
|
"delegate-agent": "delegate-agent";
|
|
7738
7737
|
"delegate-role": "delegate-role";
|
|
7738
|
+
sequence: "sequence";
|
|
7739
7739
|
parallel: "parallel";
|
|
7740
7740
|
gate: "gate";
|
|
7741
7741
|
iterate: "iterate";
|
|
@@ -7749,8 +7749,8 @@ declare const WorkflowNamespace$1: _$_makaio_core0.BusNamespaceDefinition<"workf
|
|
|
7749
7749
|
cancelled: "cancelled";
|
|
7750
7750
|
running: "running";
|
|
7751
7751
|
failed: "failed";
|
|
7752
|
-
waiting: "waiting";
|
|
7753
7752
|
skipped: "skipped";
|
|
7753
|
+
waiting: "waiting";
|
|
7754
7754
|
}>;
|
|
7755
7755
|
attempt: z.ZodNumber;
|
|
7756
7756
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9422,8 +9422,8 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
9422
9422
|
status: z.ZodOptional<z.ZodEnum<{
|
|
9423
9423
|
cancelled: "cancelled";
|
|
9424
9424
|
rejected: "rejected";
|
|
9425
|
-
waiting: "waiting";
|
|
9426
9425
|
resumed: "resumed";
|
|
9426
|
+
waiting: "waiting";
|
|
9427
9427
|
"timed-out": "timed-out";
|
|
9428
9428
|
}>>;
|
|
9429
9429
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
@@ -9438,8 +9438,8 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
9438
9438
|
status: z.ZodEnum<{
|
|
9439
9439
|
cancelled: "cancelled";
|
|
9440
9440
|
rejected: "rejected";
|
|
9441
|
-
waiting: "waiting";
|
|
9442
9441
|
resumed: "resumed";
|
|
9442
|
+
waiting: "waiting";
|
|
9443
9443
|
"timed-out": "timed-out";
|
|
9444
9444
|
}>;
|
|
9445
9445
|
autoAction: z.ZodEnum<{
|
|
@@ -9518,10 +9518,10 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
9518
9518
|
frameId: z.ZodString;
|
|
9519
9519
|
nodeId: z.ZodString;
|
|
9520
9520
|
nodeType: z.ZodEnum<{
|
|
9521
|
-
sequence: "sequence";
|
|
9522
9521
|
station: "station";
|
|
9523
9522
|
"delegate-agent": "delegate-agent";
|
|
9524
9523
|
"delegate-role": "delegate-role";
|
|
9524
|
+
sequence: "sequence";
|
|
9525
9525
|
parallel: "parallel";
|
|
9526
9526
|
gate: "gate";
|
|
9527
9527
|
iterate: "iterate";
|
|
@@ -9536,8 +9536,8 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
9536
9536
|
cancelled: "cancelled";
|
|
9537
9537
|
running: "running";
|
|
9538
9538
|
failed: "failed";
|
|
9539
|
-
waiting: "waiting";
|
|
9540
9539
|
skipped: "skipped";
|
|
9540
|
+
waiting: "waiting";
|
|
9541
9541
|
}>;
|
|
9542
9542
|
attempt: z.ZodDefault<z.ZodNumber>;
|
|
9543
9543
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10133,8 +10133,8 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
10133
10133
|
"exit-and-resume": "exit-and-resume";
|
|
10134
10134
|
}>>;
|
|
10135
10135
|
terminalAuthority: z.ZodOptional<z.ZodEnum<{
|
|
10136
|
-
worker: "worker";
|
|
10137
10136
|
authority: "authority";
|
|
10137
|
+
worker: "worker";
|
|
10138
10138
|
}>>;
|
|
10139
10139
|
}, z.core.$strip>;
|
|
10140
10140
|
};
|
|
@@ -10361,10 +10361,10 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
10361
10361
|
frameId: z.ZodString;
|
|
10362
10362
|
nodeId: z.ZodString;
|
|
10363
10363
|
nodeType: z.ZodEnum<{
|
|
10364
|
-
sequence: "sequence";
|
|
10365
10364
|
station: "station";
|
|
10366
10365
|
"delegate-agent": "delegate-agent";
|
|
10367
10366
|
"delegate-role": "delegate-role";
|
|
10367
|
+
sequence: "sequence";
|
|
10368
10368
|
parallel: "parallel";
|
|
10369
10369
|
gate: "gate";
|
|
10370
10370
|
iterate: "iterate";
|
|
@@ -10522,10 +10522,10 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
10522
10522
|
frameId: z.ZodString;
|
|
10523
10523
|
nodeId: z.ZodString;
|
|
10524
10524
|
nodeType: z.ZodEnum<{
|
|
10525
|
-
sequence: "sequence";
|
|
10526
10525
|
station: "station";
|
|
10527
10526
|
"delegate-agent": "delegate-agent";
|
|
10528
10527
|
"delegate-role": "delegate-role";
|
|
10528
|
+
sequence: "sequence";
|
|
10529
10529
|
parallel: "parallel";
|
|
10530
10530
|
gate: "gate";
|
|
10531
10531
|
iterate: "iterate";
|
|
@@ -10539,8 +10539,8 @@ declare const WorkflowSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
10539
10539
|
cancelled: "cancelled";
|
|
10540
10540
|
running: "running";
|
|
10541
10541
|
failed: "failed";
|
|
10542
|
-
waiting: "waiting";
|
|
10543
10542
|
skipped: "skipped";
|
|
10543
|
+
waiting: "waiting";
|
|
10544
10544
|
}>;
|
|
10545
10545
|
attempt: z.ZodNumber;
|
|
10546
10546
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10922,8 +10922,8 @@ declare const WorkflowRunContextSchema$1: z.ZodObject<{
|
|
|
10922
10922
|
"exit-and-resume": "exit-and-resume";
|
|
10923
10923
|
}>>;
|
|
10924
10924
|
terminalAuthority: z.ZodOptional<z.ZodEnum<{
|
|
10925
|
-
worker: "worker";
|
|
10926
10925
|
authority: "authority";
|
|
10926
|
+
worker: "worker";
|
|
10927
10927
|
}>>;
|
|
10928
10928
|
}, z.core.$strip>;
|
|
10929
10929
|
type WorkflowRunContext = z.infer<typeof WorkflowRunContextSchema$1>;
|
|
@@ -11291,8 +11291,8 @@ declare const WorkflowWorkerConfigSchema$1: z.ZodObject<{
|
|
|
11291
11291
|
"exit-and-resume": "exit-and-resume";
|
|
11292
11292
|
}>>;
|
|
11293
11293
|
terminalAuthority: z.ZodOptional<z.ZodEnum<{
|
|
11294
|
-
worker: "worker";
|
|
11295
11294
|
authority: "authority";
|
|
11295
|
+
worker: "worker";
|
|
11296
11296
|
}>>;
|
|
11297
11297
|
}, z.core.$strip>;
|
|
11298
11298
|
type WorkflowWorkerConfig$1 = z.infer<typeof WorkflowWorkerConfigSchema$1>;
|
|
@@ -11763,10 +11763,10 @@ declare const WorkLogFrameEntrySchema$1: z.ZodObject<{
|
|
|
11763
11763
|
frameId: z.ZodString;
|
|
11764
11764
|
nodeId: z.ZodString;
|
|
11765
11765
|
nodeType: z.ZodEnum<{
|
|
11766
|
-
sequence: "sequence";
|
|
11767
11766
|
station: "station";
|
|
11768
11767
|
"delegate-agent": "delegate-agent";
|
|
11769
11768
|
"delegate-role": "delegate-role";
|
|
11769
|
+
sequence: "sequence";
|
|
11770
11770
|
parallel: "parallel";
|
|
11771
11771
|
gate: "gate";
|
|
11772
11772
|
iterate: "iterate";
|
|
@@ -11780,8 +11780,8 @@ declare const WorkLogFrameEntrySchema$1: z.ZodObject<{
|
|
|
11780
11780
|
cancelled: "cancelled";
|
|
11781
11781
|
running: "running";
|
|
11782
11782
|
failed: "failed";
|
|
11783
|
-
waiting: "waiting";
|
|
11784
11783
|
skipped: "skipped";
|
|
11784
|
+
waiting: "waiting";
|
|
11785
11785
|
}>;
|
|
11786
11786
|
attempt: z.ZodNumber;
|
|
11787
11787
|
iteration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11834,8 +11834,8 @@ declare const WorkLogGateEventSchema: z.ZodObject<{
|
|
|
11834
11834
|
status: z.ZodEnum<{
|
|
11835
11835
|
cancelled: "cancelled";
|
|
11836
11836
|
rejected: "rejected";
|
|
11837
|
-
waiting: "waiting";
|
|
11838
11837
|
resumed: "resumed";
|
|
11838
|
+
waiting: "waiting";
|
|
11839
11839
|
"timed-out": "timed-out";
|
|
11840
11840
|
}>;
|
|
11841
11841
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -18,8 +18,8 @@ import * as _$_makaio_contracts0 from "@makaio/framework/contracts";
|
|
|
18
18
|
declare const ArtifactViewResolveRequestSchema$1: z.ZodObject<{
|
|
19
19
|
level: z.ZodEnum<{
|
|
20
20
|
link: "link";
|
|
21
|
-
summary: "summary";
|
|
22
21
|
full: "full";
|
|
22
|
+
summary: "summary";
|
|
23
23
|
}>;
|
|
24
24
|
params: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25
25
|
ref: z.ZodObject<{
|
|
@@ -279,8 +279,8 @@ declare const MaterializationSchemas: {
|
|
|
279
279
|
request: z.ZodObject<{
|
|
280
280
|
level: z.ZodEnum<{
|
|
281
281
|
link: "link";
|
|
282
|
-
summary: "summary";
|
|
283
282
|
full: "full";
|
|
283
|
+
summary: "summary";
|
|
284
284
|
}>;
|
|
285
285
|
params: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
286
286
|
ref: z.ZodObject<{
|
|
@@ -517,8 +517,8 @@ declare const MaterializationNamespace: _$_makaio_core0.BusNamespaceDefinition<"
|
|
|
517
517
|
request: z.ZodObject<{
|
|
518
518
|
level: z.ZodEnum<{
|
|
519
519
|
link: "link";
|
|
520
|
-
summary: "summary";
|
|
521
520
|
full: "full";
|
|
521
|
+
summary: "summary";
|
|
522
522
|
}>;
|
|
523
523
|
params: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
524
524
|
ref: z.ZodObject<{
|
|
@@ -767,8 +767,8 @@ declare const MaterializationSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_c
|
|
|
767
767
|
request: z.ZodObject<{
|
|
768
768
|
level: z.ZodEnum<{
|
|
769
769
|
link: "link";
|
|
770
|
-
summary: "summary";
|
|
771
770
|
full: "full";
|
|
771
|
+
summary: "summary";
|
|
772
772
|
}>;
|
|
773
773
|
params: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
774
774
|
ref: z.ZodObject<{
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as ExtensionCoordinatorOptions, c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../../index-
|
|
1
|
+
import { a as ExtensionCoordinatorOptions, c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../../index-CYfiCzb-.mjs";
|
|
2
2
|
export { ContributionProcessor, ExtensionCoordinator, ExtensionCoordinatorOptions, ExtensionRuntimeSurface, KernelExtensionContext, KernelMakaioExtension, RuntimeCapability, RuntimeEnvironment, coalesceExtensionOverrides, filterEligibleExtensions };
|
package/dist/kernel/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as ExtensionInfo, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, s as ComponentStateSchema, t as ExtensionNamespace } from "../index-
|
|
2
|
-
import { c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../index-
|
|
1
|
+
import { c as ExtensionInfo, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, s as ComponentStateSchema, t as ExtensionNamespace } from "../index-DSyyWwR2.mjs";
|
|
2
|
+
import { c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../index-CYfiCzb-.mjs";
|
|
3
3
|
import { i as WindowStyle, n as WindowRegistration, r as WindowRegistry, t as STYLE_DEFAULTS } from "../window-registry-Qcnvlhp7.mjs";
|
|
4
4
|
import { a as KernelSchemas, i as setWorkflowTriggerTypeRegistry, n as KernelSubjects, r as getWorkflowTriggerTypeRegistry, t as KernelNamespace } from "../index-C96LlS5m.mjs";
|
|
5
5
|
import { a as MachineIdentity, c as StorageProvider, i as IdentityProvider, n as NoTransportProvider, o as TransportProvider, r as MemoryStorageProvider, s as StorageCleanup, t as EphemeralIdentityProvider } from "../index-oYGf2zIe.mjs";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as ComponentInfoSchema, c as ExtensionInfo, d as ExtensionWarningEntrySchema, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, r as ComponentIdentitySchema, s as ComponentStateSchema, t as ExtensionNamespace, u as ExtensionWarningEntry } from "../../index-
|
|
1
|
+
import { a as ComponentInfoSchema, c as ExtensionInfo, d as ExtensionWarningEntrySchema, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, r as ComponentIdentitySchema, s as ComponentStateSchema, t as ExtensionNamespace, u as ExtensionWarningEntry } from "../../index-DSyyWwR2.mjs";
|
|
2
2
|
export { ComponentIdentitySchema, ComponentInfo, ComponentInfoSchema, ComponentState, ComponentStateSchema, ExtensionInfo, ExtensionInfoSchema, ExtensionNamespace, ExtensionSubjects, ExtensionWarningEntry, ExtensionWarningEntrySchema, ServiceInfo, ServiceInfoSchema };
|
|
@@ -334,9 +334,9 @@ declare const MessageStorageNamespace$1: {
|
|
|
334
334
|
output: _$zod.ZodString;
|
|
335
335
|
isError: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
336
336
|
}, _$zod_v4_core0.$strip>], "type">>;
|
|
337
|
-
agentId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
338
337
|
turnId: _$zod.ZodNullable<_$zod.ZodString>;
|
|
339
338
|
adapterSessionId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
339
|
+
agentId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
340
340
|
timestamp: _$zod.ZodNumber;
|
|
341
341
|
contentText: _$zod.ZodString;
|
|
342
342
|
adapterMessageId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -1119,9 +1119,9 @@ declare const MessageStorageNamespace$1: {
|
|
|
1119
1119
|
output: _$zod.ZodString;
|
|
1120
1120
|
isError: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
1121
1121
|
}, _$zod_v4_core0.$strip>], "type">>;
|
|
1122
|
-
agentId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1123
1122
|
turnId: _$zod.ZodNullable<_$zod.ZodString>;
|
|
1124
1123
|
adapterSessionId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1124
|
+
agentId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1125
1125
|
timestamp: _$zod.ZodNumber;
|
|
1126
1126
|
contentText: _$zod.ZodString;
|
|
1127
1127
|
adapterMessageId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -1964,8 +1964,8 @@ declare const MessageStorageNamespace$1: {
|
|
|
1964
1964
|
timestamp: number;
|
|
1965
1965
|
contentText: string;
|
|
1966
1966
|
origin?: "text" | "compact" | "voice" | undefined;
|
|
1967
|
-
agentId?: string | undefined;
|
|
1968
1967
|
adapterSessionId?: string | undefined;
|
|
1968
|
+
agentId?: string | undefined;
|
|
1969
1969
|
adapterMessageId?: string | undefined;
|
|
1970
1970
|
editOf?: string | undefined;
|
|
1971
1971
|
messageId?: string | undefined;
|
|
@@ -2029,18 +2029,18 @@ declare const MessageStorageNamespace$1: {
|
|
|
2029
2029
|
isError?: boolean | undefined;
|
|
2030
2030
|
})[];
|
|
2031
2031
|
messageId: string;
|
|
2032
|
-
agentId: never;
|
|
2033
2032
|
turnId: string | null;
|
|
2034
2033
|
adapterSessionId: never;
|
|
2035
|
-
|
|
2034
|
+
agentId: never;
|
|
2036
2035
|
timestamp: number;
|
|
2036
|
+
limit: never;
|
|
2037
2037
|
query: string;
|
|
2038
2038
|
contentText: string;
|
|
2039
2039
|
adapterMessageId: string;
|
|
2040
|
-
after: never;
|
|
2041
|
-
order: never;
|
|
2042
2040
|
emitEvent: never;
|
|
2041
|
+
after: never;
|
|
2043
2042
|
includeAfter: never;
|
|
2043
|
+
order: never;
|
|
2044
2044
|
} | undefined;
|
|
2045
2045
|
};
|
|
2046
2046
|
//#endregion
|
package/dist/package.json
CHANGED
|
@@ -45,17 +45,17 @@ type SubagentTemplateSummary = z.infer<typeof SubagentTemplateSummarySchema>;
|
|
|
45
45
|
declare const SubagentTemplateCreateSchema: z.ZodObject<{
|
|
46
46
|
name: z.ZodString;
|
|
47
47
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
48
|
-
adapterName: z.ZodString;
|
|
49
48
|
providerConfigId: z.ZodOptional<z.ZodString>;
|
|
50
49
|
model: z.ZodOptional<z.ZodString>;
|
|
50
|
+
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
51
|
+
allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
52
|
+
disallowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
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
|
/**
|
|
@@ -130,17 +130,17 @@ declare const SubagentTemplateSettingsSchemas: {
|
|
|
130
130
|
request: z.ZodObject<{
|
|
131
131
|
name: z.ZodString;
|
|
132
132
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
133
|
-
adapterName: z.ZodString;
|
|
134
133
|
providerConfigId: z.ZodOptional<z.ZodString>;
|
|
135
134
|
model: z.ZodOptional<z.ZodString>;
|
|
135
|
+
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
136
|
+
allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
137
|
+
disallowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
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;
|
|
@@ -160,8 +160,8 @@ declare const ResolvedContextRulesSchema: z.ZodObject<{
|
|
|
160
160
|
declare const ContextRuleChangedEventSchema: z.ZodObject<{
|
|
161
161
|
ruleId: z.ZodString;
|
|
162
162
|
changeType: z.ZodEnum<{
|
|
163
|
-
updated: "updated";
|
|
164
163
|
created: "created";
|
|
164
|
+
updated: "updated";
|
|
165
165
|
deleted: "deleted";
|
|
166
166
|
}>;
|
|
167
167
|
previous: z.ZodNullable<z.ZodObject<{
|
|
@@ -313,8 +313,8 @@ declare const ContextRulesServiceNamespace: _$_makaio_core0.BusNamespaceDefiniti
|
|
|
313
313
|
changed: _$zod.ZodObject<{
|
|
314
314
|
ruleId: _$zod.ZodString;
|
|
315
315
|
changeType: _$zod.ZodEnum<{
|
|
316
|
-
updated: "updated";
|
|
317
316
|
created: "created";
|
|
317
|
+
updated: "updated";
|
|
318
318
|
deleted: "deleted";
|
|
319
319
|
}>;
|
|
320
320
|
previous: _$zod.ZodNullable<_$zod.ZodObject<{
|
|
@@ -383,8 +383,8 @@ declare const ContextRulesServiceSubjects: _$_makaio_core0.BusSubjects<_$_makaio
|
|
|
383
383
|
changed: _$zod.ZodObject<{
|
|
384
384
|
ruleId: _$zod.ZodString;
|
|
385
385
|
changeType: _$zod.ZodEnum<{
|
|
386
|
-
updated: "updated";
|
|
387
386
|
created: "created";
|
|
387
|
+
updated: "updated";
|
|
388
388
|
deleted: "deleted";
|
|
389
389
|
}>;
|
|
390
390
|
previous: _$zod.ZodNullable<_$zod.ZodObject<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { a as ExecutionTargetInputSchema, c as ExecutionTargetResolveRequest, d as ExecutionTargetSchemas, f as ExecutionTargetType, i as ExecutionTargetInput, l as ExecutionTargetResolveRequestSchema, m as LocalExecutionTargetSchema, n as ContainerLocalExecutionTargetSchema, o as ExecutionTargetListQuery, p as ExecutionTargetTypeSchema, r as ExecutionTarget, s as ExecutionTargetListQuerySchema, t as ContainerIsolatedExecutionTargetSchema, u as ExecutionTargetSchema } from "../../schemas-ChF2z4RB.mjs";
|
|
2
2
|
import { n as ExecutionTargetSubjects, t as ExecutionTargetNamespace } from "../../namespace-Bd49QmzS.mjs";
|
|
3
|
-
import { A as ContainerSessionRuntimeBindingSchema, B as SpawnRequestSchema, C as ContainerIsolatedSpawnRequest, D as ContainerRuntime, E as ContainerLocalSpawnRequestSchema, F as ContainerStopped, G as StatusResponse, H as SpawnResponseSchema, I as ContainerStoppedSchema, J as StopRequestSchema, K as StatusResponseSchema, L as CredentialFreeGitRemoteSchema, M as ContainerStartedSchema, N as ContainerState, O as ContainerRuntimeSchema, P as ContainerStateSchema, R as CredentialFreeRelayUrlSchema, S as ContainerDestroyedSchema, T as ContainerLocalSpawnRequest, U as StatusRequest, V as SpawnResponse, W as StatusRequestSchema, X as StopResponseSchema, Y as StopResponse, _ as ContainerConnectorAuthValue, a as DockerSubjects, b as ContainerCreatedSchema, c as ContainerAdapterAuthEnvelopeSchema, d as ContainerBootstrapConfig, f as ContainerBootstrapConfigSchema, g as ContainerConnectorAuthDeliverySchema, h as ContainerConnectorAuthDelivery, i as DockerNamespace, j as ContainerStarted, k as ContainerSessionRuntimeBinding, l as ContainerAdapterAuthSelector, m as ContainerBootstrapSpawnRequestSchema, n as ContainerSpawnSubjects, o as CONTAINER_BOOTSTRAP_PRIVATE_ENV_VARS, p as ContainerBootstrapSpawnRequest, q as StopRequest, r as CONTAINER_BOOTSTRAP_CHANNEL_ENDPOINT, s as ContainerAdapterAuthEnvelope, t as ContainerSpawnNamespace, u as ContainerAdapterAuthSelectorSchema, v as ContainerConnectorAuthValueSchema, w as ContainerIsolatedSpawnRequestSchema, x as ContainerDestroyed, y as ContainerCreated, z as SpawnRequest } from "../../index-
|
|
3
|
+
import { A as ContainerSessionRuntimeBindingSchema, B as SpawnRequestSchema, C as ContainerIsolatedSpawnRequest, D as ContainerRuntime, E as ContainerLocalSpawnRequestSchema, F as ContainerStopped, G as StatusResponse, H as SpawnResponseSchema, I as ContainerStoppedSchema, J as StopRequestSchema, K as StatusResponseSchema, L as CredentialFreeGitRemoteSchema, M as ContainerStartedSchema, N as ContainerState, O as ContainerRuntimeSchema, P as ContainerStateSchema, R as CredentialFreeRelayUrlSchema, S as ContainerDestroyedSchema, T as ContainerLocalSpawnRequest, U as StatusRequest, V as SpawnResponse, W as StatusRequestSchema, X as StopResponseSchema, Y as StopResponse, _ as ContainerConnectorAuthValue, a as DockerSubjects, b as ContainerCreatedSchema, c as ContainerAdapterAuthEnvelopeSchema, d as ContainerBootstrapConfig, f as ContainerBootstrapConfigSchema, g as ContainerConnectorAuthDeliverySchema, h as ContainerConnectorAuthDelivery, i as DockerNamespace, j as ContainerStarted, k as ContainerSessionRuntimeBinding, l as ContainerAdapterAuthSelector, m as ContainerBootstrapSpawnRequestSchema, n as ContainerSpawnSubjects, o as CONTAINER_BOOTSTRAP_PRIVATE_ENV_VARS, p as ContainerBootstrapSpawnRequest, q as StopRequest, r as CONTAINER_BOOTSTRAP_CHANNEL_ENDPOINT, s as ContainerAdapterAuthEnvelope, t as ContainerSpawnNamespace, u as ContainerAdapterAuthSelectorSchema, v as ContainerConnectorAuthValueSchema, w as ContainerIsolatedSpawnRequestSchema, x as ContainerDestroyed, y as ContainerCreated, z as SpawnRequest } from "../../index-g36yJDge.mjs";
|
|
4
4
|
export { CONTAINER_BOOTSTRAP_CHANNEL_ENDPOINT, CONTAINER_BOOTSTRAP_PRIVATE_ENV_VARS, ContainerAdapterAuthEnvelope, ContainerAdapterAuthEnvelopeSchema, ContainerAdapterAuthSelector, ContainerAdapterAuthSelectorSchema, ContainerBootstrapConfig, ContainerBootstrapConfigSchema, ContainerBootstrapSpawnRequest, ContainerBootstrapSpawnRequestSchema, ContainerConnectorAuthDelivery, ContainerConnectorAuthDeliverySchema, ContainerConnectorAuthValue, ContainerConnectorAuthValueSchema, ContainerCreated, ContainerCreatedSchema, ContainerDestroyed, ContainerDestroyedSchema, ContainerIsolatedExecutionTargetSchema, ContainerIsolatedSpawnRequest, ContainerIsolatedSpawnRequestSchema, ContainerLocalExecutionTargetSchema, ContainerLocalSpawnRequest, ContainerLocalSpawnRequestSchema, ContainerRuntime, ContainerRuntimeSchema, ContainerSessionRuntimeBinding, ContainerSessionRuntimeBindingSchema, ContainerSpawnNamespace, ContainerSpawnSubjects, ContainerStarted, ContainerStartedSchema, ContainerState, ContainerStateSchema, ContainerStopped, ContainerStoppedSchema, CredentialFreeGitRemoteSchema, CredentialFreeRelayUrlSchema, DockerNamespace, DockerSubjects, ExecutionTarget, ExecutionTargetInput, ExecutionTargetInputSchema, ExecutionTargetListQuery, ExecutionTargetListQuerySchema, ExecutionTargetNamespace, ExecutionTargetResolveRequest, ExecutionTargetResolveRequestSchema, ExecutionTargetSchema, ExecutionTargetSchemas, ExecutionTargetSubjects, ExecutionTargetType, ExecutionTargetTypeSchema, LocalExecutionTargetSchema, SpawnRequest, SpawnRequestSchema, SpawnResponse, SpawnResponseSchema, StatusRequest, StatusRequestSchema, StatusResponse, StatusResponseSchema, StopRequest, StopRequestSchema, StopResponse, StopResponseSchema };
|
|
@@ -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";
|
|
14
13
|
delete: "delete";
|
|
15
14
|
create: "create";
|
|
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";
|
|
23
22
|
delete: "delete";
|
|
24
23
|
create: "create";
|
|
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";
|
|
157
156
|
delete: "delete";
|
|
158
157
|
create: "create";
|
|
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";
|
|
166
165
|
delete: "delete";
|
|
167
166
|
create: "create";
|
|
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";
|
|
298
297
|
delete: "delete";
|
|
299
298
|
create: "create";
|
|
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";
|
|
307
306
|
delete: "delete";
|
|
308
307
|
create: "create";
|
|
308
|
+
change: "change";
|
|
309
309
|
}>;
|
|
310
310
|
}, _$zod_v4_core0.$strip>>;
|
|
311
311
|
}, _$zod_v4_core0.$strip>;
|