@openspecui/core 3.2.0 → 3.2.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/index.d.mts +14 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1456,9 +1456,9 @@ type GitConfig = z.infer<typeof GitConfigSchema>;
|
|
|
1456
1456
|
declare const OpsxConfigSchema: z.ZodObject<{
|
|
1457
1457
|
agentInvocationMode: z.ZodDefault<z.ZodEnum<["compose", "command"]>>;
|
|
1458
1458
|
}, "strip", z.ZodTypeAny, {
|
|
1459
|
-
agentInvocationMode: "
|
|
1459
|
+
agentInvocationMode: "compose" | "command";
|
|
1460
1460
|
}, {
|
|
1461
|
-
agentInvocationMode?: "
|
|
1461
|
+
agentInvocationMode?: "compose" | "command" | undefined;
|
|
1462
1462
|
}>;
|
|
1463
1463
|
type OpsxConfig = z.infer<typeof OpsxConfigSchema>;
|
|
1464
1464
|
/**
|
|
@@ -1496,9 +1496,9 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1496
1496
|
opsx: z.ZodDefault<z.ZodObject<{
|
|
1497
1497
|
agentInvocationMode: z.ZodDefault<z.ZodEnum<["compose", "command"]>>;
|
|
1498
1498
|
}, "strip", z.ZodTypeAny, {
|
|
1499
|
-
agentInvocationMode: "
|
|
1499
|
+
agentInvocationMode: "compose" | "command";
|
|
1500
1500
|
}, {
|
|
1501
|
-
agentInvocationMode?: "
|
|
1501
|
+
agentInvocationMode?: "compose" | "command" | undefined;
|
|
1502
1502
|
}>>;
|
|
1503
1503
|
/** 终端配置 */
|
|
1504
1504
|
terminal: z.ZodDefault<z.ZodObject<{
|
|
@@ -1559,7 +1559,7 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1559
1559
|
};
|
|
1560
1560
|
appBaseUrl: string;
|
|
1561
1561
|
opsx: {
|
|
1562
|
-
agentInvocationMode: "
|
|
1562
|
+
agentInvocationMode: "compose" | "command";
|
|
1563
1563
|
};
|
|
1564
1564
|
terminal: {
|
|
1565
1565
|
fontSize: number;
|
|
@@ -1589,7 +1589,7 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1589
1589
|
} | undefined;
|
|
1590
1590
|
appBaseUrl?: string | undefined;
|
|
1591
1591
|
opsx?: {
|
|
1592
|
-
agentInvocationMode?: "
|
|
1592
|
+
agentInvocationMode?: "compose" | "command" | undefined;
|
|
1593
1593
|
} | undefined;
|
|
1594
1594
|
terminal?: {
|
|
1595
1595
|
fontSize?: number | undefined;
|
|
@@ -2753,19 +2753,19 @@ declare const PtyCreateMessageSchema: z.ZodObject<{
|
|
|
2753
2753
|
}, "strip", z.ZodTypeAny, {
|
|
2754
2754
|
type: "create";
|
|
2755
2755
|
requestId: string;
|
|
2756
|
-
cols?: number | undefined;
|
|
2757
|
-
rows?: number | undefined;
|
|
2758
2756
|
command?: string | undefined;
|
|
2759
2757
|
args?: string[] | undefined;
|
|
2758
|
+
cols?: number | undefined;
|
|
2759
|
+
rows?: number | undefined;
|
|
2760
2760
|
closeTip?: string | undefined;
|
|
2761
2761
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2762
2762
|
}, {
|
|
2763
2763
|
type: "create";
|
|
2764
2764
|
requestId: string;
|
|
2765
|
-
cols?: number | undefined;
|
|
2766
|
-
rows?: number | undefined;
|
|
2767
2765
|
command?: string | undefined;
|
|
2768
2766
|
args?: string[] | undefined;
|
|
2767
|
+
cols?: number | undefined;
|
|
2768
|
+
rows?: number | undefined;
|
|
2769
2769
|
closeTip?: string | undefined;
|
|
2770
2770
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2771
2771
|
}>;
|
|
@@ -2843,19 +2843,19 @@ declare const PtyClientMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
2843
2843
|
}, "strip", z.ZodTypeAny, {
|
|
2844
2844
|
type: "create";
|
|
2845
2845
|
requestId: string;
|
|
2846
|
-
cols?: number | undefined;
|
|
2847
|
-
rows?: number | undefined;
|
|
2848
2846
|
command?: string | undefined;
|
|
2849
2847
|
args?: string[] | undefined;
|
|
2848
|
+
cols?: number | undefined;
|
|
2849
|
+
rows?: number | undefined;
|
|
2850
2850
|
closeTip?: string | undefined;
|
|
2851
2851
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2852
2852
|
}, {
|
|
2853
2853
|
type: "create";
|
|
2854
2854
|
requestId: string;
|
|
2855
|
-
cols?: number | undefined;
|
|
2856
|
-
rows?: number | undefined;
|
|
2857
2855
|
command?: string | undefined;
|
|
2858
2856
|
args?: string[] | undefined;
|
|
2857
|
+
cols?: number | undefined;
|
|
2858
|
+
rows?: number | undefined;
|
|
2859
2859
|
closeTip?: string | undefined;
|
|
2860
2860
|
closeCallbackUrl?: string | Record<string, string> | undefined;
|
|
2861
2861
|
}>, z.ZodObject<{
|