30 lines
532 B
TypeScript
30 lines
532 B
TypeScript
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";
|