v2.0.8 #156

Merged
PxlLoewe merged 24 commits from staging into release 2026-01-31 22:08:50 +00:00
2 changed files with 25 additions and 3 deletions
Showing only changes of commit 580dc32ad0 - Show all commits

View File

View File

@@ -1,7 +1,29 @@
export { prisma } from "./prisma/client"; // exports instance of prisma
export * from "./generated/client"; // exports generated types from prisma
export { prisma } from "./prisma/client"; // Prisma instance
// ✅ NUR TYPES aus dem Prisma Client
export type * from "./generated/client";
export {
LOG_TYPE,
BOOKING_TYPE,
BADGES,
Country,
BosUse,
EVENT_TYPE,
HeliportType,
GlobalColor,
PERMISSION,
MissionState,
PenaltyType,
missionType,
HpgState,
HpgValidationState,
KEYWORD_CATEGORY,
} from "./generated/client"; // Prisma helpers
// Zod
import * as zodTypes from "./generated/zod";
export const zod = zodTypes;
// JSON helpers
export * from "./prisma/json";