@korso/shepherd-ui 0.8.0 → 0.9.1
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/components/Chat.js +4 -1
- package/dist/config/ConnectAgent.js +31 -8
- package/dist/lib/{Dashboard-D7tbhMwK.js → Dashboard-BSGZuM-A.js} +216 -199
- package/dist/lib/index.d.ts +5 -0
- package/dist/lib/index.js +235 -214
- package/dist/lib/selfhost.js +1 -1
- package/dist/lib/styles.css +8 -0
- package/dist/selfhost/assets/{index-dBmCZSQx.css → index-0s8wNrl-.css} +1 -1
- package/dist/selfhost/assets/{index--_PPE03M.js → index-BK1xPf0V.js} +7 -7
- package/dist/selfhost/index.html +2 -2
- package/package.json +1 -1
package/dist/lib/index.d.ts
CHANGED
|
@@ -729,6 +729,7 @@ declare const WorkspaceLandscapeResponse: z.ZodObject<{
|
|
|
729
729
|
repo: z.ZodString;
|
|
730
730
|
fromAdmin: z.ZodDefault<z.ZodBoolean>;
|
|
731
731
|
toAdmin: z.ZodDefault<z.ZodBoolean>;
|
|
732
|
+
targetMemberName: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
732
733
|
createdAt: z.ZodString;
|
|
733
734
|
}, "strip", z.ZodTypeAny, {
|
|
734
735
|
fromAgentName: string;
|
|
@@ -739,6 +740,7 @@ declare const WorkspaceLandscapeResponse: z.ZodObject<{
|
|
|
739
740
|
repo: string;
|
|
740
741
|
fromAdmin: boolean;
|
|
741
742
|
toAdmin: boolean;
|
|
743
|
+
targetMemberName: string | null;
|
|
742
744
|
}, {
|
|
743
745
|
fromAgentName: string;
|
|
744
746
|
fromHuman: string;
|
|
@@ -748,6 +750,7 @@ declare const WorkspaceLandscapeResponse: z.ZodObject<{
|
|
|
748
750
|
repo: string;
|
|
749
751
|
fromAdmin?: boolean | undefined;
|
|
750
752
|
toAdmin?: boolean | undefined;
|
|
753
|
+
targetMemberName?: string | null | undefined;
|
|
751
754
|
}>, "many">;
|
|
752
755
|
serverTime: z.ZodString;
|
|
753
756
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -760,6 +763,7 @@ declare const WorkspaceLandscapeResponse: z.ZodObject<{
|
|
|
760
763
|
repo: string;
|
|
761
764
|
fromAdmin: boolean;
|
|
762
765
|
toAdmin: boolean;
|
|
766
|
+
targetMemberName: string | null;
|
|
763
767
|
}[];
|
|
764
768
|
agents: {
|
|
765
769
|
human: string;
|
|
@@ -793,6 +797,7 @@ declare const WorkspaceLandscapeResponse: z.ZodObject<{
|
|
|
793
797
|
repo: string;
|
|
794
798
|
fromAdmin?: boolean | undefined;
|
|
795
799
|
toAdmin?: boolean | undefined;
|
|
800
|
+
targetMemberName?: string | null | undefined;
|
|
796
801
|
}[];
|
|
797
802
|
agents: {
|
|
798
803
|
human: string;
|