@openspecui/core 2.1.5 → 2.1.7
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/index.d.mts +10 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1846,12 +1846,14 @@ interface DashboardGitCommitEntry {
|
|
|
1846
1846
|
type: 'commit';
|
|
1847
1847
|
hash: string;
|
|
1848
1848
|
title: string;
|
|
1849
|
+
committedAt: number;
|
|
1849
1850
|
relatedChanges: string[];
|
|
1850
1851
|
diff: DashboardGitDiffStats;
|
|
1851
1852
|
}
|
|
1852
1853
|
interface DashboardGitUncommittedEntry {
|
|
1853
1854
|
type: 'uncommitted';
|
|
1854
1855
|
title: string;
|
|
1856
|
+
updatedAt: number | null;
|
|
1855
1857
|
relatedChanges: string[];
|
|
1856
1858
|
diff: DashboardGitDiffStats;
|
|
1857
1859
|
}
|
|
@@ -2555,19 +2557,19 @@ declare const PtyCreateMessageSchema: z.ZodObject<{
|
|
|
2555
2557
|
}, "strip", z.ZodTypeAny, {
|
|
2556
2558
|
type: "create";
|
|
2557
2559
|
requestId: string;
|
|
2558
|
-
command?: string | undefined;
|
|
2559
|
-
args?: string[] | undefined;
|
|
2560
2560
|
cols?: number | undefined;
|
|
2561
2561
|
rows?: number | undefined;
|
|
2562
|
+
command?: string | undefined;
|
|
2563
|
+
args?: string[] | undefined;
|
|
2562
2564
|
closeTip?: string | undefined;
|
|
2563
2565
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2564
2566
|
}, {
|
|
2565
2567
|
type: "create";
|
|
2566
2568
|
requestId: string;
|
|
2567
|
-
command?: string | undefined;
|
|
2568
|
-
args?: string[] | undefined;
|
|
2569
2569
|
cols?: number | undefined;
|
|
2570
2570
|
rows?: number | undefined;
|
|
2571
|
+
command?: string | undefined;
|
|
2572
|
+
args?: string[] | undefined;
|
|
2571
2573
|
closeTip?: string | undefined;
|
|
2572
2574
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2573
2575
|
}>;
|
|
@@ -2645,19 +2647,19 @@ declare const PtyClientMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
2645
2647
|
}, "strip", z.ZodTypeAny, {
|
|
2646
2648
|
type: "create";
|
|
2647
2649
|
requestId: string;
|
|
2648
|
-
command?: string | undefined;
|
|
2649
|
-
args?: string[] | undefined;
|
|
2650
2650
|
cols?: number | undefined;
|
|
2651
2651
|
rows?: number | undefined;
|
|
2652
|
+
command?: string | undefined;
|
|
2653
|
+
args?: string[] | undefined;
|
|
2652
2654
|
closeTip?: string | undefined;
|
|
2653
2655
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2654
2656
|
}, {
|
|
2655
2657
|
type: "create";
|
|
2656
2658
|
requestId: string;
|
|
2657
|
-
command?: string | undefined;
|
|
2658
|
-
args?: string[] | undefined;
|
|
2659
2659
|
cols?: number | undefined;
|
|
2660
2660
|
rows?: number | undefined;
|
|
2661
|
+
command?: string | undefined;
|
|
2662
|
+
args?: string[] | undefined;
|
|
2661
2663
|
closeTip?: string | undefined;
|
|
2662
2664
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2663
2665
|
}>, z.ZodObject<{
|