@junctionpanel/server 0.1.77 → 0.1.79
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/server/server/agent/providers/gemini-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/gemini-agent.js +272 -56
- package/dist/server/server/agent/providers/gemini-agent.js.map +1 -1
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +124 -68
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/shared/messages.d.ts +48 -24
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +2 -1
- package/dist/server/shared/messages.js.map +1 -1
- package/package.json +2 -2
|
@@ -15870,7 +15870,8 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15870
15870
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
15871
15871
|
payload: z.ZodObject<{
|
|
15872
15872
|
success: z.ZodBoolean;
|
|
15873
|
-
|
|
15873
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
15874
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
15874
15875
|
error: z.ZodNullable<z.ZodObject<{
|
|
15875
15876
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
15876
15877
|
message: z.ZodString;
|
|
@@ -15887,17 +15888,19 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15887
15888
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15888
15889
|
message: string;
|
|
15889
15890
|
} | null;
|
|
15891
|
+
archivedAt: string | null;
|
|
15890
15892
|
requestId: string;
|
|
15891
15893
|
success: boolean;
|
|
15892
|
-
|
|
15894
|
+
archivedAgentIds: string[];
|
|
15893
15895
|
}, {
|
|
15894
15896
|
error: {
|
|
15895
15897
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15896
15898
|
message: string;
|
|
15897
15899
|
} | null;
|
|
15900
|
+
archivedAt: string | null;
|
|
15898
15901
|
requestId: string;
|
|
15899
15902
|
success: boolean;
|
|
15900
|
-
|
|
15903
|
+
archivedAgentIds: string[];
|
|
15901
15904
|
}>;
|
|
15902
15905
|
}, "strip", z.ZodTypeAny, {
|
|
15903
15906
|
type: "junction_worktree_archive_response";
|
|
@@ -15906,9 +15909,10 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15906
15909
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15907
15910
|
message: string;
|
|
15908
15911
|
} | null;
|
|
15912
|
+
archivedAt: string | null;
|
|
15909
15913
|
requestId: string;
|
|
15910
15914
|
success: boolean;
|
|
15911
|
-
|
|
15915
|
+
archivedAgentIds: string[];
|
|
15912
15916
|
};
|
|
15913
15917
|
}, {
|
|
15914
15918
|
type: "junction_worktree_archive_response";
|
|
@@ -15917,9 +15921,10 @@ export declare const JunctionWorktreeArchiveResponseSchema: z.ZodObject<{
|
|
|
15917
15921
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
15918
15922
|
message: string;
|
|
15919
15923
|
} | null;
|
|
15924
|
+
archivedAt: string | null;
|
|
15920
15925
|
requestId: string;
|
|
15921
15926
|
success: boolean;
|
|
15922
|
-
|
|
15927
|
+
archivedAgentIds: string[];
|
|
15923
15928
|
};
|
|
15924
15929
|
}>;
|
|
15925
15930
|
export declare const FileExplorerResponseSchema: z.ZodObject<{
|
|
@@ -27068,7 +27073,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27068
27073
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
27069
27074
|
payload: z.ZodObject<{
|
|
27070
27075
|
success: z.ZodBoolean;
|
|
27071
|
-
|
|
27076
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
27077
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
27072
27078
|
error: z.ZodNullable<z.ZodObject<{
|
|
27073
27079
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
27074
27080
|
message: z.ZodString;
|
|
@@ -27085,17 +27091,19 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27085
27091
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27086
27092
|
message: string;
|
|
27087
27093
|
} | null;
|
|
27094
|
+
archivedAt: string | null;
|
|
27088
27095
|
requestId: string;
|
|
27089
27096
|
success: boolean;
|
|
27090
|
-
|
|
27097
|
+
archivedAgentIds: string[];
|
|
27091
27098
|
}, {
|
|
27092
27099
|
error: {
|
|
27093
27100
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27094
27101
|
message: string;
|
|
27095
27102
|
} | null;
|
|
27103
|
+
archivedAt: string | null;
|
|
27096
27104
|
requestId: string;
|
|
27097
27105
|
success: boolean;
|
|
27098
|
-
|
|
27106
|
+
archivedAgentIds: string[];
|
|
27099
27107
|
}>;
|
|
27100
27108
|
}, "strip", z.ZodTypeAny, {
|
|
27101
27109
|
type: "junction_worktree_archive_response";
|
|
@@ -27104,9 +27112,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27104
27112
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27105
27113
|
message: string;
|
|
27106
27114
|
} | null;
|
|
27115
|
+
archivedAt: string | null;
|
|
27107
27116
|
requestId: string;
|
|
27108
27117
|
success: boolean;
|
|
27109
|
-
|
|
27118
|
+
archivedAgentIds: string[];
|
|
27110
27119
|
};
|
|
27111
27120
|
}, {
|
|
27112
27121
|
type: "junction_worktree_archive_response";
|
|
@@ -27115,9 +27124,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
27115
27124
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
27116
27125
|
message: string;
|
|
27117
27126
|
} | null;
|
|
27127
|
+
archivedAt: string | null;
|
|
27118
27128
|
requestId: string;
|
|
27119
27129
|
success: boolean;
|
|
27120
|
-
|
|
27130
|
+
archivedAgentIds: string[];
|
|
27121
27131
|
};
|
|
27122
27132
|
}>, z.ZodObject<{
|
|
27123
27133
|
type: z.ZodLiteral<"file_explorer_response">;
|
|
@@ -41481,7 +41491,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41481
41491
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
41482
41492
|
payload: z.ZodObject<{
|
|
41483
41493
|
success: z.ZodBoolean;
|
|
41484
|
-
|
|
41494
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
41495
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
41485
41496
|
error: z.ZodNullable<z.ZodObject<{
|
|
41486
41497
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
41487
41498
|
message: z.ZodString;
|
|
@@ -41498,17 +41509,19 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41498
41509
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41499
41510
|
message: string;
|
|
41500
41511
|
} | null;
|
|
41512
|
+
archivedAt: string | null;
|
|
41501
41513
|
requestId: string;
|
|
41502
41514
|
success: boolean;
|
|
41503
|
-
|
|
41515
|
+
archivedAgentIds: string[];
|
|
41504
41516
|
}, {
|
|
41505
41517
|
error: {
|
|
41506
41518
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41507
41519
|
message: string;
|
|
41508
41520
|
} | null;
|
|
41521
|
+
archivedAt: string | null;
|
|
41509
41522
|
requestId: string;
|
|
41510
41523
|
success: boolean;
|
|
41511
|
-
|
|
41524
|
+
archivedAgentIds: string[];
|
|
41512
41525
|
}>;
|
|
41513
41526
|
}, "strip", z.ZodTypeAny, {
|
|
41514
41527
|
type: "junction_worktree_archive_response";
|
|
@@ -41517,9 +41530,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41517
41530
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41518
41531
|
message: string;
|
|
41519
41532
|
} | null;
|
|
41533
|
+
archivedAt: string | null;
|
|
41520
41534
|
requestId: string;
|
|
41521
41535
|
success: boolean;
|
|
41522
|
-
|
|
41536
|
+
archivedAgentIds: string[];
|
|
41523
41537
|
};
|
|
41524
41538
|
}, {
|
|
41525
41539
|
type: "junction_worktree_archive_response";
|
|
@@ -41528,9 +41542,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
41528
41542
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
41529
41543
|
message: string;
|
|
41530
41544
|
} | null;
|
|
41545
|
+
archivedAt: string | null;
|
|
41531
41546
|
requestId: string;
|
|
41532
41547
|
success: boolean;
|
|
41533
|
-
|
|
41548
|
+
archivedAgentIds: string[];
|
|
41534
41549
|
};
|
|
41535
41550
|
}>, z.ZodObject<{
|
|
41536
41551
|
type: z.ZodLiteral<"file_explorer_response">;
|
|
@@ -45121,9 +45136,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45121
45136
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
45122
45137
|
message: string;
|
|
45123
45138
|
} | null;
|
|
45139
|
+
archivedAt: string | null;
|
|
45124
45140
|
requestId: string;
|
|
45125
45141
|
success: boolean;
|
|
45126
|
-
|
|
45142
|
+
archivedAgentIds: string[];
|
|
45127
45143
|
};
|
|
45128
45144
|
} | {
|
|
45129
45145
|
type: "file_explorer_response";
|
|
@@ -46799,9 +46815,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46799
46815
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
46800
46816
|
message: string;
|
|
46801
46817
|
} | null;
|
|
46818
|
+
archivedAt: string | null;
|
|
46802
46819
|
requestId: string;
|
|
46803
46820
|
success: boolean;
|
|
46804
|
-
|
|
46821
|
+
archivedAgentIds: string[];
|
|
46805
46822
|
};
|
|
46806
46823
|
} | {
|
|
46807
46824
|
type: "file_explorer_response";
|
|
@@ -59101,7 +59118,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59101
59118
|
type: z.ZodLiteral<"junction_worktree_archive_response">;
|
|
59102
59119
|
payload: z.ZodObject<{
|
|
59103
59120
|
success: z.ZodBoolean;
|
|
59104
|
-
|
|
59121
|
+
archivedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
59122
|
+
archivedAt: z.ZodNullable<z.ZodString>;
|
|
59105
59123
|
error: z.ZodNullable<z.ZodObject<{
|
|
59106
59124
|
code: z.ZodEnum<["NOT_GIT_REPO", "NOT_ALLOWED", "MERGE_CONFLICT", "UNKNOWN"]>;
|
|
59107
59125
|
message: z.ZodString;
|
|
@@ -59118,17 +59136,19 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59118
59136
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59119
59137
|
message: string;
|
|
59120
59138
|
} | null;
|
|
59139
|
+
archivedAt: string | null;
|
|
59121
59140
|
requestId: string;
|
|
59122
59141
|
success: boolean;
|
|
59123
|
-
|
|
59142
|
+
archivedAgentIds: string[];
|
|
59124
59143
|
}, {
|
|
59125
59144
|
error: {
|
|
59126
59145
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59127
59146
|
message: string;
|
|
59128
59147
|
} | null;
|
|
59148
|
+
archivedAt: string | null;
|
|
59129
59149
|
requestId: string;
|
|
59130
59150
|
success: boolean;
|
|
59131
|
-
|
|
59151
|
+
archivedAgentIds: string[];
|
|
59132
59152
|
}>;
|
|
59133
59153
|
}, "strip", z.ZodTypeAny, {
|
|
59134
59154
|
type: "junction_worktree_archive_response";
|
|
@@ -59137,9 +59157,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59137
59157
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59138
59158
|
message: string;
|
|
59139
59159
|
} | null;
|
|
59160
|
+
archivedAt: string | null;
|
|
59140
59161
|
requestId: string;
|
|
59141
59162
|
success: boolean;
|
|
59142
|
-
|
|
59163
|
+
archivedAgentIds: string[];
|
|
59143
59164
|
};
|
|
59144
59165
|
}, {
|
|
59145
59166
|
type: "junction_worktree_archive_response";
|
|
@@ -59148,9 +59169,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
59148
59169
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
59149
59170
|
message: string;
|
|
59150
59171
|
} | null;
|
|
59172
|
+
archivedAt: string | null;
|
|
59151
59173
|
requestId: string;
|
|
59152
59174
|
success: boolean;
|
|
59153
|
-
|
|
59175
|
+
archivedAgentIds: string[];
|
|
59154
59176
|
};
|
|
59155
59177
|
}>, z.ZodObject<{
|
|
59156
59178
|
type: z.ZodLiteral<"file_explorer_response">;
|
|
@@ -62741,9 +62763,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
62741
62763
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
62742
62764
|
message: string;
|
|
62743
62765
|
} | null;
|
|
62766
|
+
archivedAt: string | null;
|
|
62744
62767
|
requestId: string;
|
|
62745
62768
|
success: boolean;
|
|
62746
|
-
|
|
62769
|
+
archivedAgentIds: string[];
|
|
62747
62770
|
};
|
|
62748
62771
|
} | {
|
|
62749
62772
|
type: "file_explorer_response";
|
|
@@ -64419,9 +64442,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
64419
64442
|
code: "NOT_GIT_REPO" | "NOT_ALLOWED" | "MERGE_CONFLICT" | "UNKNOWN";
|
|
64420
64443
|
message: string;
|
|
64421
64444
|
} | null;
|
|
64445
|
+
archivedAt: string | null;
|
|
64422
64446
|
requestId: string;
|
|
64423
64447
|
success: boolean;
|
|
64424
|
-
|
|
64448
|
+
archivedAgentIds: string[];
|
|
64425
64449
|
};
|
|
64426
64450
|
} | {
|
|
64427
64451
|
type: "file_explorer_response";
|