feat(db): mesh data model — meshes, members, invites, audit log

- pgSchema "mesh" with 4 tables isolating the peer mesh domain
- Enums: visibility, transport, tier, role
- audit_log is metadata-only (E2E encryption enforced at broker/client)
- Cascade on mesh delete, soft-delete via archivedAt/revokedAt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-04-04 21:19:32 +01:00
commit d3163a5bff
1384 changed files with 314925 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
import fs from "fs/promises";
import path from "path";
import { glob } from "glob";
async function collectCoverageFiles() {
try {
// Define the patterns to search
const patterns = ["../../apps/*", "../../packages/*"];
// Define the destination directory (you can change this as needed)
const destinationDir = path.join(process.cwd(), "coverage/raw");
// Create the destination directory if it doesn't exist
await fs.mkdir(destinationDir, { recursive: true });
// Arrays to collect all directories and directories with coverage.json
const allDirectories = [];
const directoriesWithCoverage = [];
// Process each pattern
for (const pattern of patterns) {
// Find all paths matching the pattern
const matches = await glob(pattern);
// Filter to only include directories
for (const match of matches) {
const stats = await fs.stat(match);
if (stats.isDirectory()) {
allDirectories.push(match);
const coverageFilePath = path.join(match, "coverage.json");
// Check if coverage.json exists in this directory
try {
await fs.access(coverageFilePath);
// File exists, add to list of directories with coverage
directoriesWithCoverage.push(match);
// Copy it to the destination with a unique name
const directoryName = path.basename(match);
const destinationFile = path.join(
destinationDir,
`${directoryName}.json`
);
await fs.copyFile(coverageFilePath, destinationFile);
} catch (err) {
// File doesn't exist in this directory, skip
}
}
}
}
// Create clean patterns for display (without any "../" prefixes)
const replaceDotPatterns = (str: string) => str.replace(/\.\.\//g, "");
if (directoriesWithCoverage.length > 0) {
console.log(
`Found coverage.json in: ${directoriesWithCoverage
.map(replaceDotPatterns)
.join(", ")}`
);
}
console.log(`Coverage collected into: ${path.join(process.cwd())}`);
} catch (error) {
console.error("Error collecting coverage files:", error);
}
}
// Run the function
collectCoverageFiles();