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,48 @@
import * as CheckboxPrimitive from "@rn-primitives/checkbox";
import { cn } from "@turbostarter/ui";
import { Icons } from "./icons";
const DEFAULT_HIT_SLOP = 24;
function Checkbox({
className,
checkedClassName,
indicatorClassName,
iconClassName,
...props
}: CheckboxPrimitive.RootProps &
React.RefAttributes<CheckboxPrimitive.RootRef> & {
checkedClassName?: string;
indicatorClassName?: string;
iconClassName?: string;
}) {
return (
<CheckboxPrimitive.Root
className={cn(
"border-input dark:bg-input/30 size-4 shrink-0 overflow-hidden rounded-[4px] border shadow-sm shadow-black/5",
props.checked && cn("border-primary", checkedClassName),
props.disabled && "opacity-50",
className,
)}
hitSlop={DEFAULT_HIT_SLOP}
{...props}
>
<CheckboxPrimitive.Indicator
className={cn(
"bg-primary h-full w-full items-center justify-center",
indicatorClassName,
)}
>
<Icons.Check
size={12}
strokeWidth={3.5}
className={cn("text-primary-foreground", iconClassName)}
/>
</CheckboxPrimitive.Indicator>
</CheckboxPrimitive.Root>
);
}
export { Checkbox };