@getpaseo/cli 0.5.0-beta.3 → 0.5.0-beta.4
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.
|
@@ -153,6 +153,24 @@ declare module "@getpaseo/plugin" {
|
|
|
153
153
|
surface: string;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
export interface PluginThemeColors {
|
|
157
|
+
background: string;
|
|
158
|
+
foreground: string;
|
|
159
|
+
raised: string;
|
|
160
|
+
control: string;
|
|
161
|
+
border: string;
|
|
162
|
+
accent?: string;
|
|
163
|
+
mutedForeground: string;
|
|
164
|
+
ring: string;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export interface PluginThemeContribution {
|
|
168
|
+
id: string;
|
|
169
|
+
name: string;
|
|
170
|
+
appearance: "light" | "dark";
|
|
171
|
+
colors: PluginThemeColors;
|
|
172
|
+
}
|
|
173
|
+
|
|
156
174
|
export interface PluginSurfaceContribution {
|
|
157
175
|
id: string;
|
|
158
176
|
Component: ComponentType<PluginSurfaceProps>;
|
|
@@ -202,6 +220,7 @@ declare module "@getpaseo/plugin" {
|
|
|
202
220
|
addWorkspacePanel(contribution: PluginWorkspacePanelContribution): void;
|
|
203
221
|
addCommandCenterItem(contribution: PluginCommandCenterItemContribution): void;
|
|
204
222
|
addAttachmentSource(contribution: PluginAttachmentSourceContribution): void;
|
|
223
|
+
addTheme(contribution: PluginThemeContribution): void;
|
|
205
224
|
}
|
|
206
225
|
|
|
207
226
|
export type PluginCleanup = () => void | Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpaseo/cli",
|
|
3
|
-
"version": "0.5.0-beta.
|
|
3
|
+
"version": "0.5.0-beta.4",
|
|
4
4
|
"description": "Paseo CLI - control your AI coding agents from the command line",
|
|
5
5
|
"bin": {
|
|
6
6
|
"paseo": "bin/paseo"
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@clack/prompts": "^1.0.0",
|
|
31
|
-
"@getpaseo/client": "0.5.0-beta.
|
|
32
|
-
"@getpaseo/protocol": "0.5.0-beta.
|
|
33
|
-
"@getpaseo/server": "0.5.0-beta.
|
|
31
|
+
"@getpaseo/client": "0.5.0-beta.4",
|
|
32
|
+
"@getpaseo/protocol": "0.5.0-beta.4",
|
|
33
|
+
"@getpaseo/server": "0.5.0-beta.4",
|
|
34
34
|
"chalk": "^5.3.0",
|
|
35
35
|
"commander": "^12.0.0",
|
|
36
36
|
"mime-types": "^2.1.35",
|