@scefira/dfw 1.3.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/guards/BodyValidatorGuard.d.ts +3 -0
- package/dist/cjs/guards/BodyValidatorGuard.d.ts.map +1 -0
- package/dist/cjs/guards/BodyValidatorGuard.js +14 -0
- package/dist/cjs/guards/BodyValidatorGuard.js.map +1 -0
- package/dist/cjs/guards/QueryValidationGuard.d.ts +3 -0
- package/dist/cjs/guards/QueryValidationGuard.d.ts.map +1 -0
- package/dist/cjs/guards/QueryValidationGuard.js +14 -0
- package/dist/cjs/guards/QueryValidationGuard.js.map +1 -0
- package/dist/cjs/guards/UserAuthGuard.d.ts +2 -0
- package/dist/cjs/guards/UserAuthGuard.d.ts.map +1 -0
- package/dist/cjs/guards/UserAuthGuard.js +9 -0
- package/dist/cjs/guards/UserAuthGuard.js.map +1 -0
- package/dist/cjs/guards/index.d.ts +4 -0
- package/dist/cjs/guards/index.d.ts.map +1 -0
- package/dist/cjs/{modules → guards}/index.js +3 -4
- package/dist/cjs/guards/index.js.map +1 -0
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/APIManager.d.ts +3 -3
- package/dist/cjs/lib/APIManager.d.ts.map +1 -1
- package/dist/cjs/lib/APIManager.js +8 -49
- package/dist/cjs/lib/APIManager.js.map +1 -1
- package/dist/cjs/lib/DFWCore.d.ts +39 -20
- package/dist/cjs/lib/DFWCore.d.ts.map +1 -1
- package/dist/cjs/lib/DFWCore.js +39 -23
- package/dist/cjs/lib/DFWCore.js.map +1 -1
- package/dist/cjs/lib/DFWPassportStrategy.d.ts +2 -1
- package/dist/cjs/lib/DFWPassportStrategy.d.ts.map +1 -1
- package/dist/cjs/lib/DFWPassportStrategy.js +5 -4
- package/dist/cjs/lib/DFWPassportStrategy.js.map +1 -1
- package/dist/cjs/lib/DFWRepository.d.ts +16 -0
- package/dist/cjs/lib/DFWRepository.d.ts.map +1 -0
- package/dist/cjs/lib/{DFWModule.js → DFWRepository.js} +13 -16
- package/dist/cjs/lib/DFWRepository.js.map +1 -0
- package/dist/cjs/lib/DFWService.d.ts +10 -10
- package/dist/cjs/lib/DFWService.d.ts.map +1 -1
- package/dist/cjs/lib/DFWService.js +22 -11
- package/dist/cjs/lib/DFWService.js.map +1 -1
- package/dist/cjs/lib/DFWSessionStore.d.ts +1 -1
- package/dist/cjs/lib/DFWSessionStore.d.ts.map +1 -1
- package/dist/cjs/lib/DFWSessionStore.js.map +1 -1
- package/dist/cjs/lib/DFWUtils.d.ts +0 -3
- package/dist/cjs/lib/DFWUtils.d.ts.map +1 -1
- package/dist/cjs/lib/DFWUtils.js +1 -14
- package/dist/cjs/lib/DFWUtils.js.map +1 -1
- package/dist/cjs/lib/index.d.ts +0 -2
- package/dist/cjs/lib/index.d.ts.map +1 -1
- package/dist/cjs/lib/index.js +0 -2
- package/dist/cjs/lib/index.js.map +1 -1
- package/dist/cjs/listeners/index.d.ts +0 -6
- package/dist/cjs/listeners/index.d.ts.map +1 -1
- package/dist/cjs/listeners/index.js +0 -6
- package/dist/cjs/listeners/index.js.map +1 -1
- package/dist/cjs/makers/index.d.ts +5 -0
- package/dist/cjs/makers/index.d.ts.map +1 -0
- package/dist/cjs/makers/index.js +21 -0
- package/dist/cjs/makers/index.js.map +1 -0
- package/dist/cjs/makers/makeGuard.d.ts +4 -0
- package/dist/cjs/makers/makeGuard.d.ts.map +1 -0
- package/dist/cjs/{listeners/DFWLogoutListener.js → makers/makeGuard.js} +13 -18
- package/dist/cjs/makers/makeGuard.js.map +1 -0
- package/dist/cjs/makers/makeListener.d.ts +6 -0
- package/dist/cjs/makers/makeListener.d.ts.map +1 -0
- package/dist/cjs/{lib/APIListener.js → makers/makeListener.js} +4 -4
- package/dist/cjs/makers/makeListener.js.map +1 -0
- package/dist/cjs/makers/makeRepository.d.ts +6 -0
- package/dist/cjs/makers/makeRepository.d.ts.map +1 -0
- package/dist/cjs/makers/makeRepository.js +20 -0
- package/dist/cjs/makers/makeRepository.js.map +1 -0
- package/dist/cjs/makers/makeService.d.ts +6 -0
- package/dist/cjs/makers/makeService.d.ts.map +1 -0
- package/dist/cjs/makers/makeService.js +22 -0
- package/dist/cjs/makers/makeService.js.map +1 -0
- package/dist/cjs/prisma/browser.d.ts +30 -0
- package/dist/cjs/prisma/browser.d.ts.map +1 -0
- package/dist/cjs/prisma/browser.js +57 -0
- package/dist/cjs/prisma/browser.js.map +1 -0
- package/dist/cjs/prisma/client.d.ts +47 -0
- package/dist/cjs/prisma/client.d.ts.map +1 -0
- package/dist/cjs/prisma/client.js +72 -0
- package/dist/cjs/prisma/client.js.map +1 -0
- package/dist/cjs/prisma/commonInputTypes.d.ts +422 -0
- package/dist/cjs/prisma/commonInputTypes.d.ts.map +1 -0
- package/dist/cjs/prisma/commonInputTypes.js +12 -0
- package/dist/cjs/prisma/commonInputTypes.js.map +1 -0
- package/dist/cjs/prisma/enums.d.ts +6 -0
- package/dist/cjs/prisma/enums.d.ts.map +1 -0
- package/dist/cjs/prisma/enums.js +17 -0
- package/dist/cjs/prisma/enums.js.map +1 -0
- package/dist/cjs/prisma/internal/class.d.ts +171 -0
- package/dist/cjs/prisma/internal/class.d.ts.map +1 -0
- package/dist/cjs/prisma/internal/class.js +88 -0
- package/dist/cjs/prisma/internal/class.js.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespace.d.ts +913 -0
- package/dist/cjs/prisma/internal/prismaNamespace.d.ts.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespace.js +190 -0
- package/dist/cjs/prisma/internal/prismaNamespace.js.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.d.ts +121 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.d.ts.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.js +161 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_access.d.ts +1169 -0
- package/dist/cjs/prisma/models/dfw_access.d.ts.map +1 -0
- package/dist/cjs/{types/DFWService.js → prisma/models/dfw_access.js} +1 -1
- package/dist/cjs/prisma/models/dfw_access.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_credential.d.ts +1300 -0
- package/dist/cjs/prisma/models/dfw_credential.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_credential.js +3 -0
- package/dist/cjs/prisma/models/dfw_credential.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_file.d.ts +1933 -0
- package/dist/cjs/prisma/models/dfw_file.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_file.js +3 -0
- package/dist/cjs/prisma/models/dfw_file.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_session.d.ts +1263 -0
- package/dist/cjs/prisma/models/dfw_session.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_session.js +3 -0
- package/dist/cjs/prisma/models/dfw_session.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_user.d.ts +1518 -0
- package/dist/cjs/prisma/models/dfw_user.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_user.js +3 -0
- package/dist/cjs/prisma/models/dfw_user.js.map +1 -0
- package/dist/cjs/prisma/models.d.ts +7 -0
- package/dist/cjs/prisma/models.d.ts.map +1 -0
- package/dist/cjs/{types/DFWModule.js → prisma/models.js} +1 -1
- package/dist/cjs/prisma/models.js.map +1 -0
- package/dist/cjs/repositories/DFWSecurityRepository.d.ts +36 -0
- package/dist/cjs/repositories/DFWSecurityRepository.d.ts.map +1 -0
- package/dist/cjs/{modules/DFWSecurityModule.js → repositories/DFWSecurityRepository.js} +41 -31
- package/dist/cjs/repositories/DFWSecurityRepository.js.map +1 -0
- package/dist/cjs/repositories/DFWSessionRepository.d.ts +13 -0
- package/dist/cjs/repositories/DFWSessionRepository.d.ts.map +1 -0
- package/dist/cjs/{modules/DFWSessionModule.js → repositories/DFWSessionRepository.js} +16 -10
- package/dist/cjs/repositories/DFWSessionRepository.js.map +1 -0
- package/dist/cjs/repositories/DFWUserRepository.d.ts +25 -0
- package/dist/cjs/repositories/DFWUserRepository.d.ts.map +1 -0
- package/dist/cjs/{modules/DFWUserModule.js → repositories/DFWUserRepository.js} +18 -12
- package/dist/cjs/repositories/DFWUserRepository.js.map +1 -0
- package/dist/cjs/repositories/index.d.ts +4 -0
- package/dist/cjs/repositories/index.d.ts.map +1 -0
- package/dist/cjs/repositories/index.js +20 -0
- package/dist/cjs/repositories/index.js.map +1 -0
- package/dist/cjs/test.d.ts +1 -26
- package/dist/cjs/test.d.ts.map +1 -1
- package/dist/cjs/test.dfw.d.ts +3 -0
- package/dist/cjs/test.dfw.d.ts.map +1 -0
- package/dist/cjs/test.dfw.js +15 -0
- package/dist/cjs/test.dfw.js.map +1 -0
- package/dist/cjs/test.guard.d.ts +2 -0
- package/dist/cjs/test.guard.d.ts.map +1 -0
- package/dist/cjs/test.guard.js +10 -0
- package/dist/cjs/test.guard.js.map +1 -0
- package/dist/cjs/test.js +103 -72
- package/dist/cjs/test.js.map +1 -1
- package/dist/cjs/test.repository.d.ts +12 -0
- package/dist/cjs/test.repository.d.ts.map +1 -0
- package/dist/cjs/test.repository.js +21 -0
- package/dist/cjs/test.repository.js.map +1 -0
- package/dist/cjs/test.service.d.ts +26 -0
- package/dist/cjs/test.service.d.ts.map +1 -0
- package/dist/cjs/test.service.js +29 -0
- package/dist/cjs/test.service.js.map +1 -0
- package/dist/cjs/types/APIListener.d.ts +7 -25
- package/dist/cjs/types/APIListener.d.ts.map +1 -1
- package/dist/cjs/types/DFWConfig.d.ts +4 -13
- package/dist/cjs/types/DFWConfig.d.ts.map +1 -1
- package/dist/cjs/types/DFWDatabase.d.ts +2 -2
- package/dist/cjs/types/DFWDatabase.d.ts.map +1 -1
- package/dist/cjs/types/DFWRequest.d.ts +6 -10
- package/dist/cjs/types/DFWRequest.d.ts.map +1 -1
- package/dist/cjs/types/index.d.ts +0 -1
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/esm/guards/BodyValidatorGuard.d.ts +3 -0
- package/dist/esm/guards/BodyValidatorGuard.d.ts.map +1 -0
- package/dist/esm/guards/BodyValidatorGuard.js +10 -0
- package/dist/esm/guards/BodyValidatorGuard.js.map +1 -0
- package/dist/esm/guards/QueryValidationGuard.d.ts +3 -0
- package/dist/esm/guards/QueryValidationGuard.d.ts.map +1 -0
- package/dist/esm/guards/QueryValidationGuard.js +10 -0
- package/dist/esm/guards/QueryValidationGuard.js.map +1 -0
- package/dist/esm/guards/UserAuthGuard.d.ts +2 -0
- package/dist/esm/guards/UserAuthGuard.d.ts.map +1 -0
- package/dist/esm/guards/UserAuthGuard.js +6 -0
- package/dist/esm/guards/UserAuthGuard.js.map +1 -0
- package/dist/esm/guards/index.d.ts +4 -0
- package/dist/esm/guards/index.d.ts.map +1 -0
- package/dist/esm/guards/index.js +4 -0
- package/dist/esm/guards/index.js.map +1 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/lib/APIManager.d.ts +3 -3
- package/dist/esm/lib/APIManager.d.ts.map +1 -1
- package/dist/esm/lib/APIManager.js +7 -42
- package/dist/esm/lib/APIManager.js.map +1 -1
- package/dist/esm/lib/DFWCore.d.ts +39 -20
- package/dist/esm/lib/DFWCore.d.ts.map +1 -1
- package/dist/esm/lib/DFWCore.js +37 -22
- package/dist/esm/lib/DFWCore.js.map +1 -1
- package/dist/esm/lib/DFWPassportStrategy.d.ts +2 -1
- package/dist/esm/lib/DFWPassportStrategy.d.ts.map +1 -1
- package/dist/esm/lib/DFWPassportStrategy.js +4 -4
- package/dist/esm/lib/DFWPassportStrategy.js.map +1 -1
- package/dist/esm/lib/DFWRepository.d.ts +16 -0
- package/dist/esm/lib/DFWRepository.d.ts.map +1 -0
- package/dist/esm/lib/{DFWModule.js → DFWRepository.js} +11 -13
- package/dist/esm/lib/DFWRepository.js.map +1 -0
- package/dist/esm/lib/DFWService.d.ts +10 -10
- package/dist/esm/lib/DFWService.d.ts.map +1 -1
- package/dist/esm/lib/DFWService.js +22 -10
- package/dist/esm/lib/DFWService.js.map +1 -1
- package/dist/esm/lib/DFWSessionStore.d.ts +1 -1
- package/dist/esm/lib/DFWSessionStore.d.ts.map +1 -1
- package/dist/esm/lib/DFWSessionStore.js.map +1 -1
- package/dist/esm/lib/DFWUtils.d.ts +0 -3
- package/dist/esm/lib/DFWUtils.d.ts.map +1 -1
- package/dist/esm/lib/DFWUtils.js +1 -14
- package/dist/esm/lib/DFWUtils.js.map +1 -1
- package/dist/esm/lib/index.d.ts +0 -2
- package/dist/esm/lib/index.d.ts.map +1 -1
- package/dist/esm/lib/index.js +0 -2
- package/dist/esm/lib/index.js.map +1 -1
- package/dist/esm/listeners/index.d.ts +0 -6
- package/dist/esm/listeners/index.d.ts.map +1 -1
- package/dist/esm/listeners/index.js +0 -6
- package/dist/esm/listeners/index.js.map +1 -1
- package/dist/esm/makers/index.d.ts +5 -0
- package/dist/esm/makers/index.d.ts.map +1 -0
- package/dist/esm/makers/index.js +5 -0
- package/dist/esm/makers/index.js.map +1 -0
- package/dist/esm/makers/makeGuard.d.ts +4 -0
- package/dist/esm/makers/makeGuard.d.ts.map +1 -0
- package/dist/esm/makers/makeGuard.js +12 -0
- package/dist/esm/makers/makeGuard.js.map +1 -0
- package/dist/esm/makers/makeListener.d.ts +6 -0
- package/dist/esm/makers/makeListener.d.ts.map +1 -0
- package/dist/esm/{lib/APIListener.js → makers/makeListener.js} +2 -2
- package/dist/esm/makers/makeListener.js.map +1 -0
- package/dist/esm/makers/makeRepository.d.ts +6 -0
- package/dist/esm/makers/makeRepository.d.ts.map +1 -0
- package/dist/esm/makers/makeRepository.js +17 -0
- package/dist/esm/makers/makeRepository.js.map +1 -0
- package/dist/esm/makers/makeService.d.ts +6 -0
- package/dist/esm/makers/makeService.d.ts.map +1 -0
- package/dist/esm/makers/makeService.js +19 -0
- package/dist/esm/makers/makeService.js.map +1 -0
- package/dist/esm/package.json +3 -1
- package/dist/esm/prisma/browser.d.ts +30 -0
- package/dist/esm/prisma/browser.d.ts.map +1 -0
- package/dist/esm/prisma/browser.js +18 -0
- package/dist/esm/prisma/browser.js.map +1 -0
- package/dist/esm/prisma/client.d.ts +47 -0
- package/dist/esm/prisma/client.d.ts.map +1 -0
- package/dist/esm/prisma/client.js +36 -0
- package/dist/esm/prisma/client.js.map +1 -0
- package/dist/esm/prisma/commonInputTypes.d.ts +422 -0
- package/dist/esm/prisma/commonInputTypes.d.ts.map +1 -0
- package/dist/esm/prisma/commonInputTypes.js +11 -0
- package/dist/esm/prisma/commonInputTypes.js.map +1 -0
- package/dist/esm/prisma/enums.d.ts +6 -0
- package/dist/esm/prisma/enums.d.ts.map +1 -0
- package/dist/esm/prisma/enums.js +14 -0
- package/dist/esm/prisma/enums.js.map +1 -0
- package/dist/esm/prisma/internal/class.d.ts +171 -0
- package/dist/esm/prisma/internal/class.d.ts.map +1 -0
- package/dist/esm/prisma/internal/class.js +41 -0
- package/dist/esm/prisma/internal/class.js.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespace.d.ts +913 -0
- package/dist/esm/prisma/internal/prismaNamespace.d.ts.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespace.js +155 -0
- package/dist/esm/prisma/internal/prismaNamespace.js.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.d.ts +121 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.d.ts.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.js +125 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/esm/prisma/models/dfw_access.d.ts +1169 -0
- package/dist/esm/prisma/models/dfw_access.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_access.js +2 -0
- package/dist/esm/prisma/models/dfw_access.js.map +1 -0
- package/dist/esm/prisma/models/dfw_credential.d.ts +1300 -0
- package/dist/esm/prisma/models/dfw_credential.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_credential.js +2 -0
- package/dist/esm/prisma/models/dfw_credential.js.map +1 -0
- package/dist/esm/prisma/models/dfw_file.d.ts +1933 -0
- package/dist/esm/prisma/models/dfw_file.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_file.js +2 -0
- package/dist/esm/prisma/models/dfw_file.js.map +1 -0
- package/dist/esm/prisma/models/dfw_session.d.ts +1263 -0
- package/dist/esm/prisma/models/dfw_session.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_session.js +2 -0
- package/dist/esm/prisma/models/dfw_session.js.map +1 -0
- package/dist/esm/prisma/models/dfw_user.d.ts +1518 -0
- package/dist/esm/prisma/models/dfw_user.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_user.js +2 -0
- package/dist/esm/prisma/models/dfw_user.js.map +1 -0
- package/dist/esm/prisma/models.d.ts +7 -0
- package/dist/esm/prisma/models.d.ts.map +1 -0
- package/dist/esm/prisma/models.js +2 -0
- package/dist/esm/prisma/models.js.map +1 -0
- package/dist/esm/repositories/DFWSecurityRepository.d.ts +36 -0
- package/dist/esm/repositories/DFWSecurityRepository.d.ts.map +1 -0
- package/dist/esm/repositories/DFWSecurityRepository.js +101 -0
- package/dist/esm/repositories/DFWSecurityRepository.js.map +1 -0
- package/dist/esm/repositories/DFWSessionRepository.d.ts +13 -0
- package/dist/esm/repositories/DFWSessionRepository.d.ts.map +1 -0
- package/dist/esm/repositories/DFWSessionRepository.js +44 -0
- package/dist/esm/repositories/DFWSessionRepository.js.map +1 -0
- package/dist/esm/repositories/DFWUserRepository.d.ts +25 -0
- package/dist/esm/repositories/DFWUserRepository.d.ts.map +1 -0
- package/dist/esm/repositories/DFWUserRepository.js +39 -0
- package/dist/esm/repositories/DFWUserRepository.js.map +1 -0
- package/dist/esm/repositories/index.d.ts +4 -0
- package/dist/esm/repositories/index.d.ts.map +1 -0
- package/dist/esm/repositories/index.js +4 -0
- package/dist/esm/repositories/index.js.map +1 -0
- package/dist/esm/test.d.ts +1 -26
- package/dist/esm/test.d.ts.map +1 -1
- package/dist/esm/test.dfw.d.ts +3 -0
- package/dist/esm/test.dfw.d.ts.map +1 -0
- package/dist/esm/test.dfw.js +12 -0
- package/dist/esm/test.dfw.js.map +1 -0
- package/dist/esm/test.guard.d.ts +2 -0
- package/dist/esm/test.guard.d.ts.map +1 -0
- package/dist/esm/test.guard.js +7 -0
- package/dist/esm/test.guard.js.map +1 -0
- package/dist/esm/test.js +90 -48
- package/dist/esm/test.js.map +1 -1
- package/dist/esm/test.repository.d.ts +12 -0
- package/dist/esm/test.repository.d.ts.map +1 -0
- package/dist/esm/test.repository.js +7 -0
- package/dist/esm/test.repository.js.map +1 -0
- package/dist/esm/test.service.d.ts +26 -0
- package/dist/esm/test.service.d.ts.map +1 -0
- package/dist/esm/test.service.js +15 -0
- package/dist/esm/test.service.js.map +1 -0
- package/dist/esm/types/APIListener.d.ts +7 -25
- package/dist/esm/types/APIListener.d.ts.map +1 -1
- package/dist/esm/types/DFWConfig.d.ts +4 -13
- package/dist/esm/types/DFWConfig.d.ts.map +1 -1
- package/dist/esm/types/DFWDatabase.d.ts +2 -2
- package/dist/esm/types/DFWDatabase.d.ts.map +1 -1
- package/dist/esm/types/DFWRequest.d.ts +6 -10
- package/dist/esm/types/DFWRequest.d.ts.map +1 -1
- package/dist/esm/types/index.d.ts +0 -1
- package/dist/esm/types/index.d.ts.map +1 -1
- package/package.json +20 -13
- package/prisma/schema/schema.prisma +3 -3
- package/dist/cjs/lib/APIListener.d.ts +0 -9
- package/dist/cjs/lib/APIListener.d.ts.map +0 -1
- package/dist/cjs/lib/APIListener.js.map +0 -1
- package/dist/cjs/lib/DFWModule.d.ts +0 -24
- package/dist/cjs/lib/DFWModule.d.ts.map +0 -1
- package/dist/cjs/lib/DFWModule.js.map +0 -1
- package/dist/cjs/listeners/DELETEListener.d.ts +0 -7
- package/dist/cjs/listeners/DELETEListener.d.ts.map +0 -1
- package/dist/cjs/listeners/DELETEListener.js +0 -8
- package/dist/cjs/listeners/DELETEListener.js.map +0 -1
- package/dist/cjs/listeners/DFWAuthListener.d.ts +0 -10
- package/dist/cjs/listeners/DFWAuthListener.d.ts.map +0 -1
- package/dist/cjs/listeners/DFWAuthListener.js +0 -35
- package/dist/cjs/listeners/DFWAuthListener.js.map +0 -1
- package/dist/cjs/listeners/DFWLogoutListener.d.ts +0 -9
- package/dist/cjs/listeners/DFWLogoutListener.d.ts.map +0 -1
- package/dist/cjs/listeners/DFWLogoutListener.js.map +0 -1
- package/dist/cjs/listeners/GETListener.d.ts +0 -7
- package/dist/cjs/listeners/GETListener.d.ts.map +0 -1
- package/dist/cjs/listeners/GETListener.js +0 -8
- package/dist/cjs/listeners/GETListener.js.map +0 -1
- package/dist/cjs/listeners/PATCHListener.d.ts +0 -7
- package/dist/cjs/listeners/PATCHListener.d.ts.map +0 -1
- package/dist/cjs/listeners/PATCHListener.js +0 -8
- package/dist/cjs/listeners/PATCHListener.js.map +0 -1
- package/dist/cjs/listeners/POSTListener.d.ts +0 -7
- package/dist/cjs/listeners/POSTListener.d.ts.map +0 -1
- package/dist/cjs/listeners/POSTListener.js +0 -8
- package/dist/cjs/listeners/POSTListener.js.map +0 -1
- package/dist/cjs/listeners/PUTListener.d.ts +0 -7
- package/dist/cjs/listeners/PUTListener.d.ts.map +0 -1
- package/dist/cjs/listeners/PUTListener.js +0 -8
- package/dist/cjs/listeners/PUTListener.js.map +0 -1
- package/dist/cjs/modules/DFWFileModule.d.ts +0 -51
- package/dist/cjs/modules/DFWFileModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWFileModule.js +0 -53
- package/dist/cjs/modules/DFWFileModule.js.map +0 -1
- package/dist/cjs/modules/DFWSecurityModule.d.ts +0 -34
- package/dist/cjs/modules/DFWSecurityModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWSecurityModule.js.map +0 -1
- package/dist/cjs/modules/DFWSessionModule.d.ts +0 -10
- package/dist/cjs/modules/DFWSessionModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWSessionModule.js.map +0 -1
- package/dist/cjs/modules/DFWUserModule.d.ts +0 -23
- package/dist/cjs/modules/DFWUserModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWUserModule.js.map +0 -1
- package/dist/cjs/modules/index.d.ts +0 -5
- package/dist/cjs/modules/index.d.ts.map +0 -1
- package/dist/cjs/modules/index.js.map +0 -1
- package/dist/cjs/types/DFWModule.d.ts +0 -8
- package/dist/cjs/types/DFWModule.d.ts.map +0 -1
- package/dist/cjs/types/DFWModule.js.map +0 -1
- package/dist/cjs/types/DFWService.d.ts +0 -7
- package/dist/cjs/types/DFWService.d.ts.map +0 -1
- package/dist/cjs/types/DFWService.js.map +0 -1
- package/dist/esm/lib/APIListener.d.ts +0 -9
- package/dist/esm/lib/APIListener.d.ts.map +0 -1
- package/dist/esm/lib/APIListener.js.map +0 -1
- package/dist/esm/lib/DFWModule.d.ts +0 -24
- package/dist/esm/lib/DFWModule.d.ts.map +0 -1
- package/dist/esm/lib/DFWModule.js.map +0 -1
- package/dist/esm/listeners/DELETEListener.d.ts +0 -7
- package/dist/esm/listeners/DELETEListener.d.ts.map +0 -1
- package/dist/esm/listeners/DELETEListener.js +0 -5
- package/dist/esm/listeners/DELETEListener.js.map +0 -1
- package/dist/esm/listeners/DFWAuthListener.d.ts +0 -10
- package/dist/esm/listeners/DFWAuthListener.d.ts.map +0 -1
- package/dist/esm/listeners/DFWAuthListener.js +0 -19
- package/dist/esm/listeners/DFWAuthListener.js.map +0 -1
- package/dist/esm/listeners/DFWLogoutListener.d.ts +0 -9
- package/dist/esm/listeners/DFWLogoutListener.d.ts.map +0 -1
- package/dist/esm/listeners/DFWLogoutListener.js +0 -17
- package/dist/esm/listeners/DFWLogoutListener.js.map +0 -1
- package/dist/esm/listeners/GETListener.d.ts +0 -7
- package/dist/esm/listeners/GETListener.d.ts.map +0 -1
- package/dist/esm/listeners/GETListener.js +0 -5
- package/dist/esm/listeners/GETListener.js.map +0 -1
- package/dist/esm/listeners/PATCHListener.d.ts +0 -7
- package/dist/esm/listeners/PATCHListener.d.ts.map +0 -1
- package/dist/esm/listeners/PATCHListener.js +0 -5
- package/dist/esm/listeners/PATCHListener.js.map +0 -1
- package/dist/esm/listeners/POSTListener.d.ts +0 -7
- package/dist/esm/listeners/POSTListener.d.ts.map +0 -1
- package/dist/esm/listeners/POSTListener.js +0 -5
- package/dist/esm/listeners/POSTListener.js.map +0 -1
- package/dist/esm/listeners/PUTListener.d.ts +0 -7
- package/dist/esm/listeners/PUTListener.d.ts.map +0 -1
- package/dist/esm/listeners/PUTListener.js +0 -5
- package/dist/esm/listeners/PUTListener.js.map +0 -1
- package/dist/esm/modules/DFWFileModule.d.ts +0 -51
- package/dist/esm/modules/DFWFileModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWFileModule.js +0 -44
- package/dist/esm/modules/DFWFileModule.js.map +0 -1
- package/dist/esm/modules/DFWSecurityModule.d.ts +0 -34
- package/dist/esm/modules/DFWSecurityModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWSecurityModule.js +0 -101
- package/dist/esm/modules/DFWSecurityModule.js.map +0 -1
- package/dist/esm/modules/DFWSessionModule.d.ts +0 -10
- package/dist/esm/modules/DFWSessionModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWSessionModule.js +0 -44
- package/dist/esm/modules/DFWSessionModule.js.map +0 -1
- package/dist/esm/modules/DFWUserModule.d.ts +0 -23
- package/dist/esm/modules/DFWUserModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWUserModule.js +0 -39
- package/dist/esm/modules/DFWUserModule.js.map +0 -1
- package/dist/esm/modules/index.d.ts +0 -5
- package/dist/esm/modules/index.d.ts.map +0 -1
- package/dist/esm/modules/index.js +0 -5
- package/dist/esm/modules/index.js.map +0 -1
- package/dist/esm/types/DFWModule.d.ts +0 -8
- package/dist/esm/types/DFWModule.d.ts.map +0 -1
- package/dist/esm/types/DFWModule.js +0 -2
- package/dist/esm/types/DFWModule.js.map +0 -1
- package/dist/esm/types/DFWService.d.ts +0 -7
- package/dist/esm/types/DFWService.d.ts.map +0 -1
- package/dist/esm/types/DFWService.js +0 -2
- package/dist/esm/types/DFWService.js.map +0 -1
|
@@ -0,0 +1,1933 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as $Enums from "../enums";
|
|
3
|
+
import type * as Prisma from "../internal/prismaNamespace";
|
|
4
|
+
/**
|
|
5
|
+
* Model dfw_file
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export type dfw_fileModel = runtime.Types.Result.DefaultSelection<Prisma.$dfw_filePayload>;
|
|
9
|
+
export type AggregateDfw_file = {
|
|
10
|
+
_count: Dfw_fileCountAggregateOutputType | null;
|
|
11
|
+
_avg: Dfw_fileAvgAggregateOutputType | null;
|
|
12
|
+
_sum: Dfw_fileSumAggregateOutputType | null;
|
|
13
|
+
_min: Dfw_fileMinAggregateOutputType | null;
|
|
14
|
+
_max: Dfw_fileMaxAggregateOutputType | null;
|
|
15
|
+
};
|
|
16
|
+
export type Dfw_fileAvgAggregateOutputType = {
|
|
17
|
+
size: number | null;
|
|
18
|
+
};
|
|
19
|
+
export type Dfw_fileSumAggregateOutputType = {
|
|
20
|
+
size: number | null;
|
|
21
|
+
};
|
|
22
|
+
export type Dfw_fileMinAggregateOutputType = {
|
|
23
|
+
id: string | null;
|
|
24
|
+
name: string | null;
|
|
25
|
+
path: string | null;
|
|
26
|
+
url: string | null;
|
|
27
|
+
variant: string | null;
|
|
28
|
+
size: number | null;
|
|
29
|
+
checksum: string | null;
|
|
30
|
+
mimetype: string | null;
|
|
31
|
+
storage: $Enums.DFW_FILE_STORAGE | null;
|
|
32
|
+
expire: Date | null;
|
|
33
|
+
idParent: string | null;
|
|
34
|
+
idUser: string | null;
|
|
35
|
+
createdAt: Date | null;
|
|
36
|
+
updatedAt: Date | null;
|
|
37
|
+
};
|
|
38
|
+
export type Dfw_fileMaxAggregateOutputType = {
|
|
39
|
+
id: string | null;
|
|
40
|
+
name: string | null;
|
|
41
|
+
path: string | null;
|
|
42
|
+
url: string | null;
|
|
43
|
+
variant: string | null;
|
|
44
|
+
size: number | null;
|
|
45
|
+
checksum: string | null;
|
|
46
|
+
mimetype: string | null;
|
|
47
|
+
storage: $Enums.DFW_FILE_STORAGE | null;
|
|
48
|
+
expire: Date | null;
|
|
49
|
+
idParent: string | null;
|
|
50
|
+
idUser: string | null;
|
|
51
|
+
createdAt: Date | null;
|
|
52
|
+
updatedAt: Date | null;
|
|
53
|
+
};
|
|
54
|
+
export type Dfw_fileCountAggregateOutputType = {
|
|
55
|
+
id: number;
|
|
56
|
+
name: number;
|
|
57
|
+
path: number;
|
|
58
|
+
url: number;
|
|
59
|
+
variant: number;
|
|
60
|
+
size: number;
|
|
61
|
+
checksum: number;
|
|
62
|
+
mimetype: number;
|
|
63
|
+
storage: number;
|
|
64
|
+
expire: number;
|
|
65
|
+
metadata: number;
|
|
66
|
+
idParent: number;
|
|
67
|
+
idUser: number;
|
|
68
|
+
createdAt: number;
|
|
69
|
+
updatedAt: number;
|
|
70
|
+
_all: number;
|
|
71
|
+
};
|
|
72
|
+
export type Dfw_fileAvgAggregateInputType = {
|
|
73
|
+
size?: true;
|
|
74
|
+
};
|
|
75
|
+
export type Dfw_fileSumAggregateInputType = {
|
|
76
|
+
size?: true;
|
|
77
|
+
};
|
|
78
|
+
export type Dfw_fileMinAggregateInputType = {
|
|
79
|
+
id?: true;
|
|
80
|
+
name?: true;
|
|
81
|
+
path?: true;
|
|
82
|
+
url?: true;
|
|
83
|
+
variant?: true;
|
|
84
|
+
size?: true;
|
|
85
|
+
checksum?: true;
|
|
86
|
+
mimetype?: true;
|
|
87
|
+
storage?: true;
|
|
88
|
+
expire?: true;
|
|
89
|
+
idParent?: true;
|
|
90
|
+
idUser?: true;
|
|
91
|
+
createdAt?: true;
|
|
92
|
+
updatedAt?: true;
|
|
93
|
+
};
|
|
94
|
+
export type Dfw_fileMaxAggregateInputType = {
|
|
95
|
+
id?: true;
|
|
96
|
+
name?: true;
|
|
97
|
+
path?: true;
|
|
98
|
+
url?: true;
|
|
99
|
+
variant?: true;
|
|
100
|
+
size?: true;
|
|
101
|
+
checksum?: true;
|
|
102
|
+
mimetype?: true;
|
|
103
|
+
storage?: true;
|
|
104
|
+
expire?: true;
|
|
105
|
+
idParent?: true;
|
|
106
|
+
idUser?: true;
|
|
107
|
+
createdAt?: true;
|
|
108
|
+
updatedAt?: true;
|
|
109
|
+
};
|
|
110
|
+
export type Dfw_fileCountAggregateInputType = {
|
|
111
|
+
id?: true;
|
|
112
|
+
name?: true;
|
|
113
|
+
path?: true;
|
|
114
|
+
url?: true;
|
|
115
|
+
variant?: true;
|
|
116
|
+
size?: true;
|
|
117
|
+
checksum?: true;
|
|
118
|
+
mimetype?: true;
|
|
119
|
+
storage?: true;
|
|
120
|
+
expire?: true;
|
|
121
|
+
metadata?: true;
|
|
122
|
+
idParent?: true;
|
|
123
|
+
idUser?: true;
|
|
124
|
+
createdAt?: true;
|
|
125
|
+
updatedAt?: true;
|
|
126
|
+
_all?: true;
|
|
127
|
+
};
|
|
128
|
+
export type Dfw_fileAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
129
|
+
/**
|
|
130
|
+
* Filter which dfw_file to aggregate.
|
|
131
|
+
*/
|
|
132
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
133
|
+
/**
|
|
134
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
135
|
+
*
|
|
136
|
+
* Determine the order of dfw_files to fetch.
|
|
137
|
+
*/
|
|
138
|
+
orderBy?: Prisma.dfw_fileOrderByWithRelationInput | Prisma.dfw_fileOrderByWithRelationInput[];
|
|
139
|
+
/**
|
|
140
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
141
|
+
*
|
|
142
|
+
* Sets the start position
|
|
143
|
+
*/
|
|
144
|
+
cursor?: Prisma.dfw_fileWhereUniqueInput;
|
|
145
|
+
/**
|
|
146
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
147
|
+
*
|
|
148
|
+
* Take `±n` dfw_files from the position of the cursor.
|
|
149
|
+
*/
|
|
150
|
+
take?: number;
|
|
151
|
+
/**
|
|
152
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
153
|
+
*
|
|
154
|
+
* Skip the first `n` dfw_files.
|
|
155
|
+
*/
|
|
156
|
+
skip?: number;
|
|
157
|
+
/**
|
|
158
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
159
|
+
*
|
|
160
|
+
* Count returned dfw_files
|
|
161
|
+
**/
|
|
162
|
+
_count?: true | Dfw_fileCountAggregateInputType;
|
|
163
|
+
/**
|
|
164
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
165
|
+
*
|
|
166
|
+
* Select which fields to average
|
|
167
|
+
**/
|
|
168
|
+
_avg?: Dfw_fileAvgAggregateInputType;
|
|
169
|
+
/**
|
|
170
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
171
|
+
*
|
|
172
|
+
* Select which fields to sum
|
|
173
|
+
**/
|
|
174
|
+
_sum?: Dfw_fileSumAggregateInputType;
|
|
175
|
+
/**
|
|
176
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
177
|
+
*
|
|
178
|
+
* Select which fields to find the minimum value
|
|
179
|
+
**/
|
|
180
|
+
_min?: Dfw_fileMinAggregateInputType;
|
|
181
|
+
/**
|
|
182
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
183
|
+
*
|
|
184
|
+
* Select which fields to find the maximum value
|
|
185
|
+
**/
|
|
186
|
+
_max?: Dfw_fileMaxAggregateInputType;
|
|
187
|
+
};
|
|
188
|
+
export type GetDfw_fileAggregateType<T extends Dfw_fileAggregateArgs> = {
|
|
189
|
+
[P in keyof T & keyof AggregateDfw_file]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateDfw_file[P]> : Prisma.GetScalarType<T[P], AggregateDfw_file[P]>;
|
|
190
|
+
};
|
|
191
|
+
export type dfw_fileGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
192
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
193
|
+
orderBy?: Prisma.dfw_fileOrderByWithAggregationInput | Prisma.dfw_fileOrderByWithAggregationInput[];
|
|
194
|
+
by: Prisma.Dfw_fileScalarFieldEnum[] | Prisma.Dfw_fileScalarFieldEnum;
|
|
195
|
+
having?: Prisma.dfw_fileScalarWhereWithAggregatesInput;
|
|
196
|
+
take?: number;
|
|
197
|
+
skip?: number;
|
|
198
|
+
_count?: Dfw_fileCountAggregateInputType | true;
|
|
199
|
+
_avg?: Dfw_fileAvgAggregateInputType;
|
|
200
|
+
_sum?: Dfw_fileSumAggregateInputType;
|
|
201
|
+
_min?: Dfw_fileMinAggregateInputType;
|
|
202
|
+
_max?: Dfw_fileMaxAggregateInputType;
|
|
203
|
+
};
|
|
204
|
+
export type Dfw_fileGroupByOutputType = {
|
|
205
|
+
id: string;
|
|
206
|
+
name: string | null;
|
|
207
|
+
path: string | null;
|
|
208
|
+
url: string | null;
|
|
209
|
+
variant: string | null;
|
|
210
|
+
size: number | null;
|
|
211
|
+
checksum: string | null;
|
|
212
|
+
mimetype: string | null;
|
|
213
|
+
storage: $Enums.DFW_FILE_STORAGE;
|
|
214
|
+
expire: Date | null;
|
|
215
|
+
metadata: runtime.JsonValue | null;
|
|
216
|
+
idParent: string | null;
|
|
217
|
+
idUser: string | null;
|
|
218
|
+
createdAt: Date;
|
|
219
|
+
updatedAt: Date;
|
|
220
|
+
_count: Dfw_fileCountAggregateOutputType | null;
|
|
221
|
+
_avg: Dfw_fileAvgAggregateOutputType | null;
|
|
222
|
+
_sum: Dfw_fileSumAggregateOutputType | null;
|
|
223
|
+
_min: Dfw_fileMinAggregateOutputType | null;
|
|
224
|
+
_max: Dfw_fileMaxAggregateOutputType | null;
|
|
225
|
+
};
|
|
226
|
+
type GetDfw_fileGroupByPayload<T extends dfw_fileGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<Dfw_fileGroupByOutputType, T['by']> & {
|
|
227
|
+
[P in ((keyof T) & (keyof Dfw_fileGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], Dfw_fileGroupByOutputType[P]> : Prisma.GetScalarType<T[P], Dfw_fileGroupByOutputType[P]>;
|
|
228
|
+
}>>;
|
|
229
|
+
export type dfw_fileWhereInput = {
|
|
230
|
+
AND?: Prisma.dfw_fileWhereInput | Prisma.dfw_fileWhereInput[];
|
|
231
|
+
OR?: Prisma.dfw_fileWhereInput[];
|
|
232
|
+
NOT?: Prisma.dfw_fileWhereInput | Prisma.dfw_fileWhereInput[];
|
|
233
|
+
id?: Prisma.StringFilter<"dfw_file"> | string;
|
|
234
|
+
name?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
235
|
+
path?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
236
|
+
url?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
237
|
+
variant?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
238
|
+
size?: Prisma.IntNullableFilter<"dfw_file"> | number | null;
|
|
239
|
+
checksum?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
240
|
+
mimetype?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
241
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFilter<"dfw_file"> | $Enums.DFW_FILE_STORAGE;
|
|
242
|
+
expire?: Prisma.DateTimeNullableFilter<"dfw_file"> | Date | string | null;
|
|
243
|
+
metadata?: Prisma.JsonNullableFilter<"dfw_file">;
|
|
244
|
+
idParent?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
245
|
+
idUser?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
246
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_file"> | Date | string;
|
|
247
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_file"> | Date | string;
|
|
248
|
+
user?: Prisma.XOR<Prisma.Dfw_userNullableScalarRelationFilter, Prisma.dfw_userWhereInput> | null;
|
|
249
|
+
parent?: Prisma.XOR<Prisma.Dfw_fileNullableScalarRelationFilter, Prisma.dfw_fileWhereInput> | null;
|
|
250
|
+
children?: Prisma.Dfw_fileListRelationFilter;
|
|
251
|
+
};
|
|
252
|
+
export type dfw_fileOrderByWithRelationInput = {
|
|
253
|
+
id?: Prisma.SortOrder;
|
|
254
|
+
name?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
255
|
+
path?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
256
|
+
url?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
257
|
+
variant?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
258
|
+
size?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
259
|
+
checksum?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
260
|
+
mimetype?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
261
|
+
storage?: Prisma.SortOrder;
|
|
262
|
+
expire?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
263
|
+
metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
264
|
+
idParent?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
265
|
+
idUser?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
266
|
+
createdAt?: Prisma.SortOrder;
|
|
267
|
+
updatedAt?: Prisma.SortOrder;
|
|
268
|
+
user?: Prisma.dfw_userOrderByWithRelationInput;
|
|
269
|
+
parent?: Prisma.dfw_fileOrderByWithRelationInput;
|
|
270
|
+
children?: Prisma.dfw_fileOrderByRelationAggregateInput;
|
|
271
|
+
};
|
|
272
|
+
export type dfw_fileWhereUniqueInput = Prisma.AtLeast<{
|
|
273
|
+
id?: string;
|
|
274
|
+
AND?: Prisma.dfw_fileWhereInput | Prisma.dfw_fileWhereInput[];
|
|
275
|
+
OR?: Prisma.dfw_fileWhereInput[];
|
|
276
|
+
NOT?: Prisma.dfw_fileWhereInput | Prisma.dfw_fileWhereInput[];
|
|
277
|
+
name?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
278
|
+
path?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
279
|
+
url?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
280
|
+
variant?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
281
|
+
size?: Prisma.IntNullableFilter<"dfw_file"> | number | null;
|
|
282
|
+
checksum?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
283
|
+
mimetype?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
284
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFilter<"dfw_file"> | $Enums.DFW_FILE_STORAGE;
|
|
285
|
+
expire?: Prisma.DateTimeNullableFilter<"dfw_file"> | Date | string | null;
|
|
286
|
+
metadata?: Prisma.JsonNullableFilter<"dfw_file">;
|
|
287
|
+
idParent?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
288
|
+
idUser?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
289
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_file"> | Date | string;
|
|
290
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_file"> | Date | string;
|
|
291
|
+
user?: Prisma.XOR<Prisma.Dfw_userNullableScalarRelationFilter, Prisma.dfw_userWhereInput> | null;
|
|
292
|
+
parent?: Prisma.XOR<Prisma.Dfw_fileNullableScalarRelationFilter, Prisma.dfw_fileWhereInput> | null;
|
|
293
|
+
children?: Prisma.Dfw_fileListRelationFilter;
|
|
294
|
+
}, "id">;
|
|
295
|
+
export type dfw_fileOrderByWithAggregationInput = {
|
|
296
|
+
id?: Prisma.SortOrder;
|
|
297
|
+
name?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
298
|
+
path?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
299
|
+
url?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
300
|
+
variant?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
301
|
+
size?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
302
|
+
checksum?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
303
|
+
mimetype?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
304
|
+
storage?: Prisma.SortOrder;
|
|
305
|
+
expire?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
306
|
+
metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
307
|
+
idParent?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
308
|
+
idUser?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
309
|
+
createdAt?: Prisma.SortOrder;
|
|
310
|
+
updatedAt?: Prisma.SortOrder;
|
|
311
|
+
_count?: Prisma.dfw_fileCountOrderByAggregateInput;
|
|
312
|
+
_avg?: Prisma.dfw_fileAvgOrderByAggregateInput;
|
|
313
|
+
_max?: Prisma.dfw_fileMaxOrderByAggregateInput;
|
|
314
|
+
_min?: Prisma.dfw_fileMinOrderByAggregateInput;
|
|
315
|
+
_sum?: Prisma.dfw_fileSumOrderByAggregateInput;
|
|
316
|
+
};
|
|
317
|
+
export type dfw_fileScalarWhereWithAggregatesInput = {
|
|
318
|
+
AND?: Prisma.dfw_fileScalarWhereWithAggregatesInput | Prisma.dfw_fileScalarWhereWithAggregatesInput[];
|
|
319
|
+
OR?: Prisma.dfw_fileScalarWhereWithAggregatesInput[];
|
|
320
|
+
NOT?: Prisma.dfw_fileScalarWhereWithAggregatesInput | Prisma.dfw_fileScalarWhereWithAggregatesInput[];
|
|
321
|
+
id?: Prisma.StringWithAggregatesFilter<"dfw_file"> | string;
|
|
322
|
+
name?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
323
|
+
path?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
324
|
+
url?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
325
|
+
variant?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
326
|
+
size?: Prisma.IntNullableWithAggregatesFilter<"dfw_file"> | number | null;
|
|
327
|
+
checksum?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
328
|
+
mimetype?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
329
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEWithAggregatesFilter<"dfw_file"> | $Enums.DFW_FILE_STORAGE;
|
|
330
|
+
expire?: Prisma.DateTimeNullableWithAggregatesFilter<"dfw_file"> | Date | string | null;
|
|
331
|
+
metadata?: Prisma.JsonNullableWithAggregatesFilter<"dfw_file">;
|
|
332
|
+
idParent?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
333
|
+
idUser?: Prisma.StringNullableWithAggregatesFilter<"dfw_file"> | string | null;
|
|
334
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"dfw_file"> | Date | string;
|
|
335
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"dfw_file"> | Date | string;
|
|
336
|
+
};
|
|
337
|
+
export type dfw_fileCreateInput = {
|
|
338
|
+
id?: string;
|
|
339
|
+
name?: string | null;
|
|
340
|
+
path?: string | null;
|
|
341
|
+
url?: string | null;
|
|
342
|
+
variant?: string | null;
|
|
343
|
+
size?: number | null;
|
|
344
|
+
checksum?: string | null;
|
|
345
|
+
mimetype?: string | null;
|
|
346
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
347
|
+
expire?: Date | string | null;
|
|
348
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
349
|
+
createdAt?: Date | string;
|
|
350
|
+
updatedAt?: Date | string;
|
|
351
|
+
user?: Prisma.dfw_userCreateNestedOneWithoutFilesInput;
|
|
352
|
+
parent?: Prisma.dfw_fileCreateNestedOneWithoutChildrenInput;
|
|
353
|
+
children?: Prisma.dfw_fileCreateNestedManyWithoutParentInput;
|
|
354
|
+
};
|
|
355
|
+
export type dfw_fileUncheckedCreateInput = {
|
|
356
|
+
id?: string;
|
|
357
|
+
name?: string | null;
|
|
358
|
+
path?: string | null;
|
|
359
|
+
url?: string | null;
|
|
360
|
+
variant?: string | null;
|
|
361
|
+
size?: number | null;
|
|
362
|
+
checksum?: string | null;
|
|
363
|
+
mimetype?: string | null;
|
|
364
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
365
|
+
expire?: Date | string | null;
|
|
366
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
367
|
+
idParent?: string | null;
|
|
368
|
+
idUser?: string | null;
|
|
369
|
+
createdAt?: Date | string;
|
|
370
|
+
updatedAt?: Date | string;
|
|
371
|
+
children?: Prisma.dfw_fileUncheckedCreateNestedManyWithoutParentInput;
|
|
372
|
+
};
|
|
373
|
+
export type dfw_fileUpdateInput = {
|
|
374
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
375
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
376
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
377
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
378
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
379
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
380
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
381
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
382
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
383
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
384
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
385
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
386
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
387
|
+
user?: Prisma.dfw_userUpdateOneWithoutFilesNestedInput;
|
|
388
|
+
parent?: Prisma.dfw_fileUpdateOneWithoutChildrenNestedInput;
|
|
389
|
+
children?: Prisma.dfw_fileUpdateManyWithoutParentNestedInput;
|
|
390
|
+
};
|
|
391
|
+
export type dfw_fileUncheckedUpdateInput = {
|
|
392
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
393
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
394
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
395
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
396
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
397
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
398
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
399
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
400
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
401
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
402
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
403
|
+
idParent?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
404
|
+
idUser?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
405
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
406
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
407
|
+
children?: Prisma.dfw_fileUncheckedUpdateManyWithoutParentNestedInput;
|
|
408
|
+
};
|
|
409
|
+
export type dfw_fileCreateManyInput = {
|
|
410
|
+
id?: string;
|
|
411
|
+
name?: string | null;
|
|
412
|
+
path?: string | null;
|
|
413
|
+
url?: string | null;
|
|
414
|
+
variant?: string | null;
|
|
415
|
+
size?: number | null;
|
|
416
|
+
checksum?: string | null;
|
|
417
|
+
mimetype?: string | null;
|
|
418
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
419
|
+
expire?: Date | string | null;
|
|
420
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
421
|
+
idParent?: string | null;
|
|
422
|
+
idUser?: string | null;
|
|
423
|
+
createdAt?: Date | string;
|
|
424
|
+
updatedAt?: Date | string;
|
|
425
|
+
};
|
|
426
|
+
export type dfw_fileUpdateManyMutationInput = {
|
|
427
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
428
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
429
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
430
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
431
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
432
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
433
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
434
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
435
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
436
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
437
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
438
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
439
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
440
|
+
};
|
|
441
|
+
export type dfw_fileUncheckedUpdateManyInput = {
|
|
442
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
443
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
444
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
445
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
446
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
447
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
448
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
449
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
450
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
451
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
452
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
453
|
+
idParent?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
454
|
+
idUser?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
455
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
456
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
457
|
+
};
|
|
458
|
+
export type Dfw_fileListRelationFilter = {
|
|
459
|
+
every?: Prisma.dfw_fileWhereInput;
|
|
460
|
+
some?: Prisma.dfw_fileWhereInput;
|
|
461
|
+
none?: Prisma.dfw_fileWhereInput;
|
|
462
|
+
};
|
|
463
|
+
export type dfw_fileOrderByRelationAggregateInput = {
|
|
464
|
+
_count?: Prisma.SortOrder;
|
|
465
|
+
};
|
|
466
|
+
export type Dfw_fileNullableScalarRelationFilter = {
|
|
467
|
+
is?: Prisma.dfw_fileWhereInput | null;
|
|
468
|
+
isNot?: Prisma.dfw_fileWhereInput | null;
|
|
469
|
+
};
|
|
470
|
+
export type dfw_fileCountOrderByAggregateInput = {
|
|
471
|
+
id?: Prisma.SortOrder;
|
|
472
|
+
name?: Prisma.SortOrder;
|
|
473
|
+
path?: Prisma.SortOrder;
|
|
474
|
+
url?: Prisma.SortOrder;
|
|
475
|
+
variant?: Prisma.SortOrder;
|
|
476
|
+
size?: Prisma.SortOrder;
|
|
477
|
+
checksum?: Prisma.SortOrder;
|
|
478
|
+
mimetype?: Prisma.SortOrder;
|
|
479
|
+
storage?: Prisma.SortOrder;
|
|
480
|
+
expire?: Prisma.SortOrder;
|
|
481
|
+
metadata?: Prisma.SortOrder;
|
|
482
|
+
idParent?: Prisma.SortOrder;
|
|
483
|
+
idUser?: Prisma.SortOrder;
|
|
484
|
+
createdAt?: Prisma.SortOrder;
|
|
485
|
+
updatedAt?: Prisma.SortOrder;
|
|
486
|
+
};
|
|
487
|
+
export type dfw_fileAvgOrderByAggregateInput = {
|
|
488
|
+
size?: Prisma.SortOrder;
|
|
489
|
+
};
|
|
490
|
+
export type dfw_fileMaxOrderByAggregateInput = {
|
|
491
|
+
id?: Prisma.SortOrder;
|
|
492
|
+
name?: Prisma.SortOrder;
|
|
493
|
+
path?: Prisma.SortOrder;
|
|
494
|
+
url?: Prisma.SortOrder;
|
|
495
|
+
variant?: Prisma.SortOrder;
|
|
496
|
+
size?: Prisma.SortOrder;
|
|
497
|
+
checksum?: Prisma.SortOrder;
|
|
498
|
+
mimetype?: Prisma.SortOrder;
|
|
499
|
+
storage?: Prisma.SortOrder;
|
|
500
|
+
expire?: Prisma.SortOrder;
|
|
501
|
+
idParent?: Prisma.SortOrder;
|
|
502
|
+
idUser?: Prisma.SortOrder;
|
|
503
|
+
createdAt?: Prisma.SortOrder;
|
|
504
|
+
updatedAt?: Prisma.SortOrder;
|
|
505
|
+
};
|
|
506
|
+
export type dfw_fileMinOrderByAggregateInput = {
|
|
507
|
+
id?: Prisma.SortOrder;
|
|
508
|
+
name?: Prisma.SortOrder;
|
|
509
|
+
path?: Prisma.SortOrder;
|
|
510
|
+
url?: Prisma.SortOrder;
|
|
511
|
+
variant?: Prisma.SortOrder;
|
|
512
|
+
size?: Prisma.SortOrder;
|
|
513
|
+
checksum?: Prisma.SortOrder;
|
|
514
|
+
mimetype?: Prisma.SortOrder;
|
|
515
|
+
storage?: Prisma.SortOrder;
|
|
516
|
+
expire?: Prisma.SortOrder;
|
|
517
|
+
idParent?: Prisma.SortOrder;
|
|
518
|
+
idUser?: Prisma.SortOrder;
|
|
519
|
+
createdAt?: Prisma.SortOrder;
|
|
520
|
+
updatedAt?: Prisma.SortOrder;
|
|
521
|
+
};
|
|
522
|
+
export type dfw_fileSumOrderByAggregateInput = {
|
|
523
|
+
size?: Prisma.SortOrder;
|
|
524
|
+
};
|
|
525
|
+
export type dfw_fileCreateNestedManyWithoutUserInput = {
|
|
526
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutUserInput, Prisma.dfw_fileUncheckedCreateWithoutUserInput> | Prisma.dfw_fileCreateWithoutUserInput[] | Prisma.dfw_fileUncheckedCreateWithoutUserInput[];
|
|
527
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutUserInput | Prisma.dfw_fileCreateOrConnectWithoutUserInput[];
|
|
528
|
+
createMany?: Prisma.dfw_fileCreateManyUserInputEnvelope;
|
|
529
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
530
|
+
};
|
|
531
|
+
export type dfw_fileUncheckedCreateNestedManyWithoutUserInput = {
|
|
532
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutUserInput, Prisma.dfw_fileUncheckedCreateWithoutUserInput> | Prisma.dfw_fileCreateWithoutUserInput[] | Prisma.dfw_fileUncheckedCreateWithoutUserInput[];
|
|
533
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutUserInput | Prisma.dfw_fileCreateOrConnectWithoutUserInput[];
|
|
534
|
+
createMany?: Prisma.dfw_fileCreateManyUserInputEnvelope;
|
|
535
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
536
|
+
};
|
|
537
|
+
export type dfw_fileUpdateManyWithoutUserNestedInput = {
|
|
538
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutUserInput, Prisma.dfw_fileUncheckedCreateWithoutUserInput> | Prisma.dfw_fileCreateWithoutUserInput[] | Prisma.dfw_fileUncheckedCreateWithoutUserInput[];
|
|
539
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutUserInput | Prisma.dfw_fileCreateOrConnectWithoutUserInput[];
|
|
540
|
+
upsert?: Prisma.dfw_fileUpsertWithWhereUniqueWithoutUserInput | Prisma.dfw_fileUpsertWithWhereUniqueWithoutUserInput[];
|
|
541
|
+
createMany?: Prisma.dfw_fileCreateManyUserInputEnvelope;
|
|
542
|
+
set?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
543
|
+
disconnect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
544
|
+
delete?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
545
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
546
|
+
update?: Prisma.dfw_fileUpdateWithWhereUniqueWithoutUserInput | Prisma.dfw_fileUpdateWithWhereUniqueWithoutUserInput[];
|
|
547
|
+
updateMany?: Prisma.dfw_fileUpdateManyWithWhereWithoutUserInput | Prisma.dfw_fileUpdateManyWithWhereWithoutUserInput[];
|
|
548
|
+
deleteMany?: Prisma.dfw_fileScalarWhereInput | Prisma.dfw_fileScalarWhereInput[];
|
|
549
|
+
};
|
|
550
|
+
export type dfw_fileUncheckedUpdateManyWithoutUserNestedInput = {
|
|
551
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutUserInput, Prisma.dfw_fileUncheckedCreateWithoutUserInput> | Prisma.dfw_fileCreateWithoutUserInput[] | Prisma.dfw_fileUncheckedCreateWithoutUserInput[];
|
|
552
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutUserInput | Prisma.dfw_fileCreateOrConnectWithoutUserInput[];
|
|
553
|
+
upsert?: Prisma.dfw_fileUpsertWithWhereUniqueWithoutUserInput | Prisma.dfw_fileUpsertWithWhereUniqueWithoutUserInput[];
|
|
554
|
+
createMany?: Prisma.dfw_fileCreateManyUserInputEnvelope;
|
|
555
|
+
set?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
556
|
+
disconnect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
557
|
+
delete?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
558
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
559
|
+
update?: Prisma.dfw_fileUpdateWithWhereUniqueWithoutUserInput | Prisma.dfw_fileUpdateWithWhereUniqueWithoutUserInput[];
|
|
560
|
+
updateMany?: Prisma.dfw_fileUpdateManyWithWhereWithoutUserInput | Prisma.dfw_fileUpdateManyWithWhereWithoutUserInput[];
|
|
561
|
+
deleteMany?: Prisma.dfw_fileScalarWhereInput | Prisma.dfw_fileScalarWhereInput[];
|
|
562
|
+
};
|
|
563
|
+
export type dfw_fileCreateNestedOneWithoutChildrenInput = {
|
|
564
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutChildrenInput, Prisma.dfw_fileUncheckedCreateWithoutChildrenInput>;
|
|
565
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutChildrenInput;
|
|
566
|
+
connect?: Prisma.dfw_fileWhereUniqueInput;
|
|
567
|
+
};
|
|
568
|
+
export type dfw_fileCreateNestedManyWithoutParentInput = {
|
|
569
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutParentInput, Prisma.dfw_fileUncheckedCreateWithoutParentInput> | Prisma.dfw_fileCreateWithoutParentInput[] | Prisma.dfw_fileUncheckedCreateWithoutParentInput[];
|
|
570
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutParentInput | Prisma.dfw_fileCreateOrConnectWithoutParentInput[];
|
|
571
|
+
createMany?: Prisma.dfw_fileCreateManyParentInputEnvelope;
|
|
572
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
573
|
+
};
|
|
574
|
+
export type dfw_fileUncheckedCreateNestedManyWithoutParentInput = {
|
|
575
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutParentInput, Prisma.dfw_fileUncheckedCreateWithoutParentInput> | Prisma.dfw_fileCreateWithoutParentInput[] | Prisma.dfw_fileUncheckedCreateWithoutParentInput[];
|
|
576
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutParentInput | Prisma.dfw_fileCreateOrConnectWithoutParentInput[];
|
|
577
|
+
createMany?: Prisma.dfw_fileCreateManyParentInputEnvelope;
|
|
578
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
579
|
+
};
|
|
580
|
+
export type NullableIntFieldUpdateOperationsInput = {
|
|
581
|
+
set?: number | null;
|
|
582
|
+
increment?: number;
|
|
583
|
+
decrement?: number;
|
|
584
|
+
multiply?: number;
|
|
585
|
+
divide?: number;
|
|
586
|
+
};
|
|
587
|
+
export type EnumDFW_FILE_STORAGEFieldUpdateOperationsInput = {
|
|
588
|
+
set?: $Enums.DFW_FILE_STORAGE;
|
|
589
|
+
};
|
|
590
|
+
export type dfw_fileUpdateOneWithoutChildrenNestedInput = {
|
|
591
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutChildrenInput, Prisma.dfw_fileUncheckedCreateWithoutChildrenInput>;
|
|
592
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutChildrenInput;
|
|
593
|
+
upsert?: Prisma.dfw_fileUpsertWithoutChildrenInput;
|
|
594
|
+
disconnect?: Prisma.dfw_fileWhereInput | boolean;
|
|
595
|
+
delete?: Prisma.dfw_fileWhereInput | boolean;
|
|
596
|
+
connect?: Prisma.dfw_fileWhereUniqueInput;
|
|
597
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.dfw_fileUpdateToOneWithWhereWithoutChildrenInput, Prisma.dfw_fileUpdateWithoutChildrenInput>, Prisma.dfw_fileUncheckedUpdateWithoutChildrenInput>;
|
|
598
|
+
};
|
|
599
|
+
export type dfw_fileUpdateManyWithoutParentNestedInput = {
|
|
600
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutParentInput, Prisma.dfw_fileUncheckedCreateWithoutParentInput> | Prisma.dfw_fileCreateWithoutParentInput[] | Prisma.dfw_fileUncheckedCreateWithoutParentInput[];
|
|
601
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutParentInput | Prisma.dfw_fileCreateOrConnectWithoutParentInput[];
|
|
602
|
+
upsert?: Prisma.dfw_fileUpsertWithWhereUniqueWithoutParentInput | Prisma.dfw_fileUpsertWithWhereUniqueWithoutParentInput[];
|
|
603
|
+
createMany?: Prisma.dfw_fileCreateManyParentInputEnvelope;
|
|
604
|
+
set?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
605
|
+
disconnect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
606
|
+
delete?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
607
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
608
|
+
update?: Prisma.dfw_fileUpdateWithWhereUniqueWithoutParentInput | Prisma.dfw_fileUpdateWithWhereUniqueWithoutParentInput[];
|
|
609
|
+
updateMany?: Prisma.dfw_fileUpdateManyWithWhereWithoutParentInput | Prisma.dfw_fileUpdateManyWithWhereWithoutParentInput[];
|
|
610
|
+
deleteMany?: Prisma.dfw_fileScalarWhereInput | Prisma.dfw_fileScalarWhereInput[];
|
|
611
|
+
};
|
|
612
|
+
export type dfw_fileUncheckedUpdateManyWithoutParentNestedInput = {
|
|
613
|
+
create?: Prisma.XOR<Prisma.dfw_fileCreateWithoutParentInput, Prisma.dfw_fileUncheckedCreateWithoutParentInput> | Prisma.dfw_fileCreateWithoutParentInput[] | Prisma.dfw_fileUncheckedCreateWithoutParentInput[];
|
|
614
|
+
connectOrCreate?: Prisma.dfw_fileCreateOrConnectWithoutParentInput | Prisma.dfw_fileCreateOrConnectWithoutParentInput[];
|
|
615
|
+
upsert?: Prisma.dfw_fileUpsertWithWhereUniqueWithoutParentInput | Prisma.dfw_fileUpsertWithWhereUniqueWithoutParentInput[];
|
|
616
|
+
createMany?: Prisma.dfw_fileCreateManyParentInputEnvelope;
|
|
617
|
+
set?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
618
|
+
disconnect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
619
|
+
delete?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
620
|
+
connect?: Prisma.dfw_fileWhereUniqueInput | Prisma.dfw_fileWhereUniqueInput[];
|
|
621
|
+
update?: Prisma.dfw_fileUpdateWithWhereUniqueWithoutParentInput | Prisma.dfw_fileUpdateWithWhereUniqueWithoutParentInput[];
|
|
622
|
+
updateMany?: Prisma.dfw_fileUpdateManyWithWhereWithoutParentInput | Prisma.dfw_fileUpdateManyWithWhereWithoutParentInput[];
|
|
623
|
+
deleteMany?: Prisma.dfw_fileScalarWhereInput | Prisma.dfw_fileScalarWhereInput[];
|
|
624
|
+
};
|
|
625
|
+
export type dfw_fileCreateWithoutUserInput = {
|
|
626
|
+
id?: string;
|
|
627
|
+
name?: string | null;
|
|
628
|
+
path?: string | null;
|
|
629
|
+
url?: string | null;
|
|
630
|
+
variant?: string | null;
|
|
631
|
+
size?: number | null;
|
|
632
|
+
checksum?: string | null;
|
|
633
|
+
mimetype?: string | null;
|
|
634
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
635
|
+
expire?: Date | string | null;
|
|
636
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
637
|
+
createdAt?: Date | string;
|
|
638
|
+
updatedAt?: Date | string;
|
|
639
|
+
parent?: Prisma.dfw_fileCreateNestedOneWithoutChildrenInput;
|
|
640
|
+
children?: Prisma.dfw_fileCreateNestedManyWithoutParentInput;
|
|
641
|
+
};
|
|
642
|
+
export type dfw_fileUncheckedCreateWithoutUserInput = {
|
|
643
|
+
id?: string;
|
|
644
|
+
name?: string | null;
|
|
645
|
+
path?: string | null;
|
|
646
|
+
url?: string | null;
|
|
647
|
+
variant?: string | null;
|
|
648
|
+
size?: number | null;
|
|
649
|
+
checksum?: string | null;
|
|
650
|
+
mimetype?: string | null;
|
|
651
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
652
|
+
expire?: Date | string | null;
|
|
653
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
654
|
+
idParent?: string | null;
|
|
655
|
+
createdAt?: Date | string;
|
|
656
|
+
updatedAt?: Date | string;
|
|
657
|
+
children?: Prisma.dfw_fileUncheckedCreateNestedManyWithoutParentInput;
|
|
658
|
+
};
|
|
659
|
+
export type dfw_fileCreateOrConnectWithoutUserInput = {
|
|
660
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
661
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateWithoutUserInput, Prisma.dfw_fileUncheckedCreateWithoutUserInput>;
|
|
662
|
+
};
|
|
663
|
+
export type dfw_fileCreateManyUserInputEnvelope = {
|
|
664
|
+
data: Prisma.dfw_fileCreateManyUserInput | Prisma.dfw_fileCreateManyUserInput[];
|
|
665
|
+
skipDuplicates?: boolean;
|
|
666
|
+
};
|
|
667
|
+
export type dfw_fileUpsertWithWhereUniqueWithoutUserInput = {
|
|
668
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
669
|
+
update: Prisma.XOR<Prisma.dfw_fileUpdateWithoutUserInput, Prisma.dfw_fileUncheckedUpdateWithoutUserInput>;
|
|
670
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateWithoutUserInput, Prisma.dfw_fileUncheckedCreateWithoutUserInput>;
|
|
671
|
+
};
|
|
672
|
+
export type dfw_fileUpdateWithWhereUniqueWithoutUserInput = {
|
|
673
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
674
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateWithoutUserInput, Prisma.dfw_fileUncheckedUpdateWithoutUserInput>;
|
|
675
|
+
};
|
|
676
|
+
export type dfw_fileUpdateManyWithWhereWithoutUserInput = {
|
|
677
|
+
where: Prisma.dfw_fileScalarWhereInput;
|
|
678
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateManyMutationInput, Prisma.dfw_fileUncheckedUpdateManyWithoutUserInput>;
|
|
679
|
+
};
|
|
680
|
+
export type dfw_fileScalarWhereInput = {
|
|
681
|
+
AND?: Prisma.dfw_fileScalarWhereInput | Prisma.dfw_fileScalarWhereInput[];
|
|
682
|
+
OR?: Prisma.dfw_fileScalarWhereInput[];
|
|
683
|
+
NOT?: Prisma.dfw_fileScalarWhereInput | Prisma.dfw_fileScalarWhereInput[];
|
|
684
|
+
id?: Prisma.StringFilter<"dfw_file"> | string;
|
|
685
|
+
name?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
686
|
+
path?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
687
|
+
url?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
688
|
+
variant?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
689
|
+
size?: Prisma.IntNullableFilter<"dfw_file"> | number | null;
|
|
690
|
+
checksum?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
691
|
+
mimetype?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
692
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFilter<"dfw_file"> | $Enums.DFW_FILE_STORAGE;
|
|
693
|
+
expire?: Prisma.DateTimeNullableFilter<"dfw_file"> | Date | string | null;
|
|
694
|
+
metadata?: Prisma.JsonNullableFilter<"dfw_file">;
|
|
695
|
+
idParent?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
696
|
+
idUser?: Prisma.StringNullableFilter<"dfw_file"> | string | null;
|
|
697
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_file"> | Date | string;
|
|
698
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_file"> | Date | string;
|
|
699
|
+
};
|
|
700
|
+
export type dfw_fileCreateWithoutChildrenInput = {
|
|
701
|
+
id?: string;
|
|
702
|
+
name?: string | null;
|
|
703
|
+
path?: string | null;
|
|
704
|
+
url?: string | null;
|
|
705
|
+
variant?: string | null;
|
|
706
|
+
size?: number | null;
|
|
707
|
+
checksum?: string | null;
|
|
708
|
+
mimetype?: string | null;
|
|
709
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
710
|
+
expire?: Date | string | null;
|
|
711
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
712
|
+
createdAt?: Date | string;
|
|
713
|
+
updatedAt?: Date | string;
|
|
714
|
+
user?: Prisma.dfw_userCreateNestedOneWithoutFilesInput;
|
|
715
|
+
parent?: Prisma.dfw_fileCreateNestedOneWithoutChildrenInput;
|
|
716
|
+
};
|
|
717
|
+
export type dfw_fileUncheckedCreateWithoutChildrenInput = {
|
|
718
|
+
id?: string;
|
|
719
|
+
name?: string | null;
|
|
720
|
+
path?: string | null;
|
|
721
|
+
url?: string | null;
|
|
722
|
+
variant?: string | null;
|
|
723
|
+
size?: number | null;
|
|
724
|
+
checksum?: string | null;
|
|
725
|
+
mimetype?: string | null;
|
|
726
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
727
|
+
expire?: Date | string | null;
|
|
728
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
729
|
+
idParent?: string | null;
|
|
730
|
+
idUser?: string | null;
|
|
731
|
+
createdAt?: Date | string;
|
|
732
|
+
updatedAt?: Date | string;
|
|
733
|
+
};
|
|
734
|
+
export type dfw_fileCreateOrConnectWithoutChildrenInput = {
|
|
735
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
736
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateWithoutChildrenInput, Prisma.dfw_fileUncheckedCreateWithoutChildrenInput>;
|
|
737
|
+
};
|
|
738
|
+
export type dfw_fileCreateWithoutParentInput = {
|
|
739
|
+
id?: string;
|
|
740
|
+
name?: string | null;
|
|
741
|
+
path?: string | null;
|
|
742
|
+
url?: string | null;
|
|
743
|
+
variant?: string | null;
|
|
744
|
+
size?: number | null;
|
|
745
|
+
checksum?: string | null;
|
|
746
|
+
mimetype?: string | null;
|
|
747
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
748
|
+
expire?: Date | string | null;
|
|
749
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
750
|
+
createdAt?: Date | string;
|
|
751
|
+
updatedAt?: Date | string;
|
|
752
|
+
user?: Prisma.dfw_userCreateNestedOneWithoutFilesInput;
|
|
753
|
+
children?: Prisma.dfw_fileCreateNestedManyWithoutParentInput;
|
|
754
|
+
};
|
|
755
|
+
export type dfw_fileUncheckedCreateWithoutParentInput = {
|
|
756
|
+
id?: string;
|
|
757
|
+
name?: string | null;
|
|
758
|
+
path?: string | null;
|
|
759
|
+
url?: string | null;
|
|
760
|
+
variant?: string | null;
|
|
761
|
+
size?: number | null;
|
|
762
|
+
checksum?: string | null;
|
|
763
|
+
mimetype?: string | null;
|
|
764
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
765
|
+
expire?: Date | string | null;
|
|
766
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
767
|
+
idUser?: string | null;
|
|
768
|
+
createdAt?: Date | string;
|
|
769
|
+
updatedAt?: Date | string;
|
|
770
|
+
children?: Prisma.dfw_fileUncheckedCreateNestedManyWithoutParentInput;
|
|
771
|
+
};
|
|
772
|
+
export type dfw_fileCreateOrConnectWithoutParentInput = {
|
|
773
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
774
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateWithoutParentInput, Prisma.dfw_fileUncheckedCreateWithoutParentInput>;
|
|
775
|
+
};
|
|
776
|
+
export type dfw_fileCreateManyParentInputEnvelope = {
|
|
777
|
+
data: Prisma.dfw_fileCreateManyParentInput | Prisma.dfw_fileCreateManyParentInput[];
|
|
778
|
+
skipDuplicates?: boolean;
|
|
779
|
+
};
|
|
780
|
+
export type dfw_fileUpsertWithoutChildrenInput = {
|
|
781
|
+
update: Prisma.XOR<Prisma.dfw_fileUpdateWithoutChildrenInput, Prisma.dfw_fileUncheckedUpdateWithoutChildrenInput>;
|
|
782
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateWithoutChildrenInput, Prisma.dfw_fileUncheckedCreateWithoutChildrenInput>;
|
|
783
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
784
|
+
};
|
|
785
|
+
export type dfw_fileUpdateToOneWithWhereWithoutChildrenInput = {
|
|
786
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
787
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateWithoutChildrenInput, Prisma.dfw_fileUncheckedUpdateWithoutChildrenInput>;
|
|
788
|
+
};
|
|
789
|
+
export type dfw_fileUpdateWithoutChildrenInput = {
|
|
790
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
791
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
792
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
793
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
794
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
795
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
796
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
797
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
798
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
799
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
800
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
801
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
802
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
803
|
+
user?: Prisma.dfw_userUpdateOneWithoutFilesNestedInput;
|
|
804
|
+
parent?: Prisma.dfw_fileUpdateOneWithoutChildrenNestedInput;
|
|
805
|
+
};
|
|
806
|
+
export type dfw_fileUncheckedUpdateWithoutChildrenInput = {
|
|
807
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
808
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
809
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
810
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
811
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
812
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
813
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
814
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
815
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
816
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
817
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
818
|
+
idParent?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
819
|
+
idUser?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
820
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
821
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
822
|
+
};
|
|
823
|
+
export type dfw_fileUpsertWithWhereUniqueWithoutParentInput = {
|
|
824
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
825
|
+
update: Prisma.XOR<Prisma.dfw_fileUpdateWithoutParentInput, Prisma.dfw_fileUncheckedUpdateWithoutParentInput>;
|
|
826
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateWithoutParentInput, Prisma.dfw_fileUncheckedCreateWithoutParentInput>;
|
|
827
|
+
};
|
|
828
|
+
export type dfw_fileUpdateWithWhereUniqueWithoutParentInput = {
|
|
829
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
830
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateWithoutParentInput, Prisma.dfw_fileUncheckedUpdateWithoutParentInput>;
|
|
831
|
+
};
|
|
832
|
+
export type dfw_fileUpdateManyWithWhereWithoutParentInput = {
|
|
833
|
+
where: Prisma.dfw_fileScalarWhereInput;
|
|
834
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateManyMutationInput, Prisma.dfw_fileUncheckedUpdateManyWithoutParentInput>;
|
|
835
|
+
};
|
|
836
|
+
export type dfw_fileCreateManyUserInput = {
|
|
837
|
+
id?: string;
|
|
838
|
+
name?: string | null;
|
|
839
|
+
path?: string | null;
|
|
840
|
+
url?: string | null;
|
|
841
|
+
variant?: string | null;
|
|
842
|
+
size?: number | null;
|
|
843
|
+
checksum?: string | null;
|
|
844
|
+
mimetype?: string | null;
|
|
845
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
846
|
+
expire?: Date | string | null;
|
|
847
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
848
|
+
idParent?: string | null;
|
|
849
|
+
createdAt?: Date | string;
|
|
850
|
+
updatedAt?: Date | string;
|
|
851
|
+
};
|
|
852
|
+
export type dfw_fileUpdateWithoutUserInput = {
|
|
853
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
854
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
855
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
856
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
857
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
858
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
859
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
860
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
861
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
862
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
863
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
864
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
865
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
866
|
+
parent?: Prisma.dfw_fileUpdateOneWithoutChildrenNestedInput;
|
|
867
|
+
children?: Prisma.dfw_fileUpdateManyWithoutParentNestedInput;
|
|
868
|
+
};
|
|
869
|
+
export type dfw_fileUncheckedUpdateWithoutUserInput = {
|
|
870
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
871
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
872
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
873
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
874
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
875
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
876
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
877
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
878
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
879
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
880
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
881
|
+
idParent?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
882
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
883
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
884
|
+
children?: Prisma.dfw_fileUncheckedUpdateManyWithoutParentNestedInput;
|
|
885
|
+
};
|
|
886
|
+
export type dfw_fileUncheckedUpdateManyWithoutUserInput = {
|
|
887
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
888
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
889
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
890
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
891
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
892
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
893
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
894
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
895
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
896
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
897
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
898
|
+
idParent?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
899
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
900
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
901
|
+
};
|
|
902
|
+
export type dfw_fileCreateManyParentInput = {
|
|
903
|
+
id?: string;
|
|
904
|
+
name?: string | null;
|
|
905
|
+
path?: string | null;
|
|
906
|
+
url?: string | null;
|
|
907
|
+
variant?: string | null;
|
|
908
|
+
size?: number | null;
|
|
909
|
+
checksum?: string | null;
|
|
910
|
+
mimetype?: string | null;
|
|
911
|
+
storage?: $Enums.DFW_FILE_STORAGE;
|
|
912
|
+
expire?: Date | string | null;
|
|
913
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
914
|
+
idUser?: string | null;
|
|
915
|
+
createdAt?: Date | string;
|
|
916
|
+
updatedAt?: Date | string;
|
|
917
|
+
};
|
|
918
|
+
export type dfw_fileUpdateWithoutParentInput = {
|
|
919
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
920
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
921
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
922
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
923
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
924
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
925
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
926
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
927
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
928
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
929
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
930
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
931
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
932
|
+
user?: Prisma.dfw_userUpdateOneWithoutFilesNestedInput;
|
|
933
|
+
children?: Prisma.dfw_fileUpdateManyWithoutParentNestedInput;
|
|
934
|
+
};
|
|
935
|
+
export type dfw_fileUncheckedUpdateWithoutParentInput = {
|
|
936
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
937
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
938
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
939
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
940
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
941
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
942
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
943
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
944
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
945
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
946
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
947
|
+
idUser?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
948
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
949
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
950
|
+
children?: Prisma.dfw_fileUncheckedUpdateManyWithoutParentNestedInput;
|
|
951
|
+
};
|
|
952
|
+
export type dfw_fileUncheckedUpdateManyWithoutParentInput = {
|
|
953
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
954
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
955
|
+
path?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
956
|
+
url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
957
|
+
variant?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
958
|
+
size?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
959
|
+
checksum?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
960
|
+
mimetype?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
961
|
+
storage?: Prisma.EnumDFW_FILE_STORAGEFieldUpdateOperationsInput | $Enums.DFW_FILE_STORAGE;
|
|
962
|
+
expire?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
963
|
+
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
964
|
+
idUser?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
965
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
966
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
967
|
+
};
|
|
968
|
+
/**
|
|
969
|
+
* Count Type Dfw_fileCountOutputType
|
|
970
|
+
*/
|
|
971
|
+
export type Dfw_fileCountOutputType = {
|
|
972
|
+
children: number;
|
|
973
|
+
};
|
|
974
|
+
export type Dfw_fileCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
975
|
+
children?: boolean | Dfw_fileCountOutputTypeCountChildrenArgs;
|
|
976
|
+
};
|
|
977
|
+
/**
|
|
978
|
+
* Dfw_fileCountOutputType without action
|
|
979
|
+
*/
|
|
980
|
+
export type Dfw_fileCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
981
|
+
/**
|
|
982
|
+
* Select specific fields to fetch from the Dfw_fileCountOutputType
|
|
983
|
+
*/
|
|
984
|
+
select?: Prisma.Dfw_fileCountOutputTypeSelect<ExtArgs> | null;
|
|
985
|
+
};
|
|
986
|
+
/**
|
|
987
|
+
* Dfw_fileCountOutputType without action
|
|
988
|
+
*/
|
|
989
|
+
export type Dfw_fileCountOutputTypeCountChildrenArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
990
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
991
|
+
};
|
|
992
|
+
export type dfw_fileSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
993
|
+
id?: boolean;
|
|
994
|
+
name?: boolean;
|
|
995
|
+
path?: boolean;
|
|
996
|
+
url?: boolean;
|
|
997
|
+
variant?: boolean;
|
|
998
|
+
size?: boolean;
|
|
999
|
+
checksum?: boolean;
|
|
1000
|
+
mimetype?: boolean;
|
|
1001
|
+
storage?: boolean;
|
|
1002
|
+
expire?: boolean;
|
|
1003
|
+
metadata?: boolean;
|
|
1004
|
+
idParent?: boolean;
|
|
1005
|
+
idUser?: boolean;
|
|
1006
|
+
createdAt?: boolean;
|
|
1007
|
+
updatedAt?: boolean;
|
|
1008
|
+
user?: boolean | Prisma.dfw_file$userArgs<ExtArgs>;
|
|
1009
|
+
parent?: boolean | Prisma.dfw_file$parentArgs<ExtArgs>;
|
|
1010
|
+
children?: boolean | Prisma.dfw_file$childrenArgs<ExtArgs>;
|
|
1011
|
+
_count?: boolean | Prisma.Dfw_fileCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1012
|
+
}, ExtArgs["result"]["dfw_file"]>;
|
|
1013
|
+
export type dfw_fileSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1014
|
+
id?: boolean;
|
|
1015
|
+
name?: boolean;
|
|
1016
|
+
path?: boolean;
|
|
1017
|
+
url?: boolean;
|
|
1018
|
+
variant?: boolean;
|
|
1019
|
+
size?: boolean;
|
|
1020
|
+
checksum?: boolean;
|
|
1021
|
+
mimetype?: boolean;
|
|
1022
|
+
storage?: boolean;
|
|
1023
|
+
expire?: boolean;
|
|
1024
|
+
metadata?: boolean;
|
|
1025
|
+
idParent?: boolean;
|
|
1026
|
+
idUser?: boolean;
|
|
1027
|
+
createdAt?: boolean;
|
|
1028
|
+
updatedAt?: boolean;
|
|
1029
|
+
user?: boolean | Prisma.dfw_file$userArgs<ExtArgs>;
|
|
1030
|
+
parent?: boolean | Prisma.dfw_file$parentArgs<ExtArgs>;
|
|
1031
|
+
}, ExtArgs["result"]["dfw_file"]>;
|
|
1032
|
+
export type dfw_fileSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1033
|
+
id?: boolean;
|
|
1034
|
+
name?: boolean;
|
|
1035
|
+
path?: boolean;
|
|
1036
|
+
url?: boolean;
|
|
1037
|
+
variant?: boolean;
|
|
1038
|
+
size?: boolean;
|
|
1039
|
+
checksum?: boolean;
|
|
1040
|
+
mimetype?: boolean;
|
|
1041
|
+
storage?: boolean;
|
|
1042
|
+
expire?: boolean;
|
|
1043
|
+
metadata?: boolean;
|
|
1044
|
+
idParent?: boolean;
|
|
1045
|
+
idUser?: boolean;
|
|
1046
|
+
createdAt?: boolean;
|
|
1047
|
+
updatedAt?: boolean;
|
|
1048
|
+
user?: boolean | Prisma.dfw_file$userArgs<ExtArgs>;
|
|
1049
|
+
parent?: boolean | Prisma.dfw_file$parentArgs<ExtArgs>;
|
|
1050
|
+
}, ExtArgs["result"]["dfw_file"]>;
|
|
1051
|
+
export type dfw_fileSelectScalar = {
|
|
1052
|
+
id?: boolean;
|
|
1053
|
+
name?: boolean;
|
|
1054
|
+
path?: boolean;
|
|
1055
|
+
url?: boolean;
|
|
1056
|
+
variant?: boolean;
|
|
1057
|
+
size?: boolean;
|
|
1058
|
+
checksum?: boolean;
|
|
1059
|
+
mimetype?: boolean;
|
|
1060
|
+
storage?: boolean;
|
|
1061
|
+
expire?: boolean;
|
|
1062
|
+
metadata?: boolean;
|
|
1063
|
+
idParent?: boolean;
|
|
1064
|
+
idUser?: boolean;
|
|
1065
|
+
createdAt?: boolean;
|
|
1066
|
+
updatedAt?: boolean;
|
|
1067
|
+
};
|
|
1068
|
+
export type dfw_fileOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "path" | "url" | "variant" | "size" | "checksum" | "mimetype" | "storage" | "expire" | "metadata" | "idParent" | "idUser" | "createdAt" | "updatedAt", ExtArgs["result"]["dfw_file"]>;
|
|
1069
|
+
export type dfw_fileInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1070
|
+
user?: boolean | Prisma.dfw_file$userArgs<ExtArgs>;
|
|
1071
|
+
parent?: boolean | Prisma.dfw_file$parentArgs<ExtArgs>;
|
|
1072
|
+
children?: boolean | Prisma.dfw_file$childrenArgs<ExtArgs>;
|
|
1073
|
+
_count?: boolean | Prisma.Dfw_fileCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1074
|
+
};
|
|
1075
|
+
export type dfw_fileIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1076
|
+
user?: boolean | Prisma.dfw_file$userArgs<ExtArgs>;
|
|
1077
|
+
parent?: boolean | Prisma.dfw_file$parentArgs<ExtArgs>;
|
|
1078
|
+
};
|
|
1079
|
+
export type dfw_fileIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1080
|
+
user?: boolean | Prisma.dfw_file$userArgs<ExtArgs>;
|
|
1081
|
+
parent?: boolean | Prisma.dfw_file$parentArgs<ExtArgs>;
|
|
1082
|
+
};
|
|
1083
|
+
export type $dfw_filePayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1084
|
+
name: "dfw_file";
|
|
1085
|
+
objects: {
|
|
1086
|
+
user: Prisma.$dfw_userPayload<ExtArgs> | null;
|
|
1087
|
+
parent: Prisma.$dfw_filePayload<ExtArgs> | null;
|
|
1088
|
+
children: Prisma.$dfw_filePayload<ExtArgs>[];
|
|
1089
|
+
};
|
|
1090
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
1091
|
+
id: string;
|
|
1092
|
+
name: string | null;
|
|
1093
|
+
path: string | null;
|
|
1094
|
+
url: string | null;
|
|
1095
|
+
variant: string | null;
|
|
1096
|
+
size: number | null;
|
|
1097
|
+
checksum: string | null;
|
|
1098
|
+
mimetype: string | null;
|
|
1099
|
+
storage: $Enums.DFW_FILE_STORAGE;
|
|
1100
|
+
expire: Date | null;
|
|
1101
|
+
metadata: runtime.JsonValue | null;
|
|
1102
|
+
idParent: string | null;
|
|
1103
|
+
idUser: string | null;
|
|
1104
|
+
createdAt: Date;
|
|
1105
|
+
updatedAt: Date;
|
|
1106
|
+
}, ExtArgs["result"]["dfw_file"]>;
|
|
1107
|
+
composites: {};
|
|
1108
|
+
};
|
|
1109
|
+
export type dfw_fileGetPayload<S extends boolean | null | undefined | dfw_fileDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$dfw_filePayload, S>;
|
|
1110
|
+
export type dfw_fileCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<dfw_fileFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
1111
|
+
select?: Dfw_fileCountAggregateInputType | true;
|
|
1112
|
+
};
|
|
1113
|
+
export interface dfw_fileDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
1114
|
+
[K: symbol]: {
|
|
1115
|
+
types: Prisma.TypeMap<ExtArgs>['model']['dfw_file'];
|
|
1116
|
+
meta: {
|
|
1117
|
+
name: 'dfw_file';
|
|
1118
|
+
};
|
|
1119
|
+
};
|
|
1120
|
+
/**
|
|
1121
|
+
* Find zero or one Dfw_file that matches the filter.
|
|
1122
|
+
* @param {dfw_fileFindUniqueArgs} args - Arguments to find a Dfw_file
|
|
1123
|
+
* @example
|
|
1124
|
+
* // Get one Dfw_file
|
|
1125
|
+
* const dfw_file = await prisma.dfw_file.findUnique({
|
|
1126
|
+
* where: {
|
|
1127
|
+
* // ... provide filter here
|
|
1128
|
+
* }
|
|
1129
|
+
* })
|
|
1130
|
+
*/
|
|
1131
|
+
findUnique<T extends dfw_fileFindUniqueArgs>(args: Prisma.SelectSubset<T, dfw_fileFindUniqueArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1132
|
+
/**
|
|
1133
|
+
* Find one Dfw_file that matches the filter or throw an error with `error.code='P2025'`
|
|
1134
|
+
* if no matches were found.
|
|
1135
|
+
* @param {dfw_fileFindUniqueOrThrowArgs} args - Arguments to find a Dfw_file
|
|
1136
|
+
* @example
|
|
1137
|
+
* // Get one Dfw_file
|
|
1138
|
+
* const dfw_file = await prisma.dfw_file.findUniqueOrThrow({
|
|
1139
|
+
* where: {
|
|
1140
|
+
* // ... provide filter here
|
|
1141
|
+
* }
|
|
1142
|
+
* })
|
|
1143
|
+
*/
|
|
1144
|
+
findUniqueOrThrow<T extends dfw_fileFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, dfw_fileFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1145
|
+
/**
|
|
1146
|
+
* Find the first Dfw_file that matches the filter.
|
|
1147
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1148
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1149
|
+
* @param {dfw_fileFindFirstArgs} args - Arguments to find a Dfw_file
|
|
1150
|
+
* @example
|
|
1151
|
+
* // Get one Dfw_file
|
|
1152
|
+
* const dfw_file = await prisma.dfw_file.findFirst({
|
|
1153
|
+
* where: {
|
|
1154
|
+
* // ... provide filter here
|
|
1155
|
+
* }
|
|
1156
|
+
* })
|
|
1157
|
+
*/
|
|
1158
|
+
findFirst<T extends dfw_fileFindFirstArgs>(args?: Prisma.SelectSubset<T, dfw_fileFindFirstArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1159
|
+
/**
|
|
1160
|
+
* Find the first Dfw_file that matches the filter or
|
|
1161
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
1162
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1163
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1164
|
+
* @param {dfw_fileFindFirstOrThrowArgs} args - Arguments to find a Dfw_file
|
|
1165
|
+
* @example
|
|
1166
|
+
* // Get one Dfw_file
|
|
1167
|
+
* const dfw_file = await prisma.dfw_file.findFirstOrThrow({
|
|
1168
|
+
* where: {
|
|
1169
|
+
* // ... provide filter here
|
|
1170
|
+
* }
|
|
1171
|
+
* })
|
|
1172
|
+
*/
|
|
1173
|
+
findFirstOrThrow<T extends dfw_fileFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, dfw_fileFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1174
|
+
/**
|
|
1175
|
+
* Find zero or more Dfw_files that matches the filter.
|
|
1176
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1177
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1178
|
+
* @param {dfw_fileFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
1179
|
+
* @example
|
|
1180
|
+
* // Get all Dfw_files
|
|
1181
|
+
* const dfw_files = await prisma.dfw_file.findMany()
|
|
1182
|
+
*
|
|
1183
|
+
* // Get first 10 Dfw_files
|
|
1184
|
+
* const dfw_files = await prisma.dfw_file.findMany({ take: 10 })
|
|
1185
|
+
*
|
|
1186
|
+
* // Only select the `id`
|
|
1187
|
+
* const dfw_fileWithIdOnly = await prisma.dfw_file.findMany({ select: { id: true } })
|
|
1188
|
+
*
|
|
1189
|
+
*/
|
|
1190
|
+
findMany<T extends dfw_fileFindManyArgs>(args?: Prisma.SelectSubset<T, dfw_fileFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
1191
|
+
/**
|
|
1192
|
+
* Create a Dfw_file.
|
|
1193
|
+
* @param {dfw_fileCreateArgs} args - Arguments to create a Dfw_file.
|
|
1194
|
+
* @example
|
|
1195
|
+
* // Create one Dfw_file
|
|
1196
|
+
* const Dfw_file = await prisma.dfw_file.create({
|
|
1197
|
+
* data: {
|
|
1198
|
+
* // ... data to create a Dfw_file
|
|
1199
|
+
* }
|
|
1200
|
+
* })
|
|
1201
|
+
*
|
|
1202
|
+
*/
|
|
1203
|
+
create<T extends dfw_fileCreateArgs>(args: Prisma.SelectSubset<T, dfw_fileCreateArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1204
|
+
/**
|
|
1205
|
+
* Create many Dfw_files.
|
|
1206
|
+
* @param {dfw_fileCreateManyArgs} args - Arguments to create many Dfw_files.
|
|
1207
|
+
* @example
|
|
1208
|
+
* // Create many Dfw_files
|
|
1209
|
+
* const dfw_file = await prisma.dfw_file.createMany({
|
|
1210
|
+
* data: [
|
|
1211
|
+
* // ... provide data here
|
|
1212
|
+
* ]
|
|
1213
|
+
* })
|
|
1214
|
+
*
|
|
1215
|
+
*/
|
|
1216
|
+
createMany<T extends dfw_fileCreateManyArgs>(args?: Prisma.SelectSubset<T, dfw_fileCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
1217
|
+
/**
|
|
1218
|
+
* Create many Dfw_files and returns the data saved in the database.
|
|
1219
|
+
* @param {dfw_fileCreateManyAndReturnArgs} args - Arguments to create many Dfw_files.
|
|
1220
|
+
* @example
|
|
1221
|
+
* // Create many Dfw_files
|
|
1222
|
+
* const dfw_file = await prisma.dfw_file.createManyAndReturn({
|
|
1223
|
+
* data: [
|
|
1224
|
+
* // ... provide data here
|
|
1225
|
+
* ]
|
|
1226
|
+
* })
|
|
1227
|
+
*
|
|
1228
|
+
* // Create many Dfw_files and only return the `id`
|
|
1229
|
+
* const dfw_fileWithIdOnly = await prisma.dfw_file.createManyAndReturn({
|
|
1230
|
+
* select: { id: true },
|
|
1231
|
+
* data: [
|
|
1232
|
+
* // ... provide data here
|
|
1233
|
+
* ]
|
|
1234
|
+
* })
|
|
1235
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1236
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1237
|
+
*
|
|
1238
|
+
*/
|
|
1239
|
+
createManyAndReturn<T extends dfw_fileCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, dfw_fileCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
1240
|
+
/**
|
|
1241
|
+
* Delete a Dfw_file.
|
|
1242
|
+
* @param {dfw_fileDeleteArgs} args - Arguments to delete one Dfw_file.
|
|
1243
|
+
* @example
|
|
1244
|
+
* // Delete one Dfw_file
|
|
1245
|
+
* const Dfw_file = await prisma.dfw_file.delete({
|
|
1246
|
+
* where: {
|
|
1247
|
+
* // ... filter to delete one Dfw_file
|
|
1248
|
+
* }
|
|
1249
|
+
* })
|
|
1250
|
+
*
|
|
1251
|
+
*/
|
|
1252
|
+
delete<T extends dfw_fileDeleteArgs>(args: Prisma.SelectSubset<T, dfw_fileDeleteArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1253
|
+
/**
|
|
1254
|
+
* Update one Dfw_file.
|
|
1255
|
+
* @param {dfw_fileUpdateArgs} args - Arguments to update one Dfw_file.
|
|
1256
|
+
* @example
|
|
1257
|
+
* // Update one Dfw_file
|
|
1258
|
+
* const dfw_file = await prisma.dfw_file.update({
|
|
1259
|
+
* where: {
|
|
1260
|
+
* // ... provide filter here
|
|
1261
|
+
* },
|
|
1262
|
+
* data: {
|
|
1263
|
+
* // ... provide data here
|
|
1264
|
+
* }
|
|
1265
|
+
* })
|
|
1266
|
+
*
|
|
1267
|
+
*/
|
|
1268
|
+
update<T extends dfw_fileUpdateArgs>(args: Prisma.SelectSubset<T, dfw_fileUpdateArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1269
|
+
/**
|
|
1270
|
+
* Delete zero or more Dfw_files.
|
|
1271
|
+
* @param {dfw_fileDeleteManyArgs} args - Arguments to filter Dfw_files to delete.
|
|
1272
|
+
* @example
|
|
1273
|
+
* // Delete a few Dfw_files
|
|
1274
|
+
* const { count } = await prisma.dfw_file.deleteMany({
|
|
1275
|
+
* where: {
|
|
1276
|
+
* // ... provide filter here
|
|
1277
|
+
* }
|
|
1278
|
+
* })
|
|
1279
|
+
*
|
|
1280
|
+
*/
|
|
1281
|
+
deleteMany<T extends dfw_fileDeleteManyArgs>(args?: Prisma.SelectSubset<T, dfw_fileDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
1282
|
+
/**
|
|
1283
|
+
* Update zero or more Dfw_files.
|
|
1284
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1285
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1286
|
+
* @param {dfw_fileUpdateManyArgs} args - Arguments to update one or more rows.
|
|
1287
|
+
* @example
|
|
1288
|
+
* // Update many Dfw_files
|
|
1289
|
+
* const dfw_file = await prisma.dfw_file.updateMany({
|
|
1290
|
+
* where: {
|
|
1291
|
+
* // ... provide filter here
|
|
1292
|
+
* },
|
|
1293
|
+
* data: {
|
|
1294
|
+
* // ... provide data here
|
|
1295
|
+
* }
|
|
1296
|
+
* })
|
|
1297
|
+
*
|
|
1298
|
+
*/
|
|
1299
|
+
updateMany<T extends dfw_fileUpdateManyArgs>(args: Prisma.SelectSubset<T, dfw_fileUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
1300
|
+
/**
|
|
1301
|
+
* Update zero or more Dfw_files and returns the data updated in the database.
|
|
1302
|
+
* @param {dfw_fileUpdateManyAndReturnArgs} args - Arguments to update many Dfw_files.
|
|
1303
|
+
* @example
|
|
1304
|
+
* // Update many Dfw_files
|
|
1305
|
+
* const dfw_file = await prisma.dfw_file.updateManyAndReturn({
|
|
1306
|
+
* where: {
|
|
1307
|
+
* // ... provide filter here
|
|
1308
|
+
* },
|
|
1309
|
+
* data: [
|
|
1310
|
+
* // ... provide data here
|
|
1311
|
+
* ]
|
|
1312
|
+
* })
|
|
1313
|
+
*
|
|
1314
|
+
* // Update zero or more Dfw_files and only return the `id`
|
|
1315
|
+
* const dfw_fileWithIdOnly = await prisma.dfw_file.updateManyAndReturn({
|
|
1316
|
+
* select: { id: true },
|
|
1317
|
+
* where: {
|
|
1318
|
+
* // ... provide filter here
|
|
1319
|
+
* },
|
|
1320
|
+
* data: [
|
|
1321
|
+
* // ... provide data here
|
|
1322
|
+
* ]
|
|
1323
|
+
* })
|
|
1324
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1325
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1326
|
+
*
|
|
1327
|
+
*/
|
|
1328
|
+
updateManyAndReturn<T extends dfw_fileUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, dfw_fileUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
1329
|
+
/**
|
|
1330
|
+
* Create or update one Dfw_file.
|
|
1331
|
+
* @param {dfw_fileUpsertArgs} args - Arguments to update or create a Dfw_file.
|
|
1332
|
+
* @example
|
|
1333
|
+
* // Update or create a Dfw_file
|
|
1334
|
+
* const dfw_file = await prisma.dfw_file.upsert({
|
|
1335
|
+
* create: {
|
|
1336
|
+
* // ... data to create a Dfw_file
|
|
1337
|
+
* },
|
|
1338
|
+
* update: {
|
|
1339
|
+
* // ... in case it already exists, update
|
|
1340
|
+
* },
|
|
1341
|
+
* where: {
|
|
1342
|
+
* // ... the filter for the Dfw_file we want to update
|
|
1343
|
+
* }
|
|
1344
|
+
* })
|
|
1345
|
+
*/
|
|
1346
|
+
upsert<T extends dfw_fileUpsertArgs>(args: Prisma.SelectSubset<T, dfw_fileUpsertArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1347
|
+
/**
|
|
1348
|
+
* Count the number of Dfw_files.
|
|
1349
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1350
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1351
|
+
* @param {dfw_fileCountArgs} args - Arguments to filter Dfw_files to count.
|
|
1352
|
+
* @example
|
|
1353
|
+
* // Count the number of Dfw_files
|
|
1354
|
+
* const count = await prisma.dfw_file.count({
|
|
1355
|
+
* where: {
|
|
1356
|
+
* // ... the filter for the Dfw_files we want to count
|
|
1357
|
+
* }
|
|
1358
|
+
* })
|
|
1359
|
+
**/
|
|
1360
|
+
count<T extends dfw_fileCountArgs>(args?: Prisma.Subset<T, dfw_fileCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], Dfw_fileCountAggregateOutputType> : number>;
|
|
1361
|
+
/**
|
|
1362
|
+
* Allows you to perform aggregations operations on a Dfw_file.
|
|
1363
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1364
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1365
|
+
* @param {Dfw_fileAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
1366
|
+
* @example
|
|
1367
|
+
* // Ordered by age ascending
|
|
1368
|
+
* // Where email contains prisma.io
|
|
1369
|
+
* // Limited to the 10 users
|
|
1370
|
+
* const aggregations = await prisma.user.aggregate({
|
|
1371
|
+
* _avg: {
|
|
1372
|
+
* age: true,
|
|
1373
|
+
* },
|
|
1374
|
+
* where: {
|
|
1375
|
+
* email: {
|
|
1376
|
+
* contains: "prisma.io",
|
|
1377
|
+
* },
|
|
1378
|
+
* },
|
|
1379
|
+
* orderBy: {
|
|
1380
|
+
* age: "asc",
|
|
1381
|
+
* },
|
|
1382
|
+
* take: 10,
|
|
1383
|
+
* })
|
|
1384
|
+
**/
|
|
1385
|
+
aggregate<T extends Dfw_fileAggregateArgs>(args: Prisma.Subset<T, Dfw_fileAggregateArgs>): Prisma.PrismaPromise<GetDfw_fileAggregateType<T>>;
|
|
1386
|
+
/**
|
|
1387
|
+
* Group by Dfw_file.
|
|
1388
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1389
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1390
|
+
* @param {dfw_fileGroupByArgs} args - Group by arguments.
|
|
1391
|
+
* @example
|
|
1392
|
+
* // Group by city, order by createdAt, get count
|
|
1393
|
+
* const result = await prisma.user.groupBy({
|
|
1394
|
+
* by: ['city', 'createdAt'],
|
|
1395
|
+
* orderBy: {
|
|
1396
|
+
* createdAt: true
|
|
1397
|
+
* },
|
|
1398
|
+
* _count: {
|
|
1399
|
+
* _all: true
|
|
1400
|
+
* },
|
|
1401
|
+
* })
|
|
1402
|
+
*
|
|
1403
|
+
**/
|
|
1404
|
+
groupBy<T extends dfw_fileGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
1405
|
+
orderBy: dfw_fileGroupByArgs['orderBy'];
|
|
1406
|
+
} : {
|
|
1407
|
+
orderBy?: dfw_fileGroupByArgs['orderBy'];
|
|
1408
|
+
}, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
|
|
1409
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
1410
|
+
Error,
|
|
1411
|
+
'Field ',
|
|
1412
|
+
P,
|
|
1413
|
+
` in "having" needs to be provided in "by"`
|
|
1414
|
+
];
|
|
1415
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
1416
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1417
|
+
}[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
1418
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1419
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
1420
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1421
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, dfw_fileGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetDfw_fileGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
1422
|
+
/**
|
|
1423
|
+
* Fields of the dfw_file model
|
|
1424
|
+
*/
|
|
1425
|
+
readonly fields: dfw_fileFieldRefs;
|
|
1426
|
+
}
|
|
1427
|
+
/**
|
|
1428
|
+
* The delegate class that acts as a "Promise-like" for dfw_file.
|
|
1429
|
+
* Why is this prefixed with `Prisma__`?
|
|
1430
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
1431
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
1432
|
+
*/
|
|
1433
|
+
export interface Prisma__dfw_fileClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1434
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1435
|
+
user<T extends Prisma.dfw_file$userArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_file$userArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1436
|
+
parent<T extends Prisma.dfw_file$parentArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_file$parentArgs<ExtArgs>>): Prisma.Prisma__dfw_fileClient<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1437
|
+
children<T extends Prisma.dfw_file$childrenArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_file$childrenArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1438
|
+
/**
|
|
1439
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1440
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
1441
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1442
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
1443
|
+
*/
|
|
1444
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
1445
|
+
/**
|
|
1446
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
1447
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1448
|
+
* @returns A Promise for the completion of the callback.
|
|
1449
|
+
*/
|
|
1450
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
1451
|
+
/**
|
|
1452
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
1453
|
+
* resolved value cannot be modified from the callback.
|
|
1454
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
1455
|
+
* @returns A Promise for the completion of the callback.
|
|
1456
|
+
*/
|
|
1457
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* Fields of the dfw_file model
|
|
1461
|
+
*/
|
|
1462
|
+
export interface dfw_fileFieldRefs {
|
|
1463
|
+
readonly id: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1464
|
+
readonly name: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1465
|
+
readonly path: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1466
|
+
readonly url: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1467
|
+
readonly variant: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1468
|
+
readonly size: Prisma.FieldRef<"dfw_file", 'Int'>;
|
|
1469
|
+
readonly checksum: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1470
|
+
readonly mimetype: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1471
|
+
readonly storage: Prisma.FieldRef<"dfw_file", 'DFW_FILE_STORAGE'>;
|
|
1472
|
+
readonly expire: Prisma.FieldRef<"dfw_file", 'DateTime'>;
|
|
1473
|
+
readonly metadata: Prisma.FieldRef<"dfw_file", 'Json'>;
|
|
1474
|
+
readonly idParent: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1475
|
+
readonly idUser: Prisma.FieldRef<"dfw_file", 'String'>;
|
|
1476
|
+
readonly createdAt: Prisma.FieldRef<"dfw_file", 'DateTime'>;
|
|
1477
|
+
readonly updatedAt: Prisma.FieldRef<"dfw_file", 'DateTime'>;
|
|
1478
|
+
}
|
|
1479
|
+
/**
|
|
1480
|
+
* dfw_file findUnique
|
|
1481
|
+
*/
|
|
1482
|
+
export type dfw_fileFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1483
|
+
/**
|
|
1484
|
+
* Select specific fields to fetch from the dfw_file
|
|
1485
|
+
*/
|
|
1486
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1487
|
+
/**
|
|
1488
|
+
* Omit specific fields from the dfw_file
|
|
1489
|
+
*/
|
|
1490
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1491
|
+
/**
|
|
1492
|
+
* Choose, which related nodes to fetch as well
|
|
1493
|
+
*/
|
|
1494
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1495
|
+
/**
|
|
1496
|
+
* Filter, which dfw_file to fetch.
|
|
1497
|
+
*/
|
|
1498
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
1499
|
+
};
|
|
1500
|
+
/**
|
|
1501
|
+
* dfw_file findUniqueOrThrow
|
|
1502
|
+
*/
|
|
1503
|
+
export type dfw_fileFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1504
|
+
/**
|
|
1505
|
+
* Select specific fields to fetch from the dfw_file
|
|
1506
|
+
*/
|
|
1507
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1508
|
+
/**
|
|
1509
|
+
* Omit specific fields from the dfw_file
|
|
1510
|
+
*/
|
|
1511
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1512
|
+
/**
|
|
1513
|
+
* Choose, which related nodes to fetch as well
|
|
1514
|
+
*/
|
|
1515
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1516
|
+
/**
|
|
1517
|
+
* Filter, which dfw_file to fetch.
|
|
1518
|
+
*/
|
|
1519
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
1520
|
+
};
|
|
1521
|
+
/**
|
|
1522
|
+
* dfw_file findFirst
|
|
1523
|
+
*/
|
|
1524
|
+
export type dfw_fileFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1525
|
+
/**
|
|
1526
|
+
* Select specific fields to fetch from the dfw_file
|
|
1527
|
+
*/
|
|
1528
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1529
|
+
/**
|
|
1530
|
+
* Omit specific fields from the dfw_file
|
|
1531
|
+
*/
|
|
1532
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1533
|
+
/**
|
|
1534
|
+
* Choose, which related nodes to fetch as well
|
|
1535
|
+
*/
|
|
1536
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1537
|
+
/**
|
|
1538
|
+
* Filter, which dfw_file to fetch.
|
|
1539
|
+
*/
|
|
1540
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1541
|
+
/**
|
|
1542
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1543
|
+
*
|
|
1544
|
+
* Determine the order of dfw_files to fetch.
|
|
1545
|
+
*/
|
|
1546
|
+
orderBy?: Prisma.dfw_fileOrderByWithRelationInput | Prisma.dfw_fileOrderByWithRelationInput[];
|
|
1547
|
+
/**
|
|
1548
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1549
|
+
*
|
|
1550
|
+
* Sets the position for searching for dfw_files.
|
|
1551
|
+
*/
|
|
1552
|
+
cursor?: Prisma.dfw_fileWhereUniqueInput;
|
|
1553
|
+
/**
|
|
1554
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1555
|
+
*
|
|
1556
|
+
* Take `±n` dfw_files from the position of the cursor.
|
|
1557
|
+
*/
|
|
1558
|
+
take?: number;
|
|
1559
|
+
/**
|
|
1560
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1561
|
+
*
|
|
1562
|
+
* Skip the first `n` dfw_files.
|
|
1563
|
+
*/
|
|
1564
|
+
skip?: number;
|
|
1565
|
+
/**
|
|
1566
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1567
|
+
*
|
|
1568
|
+
* Filter by unique combinations of dfw_files.
|
|
1569
|
+
*/
|
|
1570
|
+
distinct?: Prisma.Dfw_fileScalarFieldEnum | Prisma.Dfw_fileScalarFieldEnum[];
|
|
1571
|
+
};
|
|
1572
|
+
/**
|
|
1573
|
+
* dfw_file findFirstOrThrow
|
|
1574
|
+
*/
|
|
1575
|
+
export type dfw_fileFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1576
|
+
/**
|
|
1577
|
+
* Select specific fields to fetch from the dfw_file
|
|
1578
|
+
*/
|
|
1579
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1580
|
+
/**
|
|
1581
|
+
* Omit specific fields from the dfw_file
|
|
1582
|
+
*/
|
|
1583
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1584
|
+
/**
|
|
1585
|
+
* Choose, which related nodes to fetch as well
|
|
1586
|
+
*/
|
|
1587
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1588
|
+
/**
|
|
1589
|
+
* Filter, which dfw_file to fetch.
|
|
1590
|
+
*/
|
|
1591
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1592
|
+
/**
|
|
1593
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1594
|
+
*
|
|
1595
|
+
* Determine the order of dfw_files to fetch.
|
|
1596
|
+
*/
|
|
1597
|
+
orderBy?: Prisma.dfw_fileOrderByWithRelationInput | Prisma.dfw_fileOrderByWithRelationInput[];
|
|
1598
|
+
/**
|
|
1599
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1600
|
+
*
|
|
1601
|
+
* Sets the position for searching for dfw_files.
|
|
1602
|
+
*/
|
|
1603
|
+
cursor?: Prisma.dfw_fileWhereUniqueInput;
|
|
1604
|
+
/**
|
|
1605
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1606
|
+
*
|
|
1607
|
+
* Take `±n` dfw_files from the position of the cursor.
|
|
1608
|
+
*/
|
|
1609
|
+
take?: number;
|
|
1610
|
+
/**
|
|
1611
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1612
|
+
*
|
|
1613
|
+
* Skip the first `n` dfw_files.
|
|
1614
|
+
*/
|
|
1615
|
+
skip?: number;
|
|
1616
|
+
/**
|
|
1617
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1618
|
+
*
|
|
1619
|
+
* Filter by unique combinations of dfw_files.
|
|
1620
|
+
*/
|
|
1621
|
+
distinct?: Prisma.Dfw_fileScalarFieldEnum | Prisma.Dfw_fileScalarFieldEnum[];
|
|
1622
|
+
};
|
|
1623
|
+
/**
|
|
1624
|
+
* dfw_file findMany
|
|
1625
|
+
*/
|
|
1626
|
+
export type dfw_fileFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1627
|
+
/**
|
|
1628
|
+
* Select specific fields to fetch from the dfw_file
|
|
1629
|
+
*/
|
|
1630
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1631
|
+
/**
|
|
1632
|
+
* Omit specific fields from the dfw_file
|
|
1633
|
+
*/
|
|
1634
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1635
|
+
/**
|
|
1636
|
+
* Choose, which related nodes to fetch as well
|
|
1637
|
+
*/
|
|
1638
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1639
|
+
/**
|
|
1640
|
+
* Filter, which dfw_files to fetch.
|
|
1641
|
+
*/
|
|
1642
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1643
|
+
/**
|
|
1644
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1645
|
+
*
|
|
1646
|
+
* Determine the order of dfw_files to fetch.
|
|
1647
|
+
*/
|
|
1648
|
+
orderBy?: Prisma.dfw_fileOrderByWithRelationInput | Prisma.dfw_fileOrderByWithRelationInput[];
|
|
1649
|
+
/**
|
|
1650
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1651
|
+
*
|
|
1652
|
+
* Sets the position for listing dfw_files.
|
|
1653
|
+
*/
|
|
1654
|
+
cursor?: Prisma.dfw_fileWhereUniqueInput;
|
|
1655
|
+
/**
|
|
1656
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1657
|
+
*
|
|
1658
|
+
* Take `±n` dfw_files from the position of the cursor.
|
|
1659
|
+
*/
|
|
1660
|
+
take?: number;
|
|
1661
|
+
/**
|
|
1662
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1663
|
+
*
|
|
1664
|
+
* Skip the first `n` dfw_files.
|
|
1665
|
+
*/
|
|
1666
|
+
skip?: number;
|
|
1667
|
+
distinct?: Prisma.Dfw_fileScalarFieldEnum | Prisma.Dfw_fileScalarFieldEnum[];
|
|
1668
|
+
};
|
|
1669
|
+
/**
|
|
1670
|
+
* dfw_file create
|
|
1671
|
+
*/
|
|
1672
|
+
export type dfw_fileCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1673
|
+
/**
|
|
1674
|
+
* Select specific fields to fetch from the dfw_file
|
|
1675
|
+
*/
|
|
1676
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1677
|
+
/**
|
|
1678
|
+
* Omit specific fields from the dfw_file
|
|
1679
|
+
*/
|
|
1680
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1681
|
+
/**
|
|
1682
|
+
* Choose, which related nodes to fetch as well
|
|
1683
|
+
*/
|
|
1684
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1685
|
+
/**
|
|
1686
|
+
* The data needed to create a dfw_file.
|
|
1687
|
+
*/
|
|
1688
|
+
data: Prisma.XOR<Prisma.dfw_fileCreateInput, Prisma.dfw_fileUncheckedCreateInput>;
|
|
1689
|
+
};
|
|
1690
|
+
/**
|
|
1691
|
+
* dfw_file createMany
|
|
1692
|
+
*/
|
|
1693
|
+
export type dfw_fileCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1694
|
+
/**
|
|
1695
|
+
* The data used to create many dfw_files.
|
|
1696
|
+
*/
|
|
1697
|
+
data: Prisma.dfw_fileCreateManyInput | Prisma.dfw_fileCreateManyInput[];
|
|
1698
|
+
skipDuplicates?: boolean;
|
|
1699
|
+
};
|
|
1700
|
+
/**
|
|
1701
|
+
* dfw_file createManyAndReturn
|
|
1702
|
+
*/
|
|
1703
|
+
export type dfw_fileCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1704
|
+
/**
|
|
1705
|
+
* Select specific fields to fetch from the dfw_file
|
|
1706
|
+
*/
|
|
1707
|
+
select?: Prisma.dfw_fileSelectCreateManyAndReturn<ExtArgs> | null;
|
|
1708
|
+
/**
|
|
1709
|
+
* Omit specific fields from the dfw_file
|
|
1710
|
+
*/
|
|
1711
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1712
|
+
/**
|
|
1713
|
+
* The data used to create many dfw_files.
|
|
1714
|
+
*/
|
|
1715
|
+
data: Prisma.dfw_fileCreateManyInput | Prisma.dfw_fileCreateManyInput[];
|
|
1716
|
+
skipDuplicates?: boolean;
|
|
1717
|
+
/**
|
|
1718
|
+
* Choose, which related nodes to fetch as well
|
|
1719
|
+
*/
|
|
1720
|
+
include?: Prisma.dfw_fileIncludeCreateManyAndReturn<ExtArgs> | null;
|
|
1721
|
+
};
|
|
1722
|
+
/**
|
|
1723
|
+
* dfw_file update
|
|
1724
|
+
*/
|
|
1725
|
+
export type dfw_fileUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1726
|
+
/**
|
|
1727
|
+
* Select specific fields to fetch from the dfw_file
|
|
1728
|
+
*/
|
|
1729
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1730
|
+
/**
|
|
1731
|
+
* Omit specific fields from the dfw_file
|
|
1732
|
+
*/
|
|
1733
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1734
|
+
/**
|
|
1735
|
+
* Choose, which related nodes to fetch as well
|
|
1736
|
+
*/
|
|
1737
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1738
|
+
/**
|
|
1739
|
+
* The data needed to update a dfw_file.
|
|
1740
|
+
*/
|
|
1741
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateInput, Prisma.dfw_fileUncheckedUpdateInput>;
|
|
1742
|
+
/**
|
|
1743
|
+
* Choose, which dfw_file to update.
|
|
1744
|
+
*/
|
|
1745
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
1746
|
+
};
|
|
1747
|
+
/**
|
|
1748
|
+
* dfw_file updateMany
|
|
1749
|
+
*/
|
|
1750
|
+
export type dfw_fileUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1751
|
+
/**
|
|
1752
|
+
* The data used to update dfw_files.
|
|
1753
|
+
*/
|
|
1754
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateManyMutationInput, Prisma.dfw_fileUncheckedUpdateManyInput>;
|
|
1755
|
+
/**
|
|
1756
|
+
* Filter which dfw_files to update
|
|
1757
|
+
*/
|
|
1758
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1759
|
+
/**
|
|
1760
|
+
* Limit how many dfw_files to update.
|
|
1761
|
+
*/
|
|
1762
|
+
limit?: number;
|
|
1763
|
+
};
|
|
1764
|
+
/**
|
|
1765
|
+
* dfw_file updateManyAndReturn
|
|
1766
|
+
*/
|
|
1767
|
+
export type dfw_fileUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1768
|
+
/**
|
|
1769
|
+
* Select specific fields to fetch from the dfw_file
|
|
1770
|
+
*/
|
|
1771
|
+
select?: Prisma.dfw_fileSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
1772
|
+
/**
|
|
1773
|
+
* Omit specific fields from the dfw_file
|
|
1774
|
+
*/
|
|
1775
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1776
|
+
/**
|
|
1777
|
+
* The data used to update dfw_files.
|
|
1778
|
+
*/
|
|
1779
|
+
data: Prisma.XOR<Prisma.dfw_fileUpdateManyMutationInput, Prisma.dfw_fileUncheckedUpdateManyInput>;
|
|
1780
|
+
/**
|
|
1781
|
+
* Filter which dfw_files to update
|
|
1782
|
+
*/
|
|
1783
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1784
|
+
/**
|
|
1785
|
+
* Limit how many dfw_files to update.
|
|
1786
|
+
*/
|
|
1787
|
+
limit?: number;
|
|
1788
|
+
/**
|
|
1789
|
+
* Choose, which related nodes to fetch as well
|
|
1790
|
+
*/
|
|
1791
|
+
include?: Prisma.dfw_fileIncludeUpdateManyAndReturn<ExtArgs> | null;
|
|
1792
|
+
};
|
|
1793
|
+
/**
|
|
1794
|
+
* dfw_file upsert
|
|
1795
|
+
*/
|
|
1796
|
+
export type dfw_fileUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1797
|
+
/**
|
|
1798
|
+
* Select specific fields to fetch from the dfw_file
|
|
1799
|
+
*/
|
|
1800
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1801
|
+
/**
|
|
1802
|
+
* Omit specific fields from the dfw_file
|
|
1803
|
+
*/
|
|
1804
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1805
|
+
/**
|
|
1806
|
+
* Choose, which related nodes to fetch as well
|
|
1807
|
+
*/
|
|
1808
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1809
|
+
/**
|
|
1810
|
+
* The filter to search for the dfw_file to update in case it exists.
|
|
1811
|
+
*/
|
|
1812
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
1813
|
+
/**
|
|
1814
|
+
* In case the dfw_file found by the `where` argument doesn't exist, create a new dfw_file with this data.
|
|
1815
|
+
*/
|
|
1816
|
+
create: Prisma.XOR<Prisma.dfw_fileCreateInput, Prisma.dfw_fileUncheckedCreateInput>;
|
|
1817
|
+
/**
|
|
1818
|
+
* In case the dfw_file was found with the provided `where` argument, update it with this data.
|
|
1819
|
+
*/
|
|
1820
|
+
update: Prisma.XOR<Prisma.dfw_fileUpdateInput, Prisma.dfw_fileUncheckedUpdateInput>;
|
|
1821
|
+
};
|
|
1822
|
+
/**
|
|
1823
|
+
* dfw_file delete
|
|
1824
|
+
*/
|
|
1825
|
+
export type dfw_fileDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1826
|
+
/**
|
|
1827
|
+
* Select specific fields to fetch from the dfw_file
|
|
1828
|
+
*/
|
|
1829
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1830
|
+
/**
|
|
1831
|
+
* Omit specific fields from the dfw_file
|
|
1832
|
+
*/
|
|
1833
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1834
|
+
/**
|
|
1835
|
+
* Choose, which related nodes to fetch as well
|
|
1836
|
+
*/
|
|
1837
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1838
|
+
/**
|
|
1839
|
+
* Filter which dfw_file to delete.
|
|
1840
|
+
*/
|
|
1841
|
+
where: Prisma.dfw_fileWhereUniqueInput;
|
|
1842
|
+
};
|
|
1843
|
+
/**
|
|
1844
|
+
* dfw_file deleteMany
|
|
1845
|
+
*/
|
|
1846
|
+
export type dfw_fileDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1847
|
+
/**
|
|
1848
|
+
* Filter which dfw_files to delete
|
|
1849
|
+
*/
|
|
1850
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1851
|
+
/**
|
|
1852
|
+
* Limit how many dfw_files to delete.
|
|
1853
|
+
*/
|
|
1854
|
+
limit?: number;
|
|
1855
|
+
};
|
|
1856
|
+
/**
|
|
1857
|
+
* dfw_file.user
|
|
1858
|
+
*/
|
|
1859
|
+
export type dfw_file$userArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1860
|
+
/**
|
|
1861
|
+
* Select specific fields to fetch from the dfw_user
|
|
1862
|
+
*/
|
|
1863
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1864
|
+
/**
|
|
1865
|
+
* Omit specific fields from the dfw_user
|
|
1866
|
+
*/
|
|
1867
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1868
|
+
/**
|
|
1869
|
+
* Choose, which related nodes to fetch as well
|
|
1870
|
+
*/
|
|
1871
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1872
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1873
|
+
};
|
|
1874
|
+
/**
|
|
1875
|
+
* dfw_file.parent
|
|
1876
|
+
*/
|
|
1877
|
+
export type dfw_file$parentArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1878
|
+
/**
|
|
1879
|
+
* Select specific fields to fetch from the dfw_file
|
|
1880
|
+
*/
|
|
1881
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1882
|
+
/**
|
|
1883
|
+
* Omit specific fields from the dfw_file
|
|
1884
|
+
*/
|
|
1885
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1886
|
+
/**
|
|
1887
|
+
* Choose, which related nodes to fetch as well
|
|
1888
|
+
*/
|
|
1889
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1890
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1891
|
+
};
|
|
1892
|
+
/**
|
|
1893
|
+
* dfw_file.children
|
|
1894
|
+
*/
|
|
1895
|
+
export type dfw_file$childrenArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1896
|
+
/**
|
|
1897
|
+
* Select specific fields to fetch from the dfw_file
|
|
1898
|
+
*/
|
|
1899
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1900
|
+
/**
|
|
1901
|
+
* Omit specific fields from the dfw_file
|
|
1902
|
+
*/
|
|
1903
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1904
|
+
/**
|
|
1905
|
+
* Choose, which related nodes to fetch as well
|
|
1906
|
+
*/
|
|
1907
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1908
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1909
|
+
orderBy?: Prisma.dfw_fileOrderByWithRelationInput | Prisma.dfw_fileOrderByWithRelationInput[];
|
|
1910
|
+
cursor?: Prisma.dfw_fileWhereUniqueInput;
|
|
1911
|
+
take?: number;
|
|
1912
|
+
skip?: number;
|
|
1913
|
+
distinct?: Prisma.Dfw_fileScalarFieldEnum | Prisma.Dfw_fileScalarFieldEnum[];
|
|
1914
|
+
};
|
|
1915
|
+
/**
|
|
1916
|
+
* dfw_file without action
|
|
1917
|
+
*/
|
|
1918
|
+
export type dfw_fileDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1919
|
+
/**
|
|
1920
|
+
* Select specific fields to fetch from the dfw_file
|
|
1921
|
+
*/
|
|
1922
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1923
|
+
/**
|
|
1924
|
+
* Omit specific fields from the dfw_file
|
|
1925
|
+
*/
|
|
1926
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1927
|
+
/**
|
|
1928
|
+
* Choose, which related nodes to fetch as well
|
|
1929
|
+
*/
|
|
1930
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1931
|
+
};
|
|
1932
|
+
export {};
|
|
1933
|
+
//# sourceMappingURL=dfw_file.d.ts.map
|