refactor(backend): rename projectSignals to projectEvents

This commit is contained in:
-Puter
2026-07-23 16:03:40 +05:30
parent c6f3cd330a
commit 535e9dde62
7 changed files with 230 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ import type * as daemons from "../daemons.js";
import type * as fluePersistence from "../fluePersistence.js";
import type * as healthCheck from "../healthCheck.js";
import type * as http from "../http.js";
import type * as organizations from "../organizations.js";
import type * as privateData from "../privateData.js";
import type * as projectArtifacts from "../projectArtifacts.js";
import type * as projectIssues from "../projectIssues.js";
@@ -41,6 +42,7 @@ declare const fullApi: ApiFromModules<{
fluePersistence: typeof fluePersistence;
healthCheck: typeof healthCheck;
http: typeof http;
organizations: typeof organizations;
privateData: typeof privateData;
projectArtifacts: typeof projectArtifacts;
projectIssues: typeof projectIssues;