Integrate mobile chat workspace and OpenRouter agent flow

This commit is contained in:
sai karthik
2026-07-25 17:49:11 +05:30
parent a17aa5c283
commit 48200a11df
24 changed files with 1142 additions and 211 deletions

View File

@@ -26,8 +26,10 @@ import type * as projectIssues from "../projectIssues.js";
import type * as projectStore from "../projectStore.js";
import type * as projects from "../projects.js";
import type * as publicGit from "../publicGit.js";
import type * as signalRouting from "../signalRouting.js";
import type * as signals from "../signals.js";
import type * as todos from "../todos.js";
import type * as workflows from "../workflows.js";
import type {
ApiFromModules,
@@ -54,8 +56,10 @@ declare const fullApi: ApiFromModules<{
projectStore: typeof projectStore;
projects: typeof projects;
publicGit: typeof publicGit;
signalRouting: typeof signalRouting;
signals: typeof signals;
todos: typeof todos;
workflows: typeof workflows;
}>;
/**

View File

@@ -26,6 +26,8 @@ import type { DataModel } from "./dataModel.js";
*/
type Env = {
readonly FLUE_DB_TOKEN: string;
readonly GITEA_TOKEN: string | undefined;
readonly GITEA_URL: string | undefined;
readonly NATIVE_APP_URL: string | undefined;
readonly SITE_URL: string;
};