bun run build

This commit is contained in:
biersoeckli
2024-12-01 14:00:09 +00:00
parent eb7a066c4c
commit 836a1cb4b8
10 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteUser, RelatedUserModel } from "./index"
export const AccountModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteProject, RelatedProjectModel, CompleteAppDomain, RelatedAppDomainModel, CompleteAppVolume, RelatedAppVolumeModel } from "./index"
export const AppModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteApp, RelatedAppModel } from "./index"
export const AppDomainModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteApp, RelatedAppModel } from "./index"
export const AppVolumeModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteUser, RelatedUserModel } from "./index"
export const AuthenticatorModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
export const ParameterModel = z.object({
name: z.string(),

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteApp, RelatedAppModel } from "./index"
export const ProjectModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteUser, RelatedUserModel } from "./index"
export const SessionModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
import { CompleteAccount, RelatedAccountModel, CompleteSession, RelatedSessionModel, CompleteAuthenticator, RelatedAuthenticatorModel } from "./index"
export const UserModel = z.object({

View File

@@ -1,5 +1,5 @@
import * as z from "zod"
import * as imports from "../../../../prisma/null"
export const VerificationTokenModel = z.object({
identifier: z.string(),