exod 1.0.0-alpha.13 → 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.
@@ -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
+ }
@@ -0,0 +1,6 @@
1
+ // Stub for canvas-host server - not needed for Telegram bot
2
+ export function createCanvasHostHandler(_options) {
3
+ return async (_req, _res) => {
4
+ return new Response('Canvas host not available', { status: 404 });
5
+ };
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exod",
3
- "version": "1.0.0-alpha.13",
3
+ "version": "1.0.0-alpha.14",
4
4
  "description": "EXOD.ai - AI Marketing Automation Agent for Facebook & Instagram Ads",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",