exod 1.0.0-alpha.12 → 1.0.0-alpha.14
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/canvas-host/a2ui.js +7 -0
- package/dist/canvas-host/server.js +6 -0
- package/dist/terminal/theme.js +21 -12
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Stub for canvas-host a2ui - not needed for Telegram bot
|
|
2
|
+
export const CANVAS_HOST_PATH = '/_canvas';
|
|
3
|
+
|
|
4
|
+
export async function handleA2uiHttpRequest(_req, _res) {
|
|
5
|
+
// No-op - canvas host not available
|
|
6
|
+
return new Response('Canvas host not available', { status: 404 });
|
|
7
|
+
}
|
package/dist/terminal/theme.js
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
// Stub for terminal theme - Terminal UI not needed
|
|
2
2
|
export const theme = {
|
|
3
|
-
primary:
|
|
4
|
-
secondary:
|
|
5
|
-
success:
|
|
6
|
-
error:
|
|
7
|
-
warning:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
3
|
+
primary: (t) => t,
|
|
4
|
+
secondary: (t) => t,
|
|
5
|
+
success: (t) => t,
|
|
6
|
+
error: (t) => t,
|
|
7
|
+
warning: (t) => t,
|
|
8
|
+
warn: (t) => t,
|
|
9
|
+
info: (t) => t,
|
|
10
|
+
muted: (t) => t,
|
|
11
|
+
heading: (t) => t,
|
|
12
|
+
accent: (t) => t,
|
|
13
|
+
accentDim: (t) => t,
|
|
14
|
+
accentBright: (t) => t,
|
|
15
|
+
command: (t) => t,
|
|
16
|
+
dim: (t) => t,
|
|
17
|
+
bold: (t) => t,
|
|
18
|
+
italic: (t) => t,
|
|
19
|
+
underline: (t) => t,
|
|
20
|
+
link: (t) => t,
|
|
21
|
+
code: (t) => t,
|
|
22
|
+
highlight: (t) => t,
|
|
14
23
|
};
|
|
15
|
-
export function colorize(
|
|
24
|
+
export function colorize(_rich, _color, text) {
|
|
16
25
|
return text;
|
|
17
26
|
}
|
|
18
27
|
export function isRich() {
|