Release 2025-05-19

This commit is contained in:
pluja
2025-05-19 10:10:06 +00:00
commit 046c4559e5
267 changed files with 49432 additions and 0 deletions

44
web/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,44 @@
import type { ErrorBanners } from './lib/errorBanners'
import type { KarmaUnlocks } from './lib/karmaUnlocks'
/* eslint-disable @typescript-eslint/consistent-type-definitions */
import type { Prisma } from '@prisma/client'
import type * as htmx from 'htmx.org'
declare global {
namespace App {
interface Locals {
user: (Prisma.UserGetPayload<true> & { karmaUnlocks: KarmaUnlocks }) | null
actualUser: (Prisma.UserGetPayload<true> & { karmaUnlocks: KarmaUnlocks }) | null
banners: ErrorBanners
makeId: <T extends string>(prefix: T) => `${T}-${number}-${string}`
}
}
interface Window {
htmx?: typeof htmx
}
namespace PrismaJson {
type TosReview = {
kycLevel: 0 | 1 | 2 | 3 | 4
/** Less than 200 characters */
summary: MarkdownString
contentHash: string
complexity: 'high' | 'low' | 'medium'
highlights: {
/** Very short */
title: string
/** Short */
content: MarkdownString
rating: 'negative' | 'neutral' | 'positive'
}[]
}
type UserSentiment = {
summary: MarkdownString
sentiment: 'negative' | 'neutral' | 'positive'
whatUsersLike: string[]
whatUsersDislike: string[]
}
}
}