@scefira/dfw 1.3.2 → 1.4.1
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 +3 -1
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +3 -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 +12 -47
- 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 +7 -13
- 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 +3 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +3 -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 +6 -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 +7 -13
- 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,1518 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../internal/prismaNamespace";
|
|
3
|
+
/**
|
|
4
|
+
* Model dfw_user
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export type dfw_userModel = runtime.Types.Result.DefaultSelection<Prisma.$dfw_userPayload>;
|
|
8
|
+
export type AggregateDfw_user = {
|
|
9
|
+
_count: Dfw_userCountAggregateOutputType | null;
|
|
10
|
+
_min: Dfw_userMinAggregateOutputType | null;
|
|
11
|
+
_max: Dfw_userMaxAggregateOutputType | null;
|
|
12
|
+
};
|
|
13
|
+
export type Dfw_userMinAggregateOutputType = {
|
|
14
|
+
id: string | null;
|
|
15
|
+
name: string | null;
|
|
16
|
+
email: string | null;
|
|
17
|
+
displayName: string | null;
|
|
18
|
+
encodedKey: string | null;
|
|
19
|
+
createdAt: Date | null;
|
|
20
|
+
updatedAt: Date | null;
|
|
21
|
+
};
|
|
22
|
+
export type Dfw_userMaxAggregateOutputType = {
|
|
23
|
+
id: string | null;
|
|
24
|
+
name: string | null;
|
|
25
|
+
email: string | null;
|
|
26
|
+
displayName: string | null;
|
|
27
|
+
encodedKey: string | null;
|
|
28
|
+
createdAt: Date | null;
|
|
29
|
+
updatedAt: Date | null;
|
|
30
|
+
};
|
|
31
|
+
export type Dfw_userCountAggregateOutputType = {
|
|
32
|
+
id: number;
|
|
33
|
+
name: number;
|
|
34
|
+
email: number;
|
|
35
|
+
displayName: number;
|
|
36
|
+
encodedKey: number;
|
|
37
|
+
createdAt: number;
|
|
38
|
+
updatedAt: number;
|
|
39
|
+
_all: number;
|
|
40
|
+
};
|
|
41
|
+
export type Dfw_userMinAggregateInputType = {
|
|
42
|
+
id?: true;
|
|
43
|
+
name?: true;
|
|
44
|
+
email?: true;
|
|
45
|
+
displayName?: true;
|
|
46
|
+
encodedKey?: true;
|
|
47
|
+
createdAt?: true;
|
|
48
|
+
updatedAt?: true;
|
|
49
|
+
};
|
|
50
|
+
export type Dfw_userMaxAggregateInputType = {
|
|
51
|
+
id?: true;
|
|
52
|
+
name?: true;
|
|
53
|
+
email?: true;
|
|
54
|
+
displayName?: true;
|
|
55
|
+
encodedKey?: true;
|
|
56
|
+
createdAt?: true;
|
|
57
|
+
updatedAt?: true;
|
|
58
|
+
};
|
|
59
|
+
export type Dfw_userCountAggregateInputType = {
|
|
60
|
+
id?: true;
|
|
61
|
+
name?: true;
|
|
62
|
+
email?: true;
|
|
63
|
+
displayName?: true;
|
|
64
|
+
encodedKey?: true;
|
|
65
|
+
createdAt?: true;
|
|
66
|
+
updatedAt?: true;
|
|
67
|
+
_all?: true;
|
|
68
|
+
};
|
|
69
|
+
export type Dfw_userAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
70
|
+
/**
|
|
71
|
+
* Filter which dfw_user to aggregate.
|
|
72
|
+
*/
|
|
73
|
+
where?: Prisma.dfw_userWhereInput;
|
|
74
|
+
/**
|
|
75
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
76
|
+
*
|
|
77
|
+
* Determine the order of dfw_users to fetch.
|
|
78
|
+
*/
|
|
79
|
+
orderBy?: Prisma.dfw_userOrderByWithRelationInput | Prisma.dfw_userOrderByWithRelationInput[];
|
|
80
|
+
/**
|
|
81
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
82
|
+
*
|
|
83
|
+
* Sets the start position
|
|
84
|
+
*/
|
|
85
|
+
cursor?: Prisma.dfw_userWhereUniqueInput;
|
|
86
|
+
/**
|
|
87
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
88
|
+
*
|
|
89
|
+
* Take `±n` dfw_users from the position of the cursor.
|
|
90
|
+
*/
|
|
91
|
+
take?: number;
|
|
92
|
+
/**
|
|
93
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
94
|
+
*
|
|
95
|
+
* Skip the first `n` dfw_users.
|
|
96
|
+
*/
|
|
97
|
+
skip?: number;
|
|
98
|
+
/**
|
|
99
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
100
|
+
*
|
|
101
|
+
* Count returned dfw_users
|
|
102
|
+
**/
|
|
103
|
+
_count?: true | Dfw_userCountAggregateInputType;
|
|
104
|
+
/**
|
|
105
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
106
|
+
*
|
|
107
|
+
* Select which fields to find the minimum value
|
|
108
|
+
**/
|
|
109
|
+
_min?: Dfw_userMinAggregateInputType;
|
|
110
|
+
/**
|
|
111
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
112
|
+
*
|
|
113
|
+
* Select which fields to find the maximum value
|
|
114
|
+
**/
|
|
115
|
+
_max?: Dfw_userMaxAggregateInputType;
|
|
116
|
+
};
|
|
117
|
+
export type GetDfw_userAggregateType<T extends Dfw_userAggregateArgs> = {
|
|
118
|
+
[P in keyof T & keyof AggregateDfw_user]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateDfw_user[P]> : Prisma.GetScalarType<T[P], AggregateDfw_user[P]>;
|
|
119
|
+
};
|
|
120
|
+
export type dfw_userGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
121
|
+
where?: Prisma.dfw_userWhereInput;
|
|
122
|
+
orderBy?: Prisma.dfw_userOrderByWithAggregationInput | Prisma.dfw_userOrderByWithAggregationInput[];
|
|
123
|
+
by: Prisma.Dfw_userScalarFieldEnum[] | Prisma.Dfw_userScalarFieldEnum;
|
|
124
|
+
having?: Prisma.dfw_userScalarWhereWithAggregatesInput;
|
|
125
|
+
take?: number;
|
|
126
|
+
skip?: number;
|
|
127
|
+
_count?: Dfw_userCountAggregateInputType | true;
|
|
128
|
+
_min?: Dfw_userMinAggregateInputType;
|
|
129
|
+
_max?: Dfw_userMaxAggregateInputType;
|
|
130
|
+
};
|
|
131
|
+
export type Dfw_userGroupByOutputType = {
|
|
132
|
+
id: string;
|
|
133
|
+
name: string | null;
|
|
134
|
+
email: string | null;
|
|
135
|
+
displayName: string | null;
|
|
136
|
+
encodedKey: string | null;
|
|
137
|
+
createdAt: Date;
|
|
138
|
+
updatedAt: Date;
|
|
139
|
+
_count: Dfw_userCountAggregateOutputType | null;
|
|
140
|
+
_min: Dfw_userMinAggregateOutputType | null;
|
|
141
|
+
_max: Dfw_userMaxAggregateOutputType | null;
|
|
142
|
+
};
|
|
143
|
+
type GetDfw_userGroupByPayload<T extends dfw_userGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<Dfw_userGroupByOutputType, T['by']> & {
|
|
144
|
+
[P in ((keyof T) & (keyof Dfw_userGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], Dfw_userGroupByOutputType[P]> : Prisma.GetScalarType<T[P], Dfw_userGroupByOutputType[P]>;
|
|
145
|
+
}>>;
|
|
146
|
+
export type dfw_userWhereInput = {
|
|
147
|
+
AND?: Prisma.dfw_userWhereInput | Prisma.dfw_userWhereInput[];
|
|
148
|
+
OR?: Prisma.dfw_userWhereInput[];
|
|
149
|
+
NOT?: Prisma.dfw_userWhereInput | Prisma.dfw_userWhereInput[];
|
|
150
|
+
id?: Prisma.StringFilter<"dfw_user"> | string;
|
|
151
|
+
name?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
152
|
+
email?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
153
|
+
displayName?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
154
|
+
encodedKey?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
155
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_user"> | Date | string;
|
|
156
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_user"> | Date | string;
|
|
157
|
+
credentials?: Prisma.Dfw_credentialListRelationFilter;
|
|
158
|
+
files?: Prisma.Dfw_fileListRelationFilter;
|
|
159
|
+
sessions?: Prisma.Dfw_sessionListRelationFilter;
|
|
160
|
+
};
|
|
161
|
+
export type dfw_userOrderByWithRelationInput = {
|
|
162
|
+
id?: Prisma.SortOrder;
|
|
163
|
+
name?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
164
|
+
email?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
165
|
+
displayName?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
166
|
+
encodedKey?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
167
|
+
createdAt?: Prisma.SortOrder;
|
|
168
|
+
updatedAt?: Prisma.SortOrder;
|
|
169
|
+
credentials?: Prisma.dfw_credentialOrderByRelationAggregateInput;
|
|
170
|
+
files?: Prisma.dfw_fileOrderByRelationAggregateInput;
|
|
171
|
+
sessions?: Prisma.dfw_sessionOrderByRelationAggregateInput;
|
|
172
|
+
};
|
|
173
|
+
export type dfw_userWhereUniqueInput = Prisma.AtLeast<{
|
|
174
|
+
id?: string;
|
|
175
|
+
name?: string;
|
|
176
|
+
email?: string;
|
|
177
|
+
AND?: Prisma.dfw_userWhereInput | Prisma.dfw_userWhereInput[];
|
|
178
|
+
OR?: Prisma.dfw_userWhereInput[];
|
|
179
|
+
NOT?: Prisma.dfw_userWhereInput | Prisma.dfw_userWhereInput[];
|
|
180
|
+
displayName?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
181
|
+
encodedKey?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
182
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_user"> | Date | string;
|
|
183
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_user"> | Date | string;
|
|
184
|
+
credentials?: Prisma.Dfw_credentialListRelationFilter;
|
|
185
|
+
files?: Prisma.Dfw_fileListRelationFilter;
|
|
186
|
+
sessions?: Prisma.Dfw_sessionListRelationFilter;
|
|
187
|
+
}, "id" | "name" | "email">;
|
|
188
|
+
export type dfw_userOrderByWithAggregationInput = {
|
|
189
|
+
id?: Prisma.SortOrder;
|
|
190
|
+
name?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
191
|
+
email?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
192
|
+
displayName?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
193
|
+
encodedKey?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
194
|
+
createdAt?: Prisma.SortOrder;
|
|
195
|
+
updatedAt?: Prisma.SortOrder;
|
|
196
|
+
_count?: Prisma.dfw_userCountOrderByAggregateInput;
|
|
197
|
+
_max?: Prisma.dfw_userMaxOrderByAggregateInput;
|
|
198
|
+
_min?: Prisma.dfw_userMinOrderByAggregateInput;
|
|
199
|
+
};
|
|
200
|
+
export type dfw_userScalarWhereWithAggregatesInput = {
|
|
201
|
+
AND?: Prisma.dfw_userScalarWhereWithAggregatesInput | Prisma.dfw_userScalarWhereWithAggregatesInput[];
|
|
202
|
+
OR?: Prisma.dfw_userScalarWhereWithAggregatesInput[];
|
|
203
|
+
NOT?: Prisma.dfw_userScalarWhereWithAggregatesInput | Prisma.dfw_userScalarWhereWithAggregatesInput[];
|
|
204
|
+
id?: Prisma.StringWithAggregatesFilter<"dfw_user"> | string;
|
|
205
|
+
name?: Prisma.StringNullableWithAggregatesFilter<"dfw_user"> | string | null;
|
|
206
|
+
email?: Prisma.StringNullableWithAggregatesFilter<"dfw_user"> | string | null;
|
|
207
|
+
displayName?: Prisma.StringNullableWithAggregatesFilter<"dfw_user"> | string | null;
|
|
208
|
+
encodedKey?: Prisma.StringNullableWithAggregatesFilter<"dfw_user"> | string | null;
|
|
209
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"dfw_user"> | Date | string;
|
|
210
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"dfw_user"> | Date | string;
|
|
211
|
+
};
|
|
212
|
+
export type dfw_userCreateInput = {
|
|
213
|
+
id?: string;
|
|
214
|
+
name?: string | null;
|
|
215
|
+
email?: string | null;
|
|
216
|
+
displayName?: string | null;
|
|
217
|
+
encodedKey?: string | null;
|
|
218
|
+
createdAt?: Date | string;
|
|
219
|
+
updatedAt?: Date | string;
|
|
220
|
+
credentials?: Prisma.dfw_credentialCreateNestedManyWithoutUsersInput;
|
|
221
|
+
files?: Prisma.dfw_fileCreateNestedManyWithoutUserInput;
|
|
222
|
+
sessions?: Prisma.dfw_sessionCreateNestedManyWithoutUserInput;
|
|
223
|
+
};
|
|
224
|
+
export type dfw_userUncheckedCreateInput = {
|
|
225
|
+
id?: string;
|
|
226
|
+
name?: string | null;
|
|
227
|
+
email?: string | null;
|
|
228
|
+
displayName?: string | null;
|
|
229
|
+
encodedKey?: string | null;
|
|
230
|
+
createdAt?: Date | string;
|
|
231
|
+
updatedAt?: Date | string;
|
|
232
|
+
credentials?: Prisma.dfw_credentialUncheckedCreateNestedManyWithoutUsersInput;
|
|
233
|
+
files?: Prisma.dfw_fileUncheckedCreateNestedManyWithoutUserInput;
|
|
234
|
+
sessions?: Prisma.dfw_sessionUncheckedCreateNestedManyWithoutUserInput;
|
|
235
|
+
};
|
|
236
|
+
export type dfw_userUpdateInput = {
|
|
237
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
238
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
239
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
240
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
241
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
242
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
243
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
244
|
+
credentials?: Prisma.dfw_credentialUpdateManyWithoutUsersNestedInput;
|
|
245
|
+
files?: Prisma.dfw_fileUpdateManyWithoutUserNestedInput;
|
|
246
|
+
sessions?: Prisma.dfw_sessionUpdateManyWithoutUserNestedInput;
|
|
247
|
+
};
|
|
248
|
+
export type dfw_userUncheckedUpdateInput = {
|
|
249
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
250
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
251
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
252
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
253
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
254
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
255
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
256
|
+
credentials?: Prisma.dfw_credentialUncheckedUpdateManyWithoutUsersNestedInput;
|
|
257
|
+
files?: Prisma.dfw_fileUncheckedUpdateManyWithoutUserNestedInput;
|
|
258
|
+
sessions?: Prisma.dfw_sessionUncheckedUpdateManyWithoutUserNestedInput;
|
|
259
|
+
};
|
|
260
|
+
export type dfw_userCreateManyInput = {
|
|
261
|
+
id?: string;
|
|
262
|
+
name?: string | null;
|
|
263
|
+
email?: string | null;
|
|
264
|
+
displayName?: string | null;
|
|
265
|
+
encodedKey?: string | null;
|
|
266
|
+
createdAt?: Date | string;
|
|
267
|
+
updatedAt?: Date | string;
|
|
268
|
+
};
|
|
269
|
+
export type dfw_userUpdateManyMutationInput = {
|
|
270
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
271
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
272
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
273
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
274
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
275
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
276
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
277
|
+
};
|
|
278
|
+
export type dfw_userUncheckedUpdateManyInput = {
|
|
279
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
280
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
281
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
282
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
283
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
284
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
285
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
286
|
+
};
|
|
287
|
+
export type dfw_userCountOrderByAggregateInput = {
|
|
288
|
+
id?: Prisma.SortOrder;
|
|
289
|
+
name?: Prisma.SortOrder;
|
|
290
|
+
email?: Prisma.SortOrder;
|
|
291
|
+
displayName?: Prisma.SortOrder;
|
|
292
|
+
encodedKey?: Prisma.SortOrder;
|
|
293
|
+
createdAt?: Prisma.SortOrder;
|
|
294
|
+
updatedAt?: Prisma.SortOrder;
|
|
295
|
+
};
|
|
296
|
+
export type dfw_userMaxOrderByAggregateInput = {
|
|
297
|
+
id?: Prisma.SortOrder;
|
|
298
|
+
name?: Prisma.SortOrder;
|
|
299
|
+
email?: Prisma.SortOrder;
|
|
300
|
+
displayName?: Prisma.SortOrder;
|
|
301
|
+
encodedKey?: Prisma.SortOrder;
|
|
302
|
+
createdAt?: Prisma.SortOrder;
|
|
303
|
+
updatedAt?: Prisma.SortOrder;
|
|
304
|
+
};
|
|
305
|
+
export type dfw_userMinOrderByAggregateInput = {
|
|
306
|
+
id?: Prisma.SortOrder;
|
|
307
|
+
name?: Prisma.SortOrder;
|
|
308
|
+
email?: Prisma.SortOrder;
|
|
309
|
+
displayName?: Prisma.SortOrder;
|
|
310
|
+
encodedKey?: Prisma.SortOrder;
|
|
311
|
+
createdAt?: Prisma.SortOrder;
|
|
312
|
+
updatedAt?: Prisma.SortOrder;
|
|
313
|
+
};
|
|
314
|
+
export type Dfw_userNullableScalarRelationFilter = {
|
|
315
|
+
is?: Prisma.dfw_userWhereInput | null;
|
|
316
|
+
isNot?: Prisma.dfw_userWhereInput | null;
|
|
317
|
+
};
|
|
318
|
+
export type Dfw_userListRelationFilter = {
|
|
319
|
+
every?: Prisma.dfw_userWhereInput;
|
|
320
|
+
some?: Prisma.dfw_userWhereInput;
|
|
321
|
+
none?: Prisma.dfw_userWhereInput;
|
|
322
|
+
};
|
|
323
|
+
export type dfw_userOrderByRelationAggregateInput = {
|
|
324
|
+
_count?: Prisma.SortOrder;
|
|
325
|
+
};
|
|
326
|
+
export type StringFieldUpdateOperationsInput = {
|
|
327
|
+
set?: string;
|
|
328
|
+
};
|
|
329
|
+
export type NullableStringFieldUpdateOperationsInput = {
|
|
330
|
+
set?: string | null;
|
|
331
|
+
};
|
|
332
|
+
export type DateTimeFieldUpdateOperationsInput = {
|
|
333
|
+
set?: Date | string;
|
|
334
|
+
};
|
|
335
|
+
export type dfw_userCreateNestedOneWithoutSessionsInput = {
|
|
336
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutSessionsInput, Prisma.dfw_userUncheckedCreateWithoutSessionsInput>;
|
|
337
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutSessionsInput;
|
|
338
|
+
connect?: Prisma.dfw_userWhereUniqueInput;
|
|
339
|
+
};
|
|
340
|
+
export type dfw_userUpdateOneWithoutSessionsNestedInput = {
|
|
341
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutSessionsInput, Prisma.dfw_userUncheckedCreateWithoutSessionsInput>;
|
|
342
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutSessionsInput;
|
|
343
|
+
upsert?: Prisma.dfw_userUpsertWithoutSessionsInput;
|
|
344
|
+
disconnect?: Prisma.dfw_userWhereInput | boolean;
|
|
345
|
+
delete?: Prisma.dfw_userWhereInput | boolean;
|
|
346
|
+
connect?: Prisma.dfw_userWhereUniqueInput;
|
|
347
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.dfw_userUpdateToOneWithWhereWithoutSessionsInput, Prisma.dfw_userUpdateWithoutSessionsInput>, Prisma.dfw_userUncheckedUpdateWithoutSessionsInput>;
|
|
348
|
+
};
|
|
349
|
+
export type dfw_userCreateNestedManyWithoutCredentialsInput = {
|
|
350
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutCredentialsInput, Prisma.dfw_userUncheckedCreateWithoutCredentialsInput> | Prisma.dfw_userCreateWithoutCredentialsInput[] | Prisma.dfw_userUncheckedCreateWithoutCredentialsInput[];
|
|
351
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutCredentialsInput | Prisma.dfw_userCreateOrConnectWithoutCredentialsInput[];
|
|
352
|
+
connect?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
353
|
+
};
|
|
354
|
+
export type dfw_userUncheckedCreateNestedManyWithoutCredentialsInput = {
|
|
355
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutCredentialsInput, Prisma.dfw_userUncheckedCreateWithoutCredentialsInput> | Prisma.dfw_userCreateWithoutCredentialsInput[] | Prisma.dfw_userUncheckedCreateWithoutCredentialsInput[];
|
|
356
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutCredentialsInput | Prisma.dfw_userCreateOrConnectWithoutCredentialsInput[];
|
|
357
|
+
connect?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
358
|
+
};
|
|
359
|
+
export type dfw_userUpdateManyWithoutCredentialsNestedInput = {
|
|
360
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutCredentialsInput, Prisma.dfw_userUncheckedCreateWithoutCredentialsInput> | Prisma.dfw_userCreateWithoutCredentialsInput[] | Prisma.dfw_userUncheckedCreateWithoutCredentialsInput[];
|
|
361
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutCredentialsInput | Prisma.dfw_userCreateOrConnectWithoutCredentialsInput[];
|
|
362
|
+
upsert?: Prisma.dfw_userUpsertWithWhereUniqueWithoutCredentialsInput | Prisma.dfw_userUpsertWithWhereUniqueWithoutCredentialsInput[];
|
|
363
|
+
set?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
364
|
+
disconnect?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
365
|
+
delete?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
366
|
+
connect?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
367
|
+
update?: Prisma.dfw_userUpdateWithWhereUniqueWithoutCredentialsInput | Prisma.dfw_userUpdateWithWhereUniqueWithoutCredentialsInput[];
|
|
368
|
+
updateMany?: Prisma.dfw_userUpdateManyWithWhereWithoutCredentialsInput | Prisma.dfw_userUpdateManyWithWhereWithoutCredentialsInput[];
|
|
369
|
+
deleteMany?: Prisma.dfw_userScalarWhereInput | Prisma.dfw_userScalarWhereInput[];
|
|
370
|
+
};
|
|
371
|
+
export type dfw_userUncheckedUpdateManyWithoutCredentialsNestedInput = {
|
|
372
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutCredentialsInput, Prisma.dfw_userUncheckedCreateWithoutCredentialsInput> | Prisma.dfw_userCreateWithoutCredentialsInput[] | Prisma.dfw_userUncheckedCreateWithoutCredentialsInput[];
|
|
373
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutCredentialsInput | Prisma.dfw_userCreateOrConnectWithoutCredentialsInput[];
|
|
374
|
+
upsert?: Prisma.dfw_userUpsertWithWhereUniqueWithoutCredentialsInput | Prisma.dfw_userUpsertWithWhereUniqueWithoutCredentialsInput[];
|
|
375
|
+
set?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
376
|
+
disconnect?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
377
|
+
delete?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
378
|
+
connect?: Prisma.dfw_userWhereUniqueInput | Prisma.dfw_userWhereUniqueInput[];
|
|
379
|
+
update?: Prisma.dfw_userUpdateWithWhereUniqueWithoutCredentialsInput | Prisma.dfw_userUpdateWithWhereUniqueWithoutCredentialsInput[];
|
|
380
|
+
updateMany?: Prisma.dfw_userUpdateManyWithWhereWithoutCredentialsInput | Prisma.dfw_userUpdateManyWithWhereWithoutCredentialsInput[];
|
|
381
|
+
deleteMany?: Prisma.dfw_userScalarWhereInput | Prisma.dfw_userScalarWhereInput[];
|
|
382
|
+
};
|
|
383
|
+
export type dfw_userCreateNestedOneWithoutFilesInput = {
|
|
384
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutFilesInput, Prisma.dfw_userUncheckedCreateWithoutFilesInput>;
|
|
385
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutFilesInput;
|
|
386
|
+
connect?: Prisma.dfw_userWhereUniqueInput;
|
|
387
|
+
};
|
|
388
|
+
export type dfw_userUpdateOneWithoutFilesNestedInput = {
|
|
389
|
+
create?: Prisma.XOR<Prisma.dfw_userCreateWithoutFilesInput, Prisma.dfw_userUncheckedCreateWithoutFilesInput>;
|
|
390
|
+
connectOrCreate?: Prisma.dfw_userCreateOrConnectWithoutFilesInput;
|
|
391
|
+
upsert?: Prisma.dfw_userUpsertWithoutFilesInput;
|
|
392
|
+
disconnect?: Prisma.dfw_userWhereInput | boolean;
|
|
393
|
+
delete?: Prisma.dfw_userWhereInput | boolean;
|
|
394
|
+
connect?: Prisma.dfw_userWhereUniqueInput;
|
|
395
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.dfw_userUpdateToOneWithWhereWithoutFilesInput, Prisma.dfw_userUpdateWithoutFilesInput>, Prisma.dfw_userUncheckedUpdateWithoutFilesInput>;
|
|
396
|
+
};
|
|
397
|
+
export type dfw_userCreateWithoutSessionsInput = {
|
|
398
|
+
id?: string;
|
|
399
|
+
name?: string | null;
|
|
400
|
+
email?: string | null;
|
|
401
|
+
displayName?: string | null;
|
|
402
|
+
encodedKey?: string | null;
|
|
403
|
+
createdAt?: Date | string;
|
|
404
|
+
updatedAt?: Date | string;
|
|
405
|
+
credentials?: Prisma.dfw_credentialCreateNestedManyWithoutUsersInput;
|
|
406
|
+
files?: Prisma.dfw_fileCreateNestedManyWithoutUserInput;
|
|
407
|
+
};
|
|
408
|
+
export type dfw_userUncheckedCreateWithoutSessionsInput = {
|
|
409
|
+
id?: string;
|
|
410
|
+
name?: string | null;
|
|
411
|
+
email?: string | null;
|
|
412
|
+
displayName?: string | null;
|
|
413
|
+
encodedKey?: string | null;
|
|
414
|
+
createdAt?: Date | string;
|
|
415
|
+
updatedAt?: Date | string;
|
|
416
|
+
credentials?: Prisma.dfw_credentialUncheckedCreateNestedManyWithoutUsersInput;
|
|
417
|
+
files?: Prisma.dfw_fileUncheckedCreateNestedManyWithoutUserInput;
|
|
418
|
+
};
|
|
419
|
+
export type dfw_userCreateOrConnectWithoutSessionsInput = {
|
|
420
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
421
|
+
create: Prisma.XOR<Prisma.dfw_userCreateWithoutSessionsInput, Prisma.dfw_userUncheckedCreateWithoutSessionsInput>;
|
|
422
|
+
};
|
|
423
|
+
export type dfw_userUpsertWithoutSessionsInput = {
|
|
424
|
+
update: Prisma.XOR<Prisma.dfw_userUpdateWithoutSessionsInput, Prisma.dfw_userUncheckedUpdateWithoutSessionsInput>;
|
|
425
|
+
create: Prisma.XOR<Prisma.dfw_userCreateWithoutSessionsInput, Prisma.dfw_userUncheckedCreateWithoutSessionsInput>;
|
|
426
|
+
where?: Prisma.dfw_userWhereInput;
|
|
427
|
+
};
|
|
428
|
+
export type dfw_userUpdateToOneWithWhereWithoutSessionsInput = {
|
|
429
|
+
where?: Prisma.dfw_userWhereInput;
|
|
430
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateWithoutSessionsInput, Prisma.dfw_userUncheckedUpdateWithoutSessionsInput>;
|
|
431
|
+
};
|
|
432
|
+
export type dfw_userUpdateWithoutSessionsInput = {
|
|
433
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
434
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
435
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
436
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
437
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
438
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
439
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
440
|
+
credentials?: Prisma.dfw_credentialUpdateManyWithoutUsersNestedInput;
|
|
441
|
+
files?: Prisma.dfw_fileUpdateManyWithoutUserNestedInput;
|
|
442
|
+
};
|
|
443
|
+
export type dfw_userUncheckedUpdateWithoutSessionsInput = {
|
|
444
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
445
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
446
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
447
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
448
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
449
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
450
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
451
|
+
credentials?: Prisma.dfw_credentialUncheckedUpdateManyWithoutUsersNestedInput;
|
|
452
|
+
files?: Prisma.dfw_fileUncheckedUpdateManyWithoutUserNestedInput;
|
|
453
|
+
};
|
|
454
|
+
export type dfw_userCreateWithoutCredentialsInput = {
|
|
455
|
+
id?: string;
|
|
456
|
+
name?: string | null;
|
|
457
|
+
email?: string | null;
|
|
458
|
+
displayName?: string | null;
|
|
459
|
+
encodedKey?: string | null;
|
|
460
|
+
createdAt?: Date | string;
|
|
461
|
+
updatedAt?: Date | string;
|
|
462
|
+
files?: Prisma.dfw_fileCreateNestedManyWithoutUserInput;
|
|
463
|
+
sessions?: Prisma.dfw_sessionCreateNestedManyWithoutUserInput;
|
|
464
|
+
};
|
|
465
|
+
export type dfw_userUncheckedCreateWithoutCredentialsInput = {
|
|
466
|
+
id?: string;
|
|
467
|
+
name?: string | null;
|
|
468
|
+
email?: string | null;
|
|
469
|
+
displayName?: string | null;
|
|
470
|
+
encodedKey?: string | null;
|
|
471
|
+
createdAt?: Date | string;
|
|
472
|
+
updatedAt?: Date | string;
|
|
473
|
+
files?: Prisma.dfw_fileUncheckedCreateNestedManyWithoutUserInput;
|
|
474
|
+
sessions?: Prisma.dfw_sessionUncheckedCreateNestedManyWithoutUserInput;
|
|
475
|
+
};
|
|
476
|
+
export type dfw_userCreateOrConnectWithoutCredentialsInput = {
|
|
477
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
478
|
+
create: Prisma.XOR<Prisma.dfw_userCreateWithoutCredentialsInput, Prisma.dfw_userUncheckedCreateWithoutCredentialsInput>;
|
|
479
|
+
};
|
|
480
|
+
export type dfw_userUpsertWithWhereUniqueWithoutCredentialsInput = {
|
|
481
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
482
|
+
update: Prisma.XOR<Prisma.dfw_userUpdateWithoutCredentialsInput, Prisma.dfw_userUncheckedUpdateWithoutCredentialsInput>;
|
|
483
|
+
create: Prisma.XOR<Prisma.dfw_userCreateWithoutCredentialsInput, Prisma.dfw_userUncheckedCreateWithoutCredentialsInput>;
|
|
484
|
+
};
|
|
485
|
+
export type dfw_userUpdateWithWhereUniqueWithoutCredentialsInput = {
|
|
486
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
487
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateWithoutCredentialsInput, Prisma.dfw_userUncheckedUpdateWithoutCredentialsInput>;
|
|
488
|
+
};
|
|
489
|
+
export type dfw_userUpdateManyWithWhereWithoutCredentialsInput = {
|
|
490
|
+
where: Prisma.dfw_userScalarWhereInput;
|
|
491
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateManyMutationInput, Prisma.dfw_userUncheckedUpdateManyWithoutCredentialsInput>;
|
|
492
|
+
};
|
|
493
|
+
export type dfw_userScalarWhereInput = {
|
|
494
|
+
AND?: Prisma.dfw_userScalarWhereInput | Prisma.dfw_userScalarWhereInput[];
|
|
495
|
+
OR?: Prisma.dfw_userScalarWhereInput[];
|
|
496
|
+
NOT?: Prisma.dfw_userScalarWhereInput | Prisma.dfw_userScalarWhereInput[];
|
|
497
|
+
id?: Prisma.StringFilter<"dfw_user"> | string;
|
|
498
|
+
name?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
499
|
+
email?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
500
|
+
displayName?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
501
|
+
encodedKey?: Prisma.StringNullableFilter<"dfw_user"> | string | null;
|
|
502
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_user"> | Date | string;
|
|
503
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_user"> | Date | string;
|
|
504
|
+
};
|
|
505
|
+
export type dfw_userCreateWithoutFilesInput = {
|
|
506
|
+
id?: string;
|
|
507
|
+
name?: string | null;
|
|
508
|
+
email?: string | null;
|
|
509
|
+
displayName?: string | null;
|
|
510
|
+
encodedKey?: string | null;
|
|
511
|
+
createdAt?: Date | string;
|
|
512
|
+
updatedAt?: Date | string;
|
|
513
|
+
credentials?: Prisma.dfw_credentialCreateNestedManyWithoutUsersInput;
|
|
514
|
+
sessions?: Prisma.dfw_sessionCreateNestedManyWithoutUserInput;
|
|
515
|
+
};
|
|
516
|
+
export type dfw_userUncheckedCreateWithoutFilesInput = {
|
|
517
|
+
id?: string;
|
|
518
|
+
name?: string | null;
|
|
519
|
+
email?: string | null;
|
|
520
|
+
displayName?: string | null;
|
|
521
|
+
encodedKey?: string | null;
|
|
522
|
+
createdAt?: Date | string;
|
|
523
|
+
updatedAt?: Date | string;
|
|
524
|
+
credentials?: Prisma.dfw_credentialUncheckedCreateNestedManyWithoutUsersInput;
|
|
525
|
+
sessions?: Prisma.dfw_sessionUncheckedCreateNestedManyWithoutUserInput;
|
|
526
|
+
};
|
|
527
|
+
export type dfw_userCreateOrConnectWithoutFilesInput = {
|
|
528
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
529
|
+
create: Prisma.XOR<Prisma.dfw_userCreateWithoutFilesInput, Prisma.dfw_userUncheckedCreateWithoutFilesInput>;
|
|
530
|
+
};
|
|
531
|
+
export type dfw_userUpsertWithoutFilesInput = {
|
|
532
|
+
update: Prisma.XOR<Prisma.dfw_userUpdateWithoutFilesInput, Prisma.dfw_userUncheckedUpdateWithoutFilesInput>;
|
|
533
|
+
create: Prisma.XOR<Prisma.dfw_userCreateWithoutFilesInput, Prisma.dfw_userUncheckedCreateWithoutFilesInput>;
|
|
534
|
+
where?: Prisma.dfw_userWhereInput;
|
|
535
|
+
};
|
|
536
|
+
export type dfw_userUpdateToOneWithWhereWithoutFilesInput = {
|
|
537
|
+
where?: Prisma.dfw_userWhereInput;
|
|
538
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateWithoutFilesInput, Prisma.dfw_userUncheckedUpdateWithoutFilesInput>;
|
|
539
|
+
};
|
|
540
|
+
export type dfw_userUpdateWithoutFilesInput = {
|
|
541
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
542
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
543
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
544
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
545
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
546
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
547
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
548
|
+
credentials?: Prisma.dfw_credentialUpdateManyWithoutUsersNestedInput;
|
|
549
|
+
sessions?: Prisma.dfw_sessionUpdateManyWithoutUserNestedInput;
|
|
550
|
+
};
|
|
551
|
+
export type dfw_userUncheckedUpdateWithoutFilesInput = {
|
|
552
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
553
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
554
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
555
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
556
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
557
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
558
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
559
|
+
credentials?: Prisma.dfw_credentialUncheckedUpdateManyWithoutUsersNestedInput;
|
|
560
|
+
sessions?: Prisma.dfw_sessionUncheckedUpdateManyWithoutUserNestedInput;
|
|
561
|
+
};
|
|
562
|
+
export type dfw_userUpdateWithoutCredentialsInput = {
|
|
563
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
564
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
565
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
566
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
567
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
568
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
569
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
570
|
+
files?: Prisma.dfw_fileUpdateManyWithoutUserNestedInput;
|
|
571
|
+
sessions?: Prisma.dfw_sessionUpdateManyWithoutUserNestedInput;
|
|
572
|
+
};
|
|
573
|
+
export type dfw_userUncheckedUpdateWithoutCredentialsInput = {
|
|
574
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
575
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
576
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
577
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
578
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
579
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
580
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
581
|
+
files?: Prisma.dfw_fileUncheckedUpdateManyWithoutUserNestedInput;
|
|
582
|
+
sessions?: Prisma.dfw_sessionUncheckedUpdateManyWithoutUserNestedInput;
|
|
583
|
+
};
|
|
584
|
+
export type dfw_userUncheckedUpdateManyWithoutCredentialsInput = {
|
|
585
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
586
|
+
name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
587
|
+
email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
588
|
+
displayName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
589
|
+
encodedKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
590
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
591
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
592
|
+
};
|
|
593
|
+
/**
|
|
594
|
+
* Count Type Dfw_userCountOutputType
|
|
595
|
+
*/
|
|
596
|
+
export type Dfw_userCountOutputType = {
|
|
597
|
+
credentials: number;
|
|
598
|
+
files: number;
|
|
599
|
+
sessions: number;
|
|
600
|
+
};
|
|
601
|
+
export type Dfw_userCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
602
|
+
credentials?: boolean | Dfw_userCountOutputTypeCountCredentialsArgs;
|
|
603
|
+
files?: boolean | Dfw_userCountOutputTypeCountFilesArgs;
|
|
604
|
+
sessions?: boolean | Dfw_userCountOutputTypeCountSessionsArgs;
|
|
605
|
+
};
|
|
606
|
+
/**
|
|
607
|
+
* Dfw_userCountOutputType without action
|
|
608
|
+
*/
|
|
609
|
+
export type Dfw_userCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
610
|
+
/**
|
|
611
|
+
* Select specific fields to fetch from the Dfw_userCountOutputType
|
|
612
|
+
*/
|
|
613
|
+
select?: Prisma.Dfw_userCountOutputTypeSelect<ExtArgs> | null;
|
|
614
|
+
};
|
|
615
|
+
/**
|
|
616
|
+
* Dfw_userCountOutputType without action
|
|
617
|
+
*/
|
|
618
|
+
export type Dfw_userCountOutputTypeCountCredentialsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
619
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
620
|
+
};
|
|
621
|
+
/**
|
|
622
|
+
* Dfw_userCountOutputType without action
|
|
623
|
+
*/
|
|
624
|
+
export type Dfw_userCountOutputTypeCountFilesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
625
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
626
|
+
};
|
|
627
|
+
/**
|
|
628
|
+
* Dfw_userCountOutputType without action
|
|
629
|
+
*/
|
|
630
|
+
export type Dfw_userCountOutputTypeCountSessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
631
|
+
where?: Prisma.dfw_sessionWhereInput;
|
|
632
|
+
};
|
|
633
|
+
export type dfw_userSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
634
|
+
id?: boolean;
|
|
635
|
+
name?: boolean;
|
|
636
|
+
email?: boolean;
|
|
637
|
+
displayName?: boolean;
|
|
638
|
+
encodedKey?: boolean;
|
|
639
|
+
createdAt?: boolean;
|
|
640
|
+
updatedAt?: boolean;
|
|
641
|
+
credentials?: boolean | Prisma.dfw_user$credentialsArgs<ExtArgs>;
|
|
642
|
+
files?: boolean | Prisma.dfw_user$filesArgs<ExtArgs>;
|
|
643
|
+
sessions?: boolean | Prisma.dfw_user$sessionsArgs<ExtArgs>;
|
|
644
|
+
_count?: boolean | Prisma.Dfw_userCountOutputTypeDefaultArgs<ExtArgs>;
|
|
645
|
+
}, ExtArgs["result"]["dfw_user"]>;
|
|
646
|
+
export type dfw_userSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
647
|
+
id?: boolean;
|
|
648
|
+
name?: boolean;
|
|
649
|
+
email?: boolean;
|
|
650
|
+
displayName?: boolean;
|
|
651
|
+
encodedKey?: boolean;
|
|
652
|
+
createdAt?: boolean;
|
|
653
|
+
updatedAt?: boolean;
|
|
654
|
+
}, ExtArgs["result"]["dfw_user"]>;
|
|
655
|
+
export type dfw_userSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
656
|
+
id?: boolean;
|
|
657
|
+
name?: boolean;
|
|
658
|
+
email?: boolean;
|
|
659
|
+
displayName?: boolean;
|
|
660
|
+
encodedKey?: boolean;
|
|
661
|
+
createdAt?: boolean;
|
|
662
|
+
updatedAt?: boolean;
|
|
663
|
+
}, ExtArgs["result"]["dfw_user"]>;
|
|
664
|
+
export type dfw_userSelectScalar = {
|
|
665
|
+
id?: boolean;
|
|
666
|
+
name?: boolean;
|
|
667
|
+
email?: boolean;
|
|
668
|
+
displayName?: boolean;
|
|
669
|
+
encodedKey?: boolean;
|
|
670
|
+
createdAt?: boolean;
|
|
671
|
+
updatedAt?: boolean;
|
|
672
|
+
};
|
|
673
|
+
export type dfw_userOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "email" | "displayName" | "encodedKey" | "createdAt" | "updatedAt", ExtArgs["result"]["dfw_user"]>;
|
|
674
|
+
export type dfw_userInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
675
|
+
credentials?: boolean | Prisma.dfw_user$credentialsArgs<ExtArgs>;
|
|
676
|
+
files?: boolean | Prisma.dfw_user$filesArgs<ExtArgs>;
|
|
677
|
+
sessions?: boolean | Prisma.dfw_user$sessionsArgs<ExtArgs>;
|
|
678
|
+
_count?: boolean | Prisma.Dfw_userCountOutputTypeDefaultArgs<ExtArgs>;
|
|
679
|
+
};
|
|
680
|
+
export type dfw_userIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
|
|
681
|
+
export type dfw_userIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
|
|
682
|
+
export type $dfw_userPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
683
|
+
name: "dfw_user";
|
|
684
|
+
objects: {
|
|
685
|
+
credentials: Prisma.$dfw_credentialPayload<ExtArgs>[];
|
|
686
|
+
files: Prisma.$dfw_filePayload<ExtArgs>[];
|
|
687
|
+
sessions: Prisma.$dfw_sessionPayload<ExtArgs>[];
|
|
688
|
+
};
|
|
689
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
690
|
+
id: string;
|
|
691
|
+
name: string | null;
|
|
692
|
+
email: string | null;
|
|
693
|
+
displayName: string | null;
|
|
694
|
+
encodedKey: string | null;
|
|
695
|
+
createdAt: Date;
|
|
696
|
+
updatedAt: Date;
|
|
697
|
+
}, ExtArgs["result"]["dfw_user"]>;
|
|
698
|
+
composites: {};
|
|
699
|
+
};
|
|
700
|
+
export type dfw_userGetPayload<S extends boolean | null | undefined | dfw_userDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$dfw_userPayload, S>;
|
|
701
|
+
export type dfw_userCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<dfw_userFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
702
|
+
select?: Dfw_userCountAggregateInputType | true;
|
|
703
|
+
};
|
|
704
|
+
export interface dfw_userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
705
|
+
[K: symbol]: {
|
|
706
|
+
types: Prisma.TypeMap<ExtArgs>['model']['dfw_user'];
|
|
707
|
+
meta: {
|
|
708
|
+
name: 'dfw_user';
|
|
709
|
+
};
|
|
710
|
+
};
|
|
711
|
+
/**
|
|
712
|
+
* Find zero or one Dfw_user that matches the filter.
|
|
713
|
+
* @param {dfw_userFindUniqueArgs} args - Arguments to find a Dfw_user
|
|
714
|
+
* @example
|
|
715
|
+
* // Get one Dfw_user
|
|
716
|
+
* const dfw_user = await prisma.dfw_user.findUnique({
|
|
717
|
+
* where: {
|
|
718
|
+
* // ... provide filter here
|
|
719
|
+
* }
|
|
720
|
+
* })
|
|
721
|
+
*/
|
|
722
|
+
findUnique<T extends dfw_userFindUniqueArgs>(args: Prisma.SelectSubset<T, dfw_userFindUniqueArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
723
|
+
/**
|
|
724
|
+
* Find one Dfw_user that matches the filter or throw an error with `error.code='P2025'`
|
|
725
|
+
* if no matches were found.
|
|
726
|
+
* @param {dfw_userFindUniqueOrThrowArgs} args - Arguments to find a Dfw_user
|
|
727
|
+
* @example
|
|
728
|
+
* // Get one Dfw_user
|
|
729
|
+
* const dfw_user = await prisma.dfw_user.findUniqueOrThrow({
|
|
730
|
+
* where: {
|
|
731
|
+
* // ... provide filter here
|
|
732
|
+
* }
|
|
733
|
+
* })
|
|
734
|
+
*/
|
|
735
|
+
findUniqueOrThrow<T extends dfw_userFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, dfw_userFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
736
|
+
/**
|
|
737
|
+
* Find the first Dfw_user that matches the filter.
|
|
738
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
739
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
740
|
+
* @param {dfw_userFindFirstArgs} args - Arguments to find a Dfw_user
|
|
741
|
+
* @example
|
|
742
|
+
* // Get one Dfw_user
|
|
743
|
+
* const dfw_user = await prisma.dfw_user.findFirst({
|
|
744
|
+
* where: {
|
|
745
|
+
* // ... provide filter here
|
|
746
|
+
* }
|
|
747
|
+
* })
|
|
748
|
+
*/
|
|
749
|
+
findFirst<T extends dfw_userFindFirstArgs>(args?: Prisma.SelectSubset<T, dfw_userFindFirstArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
750
|
+
/**
|
|
751
|
+
* Find the first Dfw_user that matches the filter or
|
|
752
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
753
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
754
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
755
|
+
* @param {dfw_userFindFirstOrThrowArgs} args - Arguments to find a Dfw_user
|
|
756
|
+
* @example
|
|
757
|
+
* // Get one Dfw_user
|
|
758
|
+
* const dfw_user = await prisma.dfw_user.findFirstOrThrow({
|
|
759
|
+
* where: {
|
|
760
|
+
* // ... provide filter here
|
|
761
|
+
* }
|
|
762
|
+
* })
|
|
763
|
+
*/
|
|
764
|
+
findFirstOrThrow<T extends dfw_userFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, dfw_userFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
765
|
+
/**
|
|
766
|
+
* Find zero or more Dfw_users that matches the filter.
|
|
767
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
768
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
769
|
+
* @param {dfw_userFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
770
|
+
* @example
|
|
771
|
+
* // Get all Dfw_users
|
|
772
|
+
* const dfw_users = await prisma.dfw_user.findMany()
|
|
773
|
+
*
|
|
774
|
+
* // Get first 10 Dfw_users
|
|
775
|
+
* const dfw_users = await prisma.dfw_user.findMany({ take: 10 })
|
|
776
|
+
*
|
|
777
|
+
* // Only select the `id`
|
|
778
|
+
* const dfw_userWithIdOnly = await prisma.dfw_user.findMany({ select: { id: true } })
|
|
779
|
+
*
|
|
780
|
+
*/
|
|
781
|
+
findMany<T extends dfw_userFindManyArgs>(args?: Prisma.SelectSubset<T, dfw_userFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
782
|
+
/**
|
|
783
|
+
* Create a Dfw_user.
|
|
784
|
+
* @param {dfw_userCreateArgs} args - Arguments to create a Dfw_user.
|
|
785
|
+
* @example
|
|
786
|
+
* // Create one Dfw_user
|
|
787
|
+
* const Dfw_user = await prisma.dfw_user.create({
|
|
788
|
+
* data: {
|
|
789
|
+
* // ... data to create a Dfw_user
|
|
790
|
+
* }
|
|
791
|
+
* })
|
|
792
|
+
*
|
|
793
|
+
*/
|
|
794
|
+
create<T extends dfw_userCreateArgs>(args: Prisma.SelectSubset<T, dfw_userCreateArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
795
|
+
/**
|
|
796
|
+
* Create many Dfw_users.
|
|
797
|
+
* @param {dfw_userCreateManyArgs} args - Arguments to create many Dfw_users.
|
|
798
|
+
* @example
|
|
799
|
+
* // Create many Dfw_users
|
|
800
|
+
* const dfw_user = await prisma.dfw_user.createMany({
|
|
801
|
+
* data: [
|
|
802
|
+
* // ... provide data here
|
|
803
|
+
* ]
|
|
804
|
+
* })
|
|
805
|
+
*
|
|
806
|
+
*/
|
|
807
|
+
createMany<T extends dfw_userCreateManyArgs>(args?: Prisma.SelectSubset<T, dfw_userCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
808
|
+
/**
|
|
809
|
+
* Create many Dfw_users and returns the data saved in the database.
|
|
810
|
+
* @param {dfw_userCreateManyAndReturnArgs} args - Arguments to create many Dfw_users.
|
|
811
|
+
* @example
|
|
812
|
+
* // Create many Dfw_users
|
|
813
|
+
* const dfw_user = await prisma.dfw_user.createManyAndReturn({
|
|
814
|
+
* data: [
|
|
815
|
+
* // ... provide data here
|
|
816
|
+
* ]
|
|
817
|
+
* })
|
|
818
|
+
*
|
|
819
|
+
* // Create many Dfw_users and only return the `id`
|
|
820
|
+
* const dfw_userWithIdOnly = await prisma.dfw_user.createManyAndReturn({
|
|
821
|
+
* select: { id: true },
|
|
822
|
+
* data: [
|
|
823
|
+
* // ... provide data here
|
|
824
|
+
* ]
|
|
825
|
+
* })
|
|
826
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
827
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
828
|
+
*
|
|
829
|
+
*/
|
|
830
|
+
createManyAndReturn<T extends dfw_userCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, dfw_userCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
831
|
+
/**
|
|
832
|
+
* Delete a Dfw_user.
|
|
833
|
+
* @param {dfw_userDeleteArgs} args - Arguments to delete one Dfw_user.
|
|
834
|
+
* @example
|
|
835
|
+
* // Delete one Dfw_user
|
|
836
|
+
* const Dfw_user = await prisma.dfw_user.delete({
|
|
837
|
+
* where: {
|
|
838
|
+
* // ... filter to delete one Dfw_user
|
|
839
|
+
* }
|
|
840
|
+
* })
|
|
841
|
+
*
|
|
842
|
+
*/
|
|
843
|
+
delete<T extends dfw_userDeleteArgs>(args: Prisma.SelectSubset<T, dfw_userDeleteArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
844
|
+
/**
|
|
845
|
+
* Update one Dfw_user.
|
|
846
|
+
* @param {dfw_userUpdateArgs} args - Arguments to update one Dfw_user.
|
|
847
|
+
* @example
|
|
848
|
+
* // Update one Dfw_user
|
|
849
|
+
* const dfw_user = await prisma.dfw_user.update({
|
|
850
|
+
* where: {
|
|
851
|
+
* // ... provide filter here
|
|
852
|
+
* },
|
|
853
|
+
* data: {
|
|
854
|
+
* // ... provide data here
|
|
855
|
+
* }
|
|
856
|
+
* })
|
|
857
|
+
*
|
|
858
|
+
*/
|
|
859
|
+
update<T extends dfw_userUpdateArgs>(args: Prisma.SelectSubset<T, dfw_userUpdateArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
860
|
+
/**
|
|
861
|
+
* Delete zero or more Dfw_users.
|
|
862
|
+
* @param {dfw_userDeleteManyArgs} args - Arguments to filter Dfw_users to delete.
|
|
863
|
+
* @example
|
|
864
|
+
* // Delete a few Dfw_users
|
|
865
|
+
* const { count } = await prisma.dfw_user.deleteMany({
|
|
866
|
+
* where: {
|
|
867
|
+
* // ... provide filter here
|
|
868
|
+
* }
|
|
869
|
+
* })
|
|
870
|
+
*
|
|
871
|
+
*/
|
|
872
|
+
deleteMany<T extends dfw_userDeleteManyArgs>(args?: Prisma.SelectSubset<T, dfw_userDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
873
|
+
/**
|
|
874
|
+
* Update zero or more Dfw_users.
|
|
875
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
876
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
877
|
+
* @param {dfw_userUpdateManyArgs} args - Arguments to update one or more rows.
|
|
878
|
+
* @example
|
|
879
|
+
* // Update many Dfw_users
|
|
880
|
+
* const dfw_user = await prisma.dfw_user.updateMany({
|
|
881
|
+
* where: {
|
|
882
|
+
* // ... provide filter here
|
|
883
|
+
* },
|
|
884
|
+
* data: {
|
|
885
|
+
* // ... provide data here
|
|
886
|
+
* }
|
|
887
|
+
* })
|
|
888
|
+
*
|
|
889
|
+
*/
|
|
890
|
+
updateMany<T extends dfw_userUpdateManyArgs>(args: Prisma.SelectSubset<T, dfw_userUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
891
|
+
/**
|
|
892
|
+
* Update zero or more Dfw_users and returns the data updated in the database.
|
|
893
|
+
* @param {dfw_userUpdateManyAndReturnArgs} args - Arguments to update many Dfw_users.
|
|
894
|
+
* @example
|
|
895
|
+
* // Update many Dfw_users
|
|
896
|
+
* const dfw_user = await prisma.dfw_user.updateManyAndReturn({
|
|
897
|
+
* where: {
|
|
898
|
+
* // ... provide filter here
|
|
899
|
+
* },
|
|
900
|
+
* data: [
|
|
901
|
+
* // ... provide data here
|
|
902
|
+
* ]
|
|
903
|
+
* })
|
|
904
|
+
*
|
|
905
|
+
* // Update zero or more Dfw_users and only return the `id`
|
|
906
|
+
* const dfw_userWithIdOnly = await prisma.dfw_user.updateManyAndReturn({
|
|
907
|
+
* select: { id: true },
|
|
908
|
+
* where: {
|
|
909
|
+
* // ... provide filter here
|
|
910
|
+
* },
|
|
911
|
+
* data: [
|
|
912
|
+
* // ... provide data here
|
|
913
|
+
* ]
|
|
914
|
+
* })
|
|
915
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
916
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
917
|
+
*
|
|
918
|
+
*/
|
|
919
|
+
updateManyAndReturn<T extends dfw_userUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, dfw_userUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
920
|
+
/**
|
|
921
|
+
* Create or update one Dfw_user.
|
|
922
|
+
* @param {dfw_userUpsertArgs} args - Arguments to update or create a Dfw_user.
|
|
923
|
+
* @example
|
|
924
|
+
* // Update or create a Dfw_user
|
|
925
|
+
* const dfw_user = await prisma.dfw_user.upsert({
|
|
926
|
+
* create: {
|
|
927
|
+
* // ... data to create a Dfw_user
|
|
928
|
+
* },
|
|
929
|
+
* update: {
|
|
930
|
+
* // ... in case it already exists, update
|
|
931
|
+
* },
|
|
932
|
+
* where: {
|
|
933
|
+
* // ... the filter for the Dfw_user we want to update
|
|
934
|
+
* }
|
|
935
|
+
* })
|
|
936
|
+
*/
|
|
937
|
+
upsert<T extends dfw_userUpsertArgs>(args: Prisma.SelectSubset<T, dfw_userUpsertArgs<ExtArgs>>): Prisma.Prisma__dfw_userClient<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
938
|
+
/**
|
|
939
|
+
* Count the number of Dfw_users.
|
|
940
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
941
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
942
|
+
* @param {dfw_userCountArgs} args - Arguments to filter Dfw_users to count.
|
|
943
|
+
* @example
|
|
944
|
+
* // Count the number of Dfw_users
|
|
945
|
+
* const count = await prisma.dfw_user.count({
|
|
946
|
+
* where: {
|
|
947
|
+
* // ... the filter for the Dfw_users we want to count
|
|
948
|
+
* }
|
|
949
|
+
* })
|
|
950
|
+
**/
|
|
951
|
+
count<T extends dfw_userCountArgs>(args?: Prisma.Subset<T, dfw_userCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], Dfw_userCountAggregateOutputType> : number>;
|
|
952
|
+
/**
|
|
953
|
+
* Allows you to perform aggregations operations on a Dfw_user.
|
|
954
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
955
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
956
|
+
* @param {Dfw_userAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
957
|
+
* @example
|
|
958
|
+
* // Ordered by age ascending
|
|
959
|
+
* // Where email contains prisma.io
|
|
960
|
+
* // Limited to the 10 users
|
|
961
|
+
* const aggregations = await prisma.user.aggregate({
|
|
962
|
+
* _avg: {
|
|
963
|
+
* age: true,
|
|
964
|
+
* },
|
|
965
|
+
* where: {
|
|
966
|
+
* email: {
|
|
967
|
+
* contains: "prisma.io",
|
|
968
|
+
* },
|
|
969
|
+
* },
|
|
970
|
+
* orderBy: {
|
|
971
|
+
* age: "asc",
|
|
972
|
+
* },
|
|
973
|
+
* take: 10,
|
|
974
|
+
* })
|
|
975
|
+
**/
|
|
976
|
+
aggregate<T extends Dfw_userAggregateArgs>(args: Prisma.Subset<T, Dfw_userAggregateArgs>): Prisma.PrismaPromise<GetDfw_userAggregateType<T>>;
|
|
977
|
+
/**
|
|
978
|
+
* Group by Dfw_user.
|
|
979
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
980
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
981
|
+
* @param {dfw_userGroupByArgs} args - Group by arguments.
|
|
982
|
+
* @example
|
|
983
|
+
* // Group by city, order by createdAt, get count
|
|
984
|
+
* const result = await prisma.user.groupBy({
|
|
985
|
+
* by: ['city', 'createdAt'],
|
|
986
|
+
* orderBy: {
|
|
987
|
+
* createdAt: true
|
|
988
|
+
* },
|
|
989
|
+
* _count: {
|
|
990
|
+
* _all: true
|
|
991
|
+
* },
|
|
992
|
+
* })
|
|
993
|
+
*
|
|
994
|
+
**/
|
|
995
|
+
groupBy<T extends dfw_userGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
996
|
+
orderBy: dfw_userGroupByArgs['orderBy'];
|
|
997
|
+
} : {
|
|
998
|
+
orderBy?: dfw_userGroupByArgs['orderBy'];
|
|
999
|
+
}, 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 ? {
|
|
1000
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
1001
|
+
Error,
|
|
1002
|
+
'Field ',
|
|
1003
|
+
P,
|
|
1004
|
+
` in "having" needs to be provided in "by"`
|
|
1005
|
+
];
|
|
1006
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
1007
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1008
|
+
}[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 ? {} : {
|
|
1009
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1010
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
1011
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1012
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, dfw_userGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetDfw_userGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
1013
|
+
/**
|
|
1014
|
+
* Fields of the dfw_user model
|
|
1015
|
+
*/
|
|
1016
|
+
readonly fields: dfw_userFieldRefs;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* The delegate class that acts as a "Promise-like" for dfw_user.
|
|
1020
|
+
* Why is this prefixed with `Prisma__`?
|
|
1021
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
1022
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
1023
|
+
*/
|
|
1024
|
+
export interface Prisma__dfw_userClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1025
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1026
|
+
credentials<T extends Prisma.dfw_user$credentialsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_user$credentialsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1027
|
+
files<T extends Prisma.dfw_user$filesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_user$filesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_filePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1028
|
+
sessions<T extends Prisma.dfw_user$sessionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_user$sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_sessionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1029
|
+
/**
|
|
1030
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1031
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
1032
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1033
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
1034
|
+
*/
|
|
1035
|
+
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>;
|
|
1036
|
+
/**
|
|
1037
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
1038
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1039
|
+
* @returns A Promise for the completion of the callback.
|
|
1040
|
+
*/
|
|
1041
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
1042
|
+
/**
|
|
1043
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
1044
|
+
* resolved value cannot be modified from the callback.
|
|
1045
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
1046
|
+
* @returns A Promise for the completion of the callback.
|
|
1047
|
+
*/
|
|
1048
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
1049
|
+
}
|
|
1050
|
+
/**
|
|
1051
|
+
* Fields of the dfw_user model
|
|
1052
|
+
*/
|
|
1053
|
+
export interface dfw_userFieldRefs {
|
|
1054
|
+
readonly id: Prisma.FieldRef<"dfw_user", 'String'>;
|
|
1055
|
+
readonly name: Prisma.FieldRef<"dfw_user", 'String'>;
|
|
1056
|
+
readonly email: Prisma.FieldRef<"dfw_user", 'String'>;
|
|
1057
|
+
readonly displayName: Prisma.FieldRef<"dfw_user", 'String'>;
|
|
1058
|
+
readonly encodedKey: Prisma.FieldRef<"dfw_user", 'String'>;
|
|
1059
|
+
readonly createdAt: Prisma.FieldRef<"dfw_user", 'DateTime'>;
|
|
1060
|
+
readonly updatedAt: Prisma.FieldRef<"dfw_user", 'DateTime'>;
|
|
1061
|
+
}
|
|
1062
|
+
/**
|
|
1063
|
+
* dfw_user findUnique
|
|
1064
|
+
*/
|
|
1065
|
+
export type dfw_userFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1066
|
+
/**
|
|
1067
|
+
* Select specific fields to fetch from the dfw_user
|
|
1068
|
+
*/
|
|
1069
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1070
|
+
/**
|
|
1071
|
+
* Omit specific fields from the dfw_user
|
|
1072
|
+
*/
|
|
1073
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1074
|
+
/**
|
|
1075
|
+
* Choose, which related nodes to fetch as well
|
|
1076
|
+
*/
|
|
1077
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1078
|
+
/**
|
|
1079
|
+
* Filter, which dfw_user to fetch.
|
|
1080
|
+
*/
|
|
1081
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
1082
|
+
};
|
|
1083
|
+
/**
|
|
1084
|
+
* dfw_user findUniqueOrThrow
|
|
1085
|
+
*/
|
|
1086
|
+
export type dfw_userFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1087
|
+
/**
|
|
1088
|
+
* Select specific fields to fetch from the dfw_user
|
|
1089
|
+
*/
|
|
1090
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1091
|
+
/**
|
|
1092
|
+
* Omit specific fields from the dfw_user
|
|
1093
|
+
*/
|
|
1094
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1095
|
+
/**
|
|
1096
|
+
* Choose, which related nodes to fetch as well
|
|
1097
|
+
*/
|
|
1098
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1099
|
+
/**
|
|
1100
|
+
* Filter, which dfw_user to fetch.
|
|
1101
|
+
*/
|
|
1102
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
1103
|
+
};
|
|
1104
|
+
/**
|
|
1105
|
+
* dfw_user findFirst
|
|
1106
|
+
*/
|
|
1107
|
+
export type dfw_userFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1108
|
+
/**
|
|
1109
|
+
* Select specific fields to fetch from the dfw_user
|
|
1110
|
+
*/
|
|
1111
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1112
|
+
/**
|
|
1113
|
+
* Omit specific fields from the dfw_user
|
|
1114
|
+
*/
|
|
1115
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1116
|
+
/**
|
|
1117
|
+
* Choose, which related nodes to fetch as well
|
|
1118
|
+
*/
|
|
1119
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1120
|
+
/**
|
|
1121
|
+
* Filter, which dfw_user to fetch.
|
|
1122
|
+
*/
|
|
1123
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1124
|
+
/**
|
|
1125
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1126
|
+
*
|
|
1127
|
+
* Determine the order of dfw_users to fetch.
|
|
1128
|
+
*/
|
|
1129
|
+
orderBy?: Prisma.dfw_userOrderByWithRelationInput | Prisma.dfw_userOrderByWithRelationInput[];
|
|
1130
|
+
/**
|
|
1131
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1132
|
+
*
|
|
1133
|
+
* Sets the position for searching for dfw_users.
|
|
1134
|
+
*/
|
|
1135
|
+
cursor?: Prisma.dfw_userWhereUniqueInput;
|
|
1136
|
+
/**
|
|
1137
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1138
|
+
*
|
|
1139
|
+
* Take `±n` dfw_users from the position of the cursor.
|
|
1140
|
+
*/
|
|
1141
|
+
take?: number;
|
|
1142
|
+
/**
|
|
1143
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1144
|
+
*
|
|
1145
|
+
* Skip the first `n` dfw_users.
|
|
1146
|
+
*/
|
|
1147
|
+
skip?: number;
|
|
1148
|
+
/**
|
|
1149
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1150
|
+
*
|
|
1151
|
+
* Filter by unique combinations of dfw_users.
|
|
1152
|
+
*/
|
|
1153
|
+
distinct?: Prisma.Dfw_userScalarFieldEnum | Prisma.Dfw_userScalarFieldEnum[];
|
|
1154
|
+
};
|
|
1155
|
+
/**
|
|
1156
|
+
* dfw_user findFirstOrThrow
|
|
1157
|
+
*/
|
|
1158
|
+
export type dfw_userFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1159
|
+
/**
|
|
1160
|
+
* Select specific fields to fetch from the dfw_user
|
|
1161
|
+
*/
|
|
1162
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1163
|
+
/**
|
|
1164
|
+
* Omit specific fields from the dfw_user
|
|
1165
|
+
*/
|
|
1166
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1167
|
+
/**
|
|
1168
|
+
* Choose, which related nodes to fetch as well
|
|
1169
|
+
*/
|
|
1170
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1171
|
+
/**
|
|
1172
|
+
* Filter, which dfw_user to fetch.
|
|
1173
|
+
*/
|
|
1174
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1175
|
+
/**
|
|
1176
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1177
|
+
*
|
|
1178
|
+
* Determine the order of dfw_users to fetch.
|
|
1179
|
+
*/
|
|
1180
|
+
orderBy?: Prisma.dfw_userOrderByWithRelationInput | Prisma.dfw_userOrderByWithRelationInput[];
|
|
1181
|
+
/**
|
|
1182
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1183
|
+
*
|
|
1184
|
+
* Sets the position for searching for dfw_users.
|
|
1185
|
+
*/
|
|
1186
|
+
cursor?: Prisma.dfw_userWhereUniqueInput;
|
|
1187
|
+
/**
|
|
1188
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1189
|
+
*
|
|
1190
|
+
* Take `±n` dfw_users from the position of the cursor.
|
|
1191
|
+
*/
|
|
1192
|
+
take?: number;
|
|
1193
|
+
/**
|
|
1194
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1195
|
+
*
|
|
1196
|
+
* Skip the first `n` dfw_users.
|
|
1197
|
+
*/
|
|
1198
|
+
skip?: number;
|
|
1199
|
+
/**
|
|
1200
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1201
|
+
*
|
|
1202
|
+
* Filter by unique combinations of dfw_users.
|
|
1203
|
+
*/
|
|
1204
|
+
distinct?: Prisma.Dfw_userScalarFieldEnum | Prisma.Dfw_userScalarFieldEnum[];
|
|
1205
|
+
};
|
|
1206
|
+
/**
|
|
1207
|
+
* dfw_user findMany
|
|
1208
|
+
*/
|
|
1209
|
+
export type dfw_userFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1210
|
+
/**
|
|
1211
|
+
* Select specific fields to fetch from the dfw_user
|
|
1212
|
+
*/
|
|
1213
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1214
|
+
/**
|
|
1215
|
+
* Omit specific fields from the dfw_user
|
|
1216
|
+
*/
|
|
1217
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* Choose, which related nodes to fetch as well
|
|
1220
|
+
*/
|
|
1221
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1222
|
+
/**
|
|
1223
|
+
* Filter, which dfw_users to fetch.
|
|
1224
|
+
*/
|
|
1225
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1226
|
+
/**
|
|
1227
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1228
|
+
*
|
|
1229
|
+
* Determine the order of dfw_users to fetch.
|
|
1230
|
+
*/
|
|
1231
|
+
orderBy?: Prisma.dfw_userOrderByWithRelationInput | Prisma.dfw_userOrderByWithRelationInput[];
|
|
1232
|
+
/**
|
|
1233
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1234
|
+
*
|
|
1235
|
+
* Sets the position for listing dfw_users.
|
|
1236
|
+
*/
|
|
1237
|
+
cursor?: Prisma.dfw_userWhereUniqueInput;
|
|
1238
|
+
/**
|
|
1239
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1240
|
+
*
|
|
1241
|
+
* Take `±n` dfw_users from the position of the cursor.
|
|
1242
|
+
*/
|
|
1243
|
+
take?: number;
|
|
1244
|
+
/**
|
|
1245
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1246
|
+
*
|
|
1247
|
+
* Skip the first `n` dfw_users.
|
|
1248
|
+
*/
|
|
1249
|
+
skip?: number;
|
|
1250
|
+
distinct?: Prisma.Dfw_userScalarFieldEnum | Prisma.Dfw_userScalarFieldEnum[];
|
|
1251
|
+
};
|
|
1252
|
+
/**
|
|
1253
|
+
* dfw_user create
|
|
1254
|
+
*/
|
|
1255
|
+
export type dfw_userCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1256
|
+
/**
|
|
1257
|
+
* Select specific fields to fetch from the dfw_user
|
|
1258
|
+
*/
|
|
1259
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1260
|
+
/**
|
|
1261
|
+
* Omit specific fields from the dfw_user
|
|
1262
|
+
*/
|
|
1263
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1264
|
+
/**
|
|
1265
|
+
* Choose, which related nodes to fetch as well
|
|
1266
|
+
*/
|
|
1267
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1268
|
+
/**
|
|
1269
|
+
* The data needed to create a dfw_user.
|
|
1270
|
+
*/
|
|
1271
|
+
data: Prisma.XOR<Prisma.dfw_userCreateInput, Prisma.dfw_userUncheckedCreateInput>;
|
|
1272
|
+
};
|
|
1273
|
+
/**
|
|
1274
|
+
* dfw_user createMany
|
|
1275
|
+
*/
|
|
1276
|
+
export type dfw_userCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1277
|
+
/**
|
|
1278
|
+
* The data used to create many dfw_users.
|
|
1279
|
+
*/
|
|
1280
|
+
data: Prisma.dfw_userCreateManyInput | Prisma.dfw_userCreateManyInput[];
|
|
1281
|
+
skipDuplicates?: boolean;
|
|
1282
|
+
};
|
|
1283
|
+
/**
|
|
1284
|
+
* dfw_user createManyAndReturn
|
|
1285
|
+
*/
|
|
1286
|
+
export type dfw_userCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1287
|
+
/**
|
|
1288
|
+
* Select specific fields to fetch from the dfw_user
|
|
1289
|
+
*/
|
|
1290
|
+
select?: Prisma.dfw_userSelectCreateManyAndReturn<ExtArgs> | null;
|
|
1291
|
+
/**
|
|
1292
|
+
* Omit specific fields from the dfw_user
|
|
1293
|
+
*/
|
|
1294
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1295
|
+
/**
|
|
1296
|
+
* The data used to create many dfw_users.
|
|
1297
|
+
*/
|
|
1298
|
+
data: Prisma.dfw_userCreateManyInput | Prisma.dfw_userCreateManyInput[];
|
|
1299
|
+
skipDuplicates?: boolean;
|
|
1300
|
+
};
|
|
1301
|
+
/**
|
|
1302
|
+
* dfw_user update
|
|
1303
|
+
*/
|
|
1304
|
+
export type dfw_userUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1305
|
+
/**
|
|
1306
|
+
* Select specific fields to fetch from the dfw_user
|
|
1307
|
+
*/
|
|
1308
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1309
|
+
/**
|
|
1310
|
+
* Omit specific fields from the dfw_user
|
|
1311
|
+
*/
|
|
1312
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* Choose, which related nodes to fetch as well
|
|
1315
|
+
*/
|
|
1316
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1317
|
+
/**
|
|
1318
|
+
* The data needed to update a dfw_user.
|
|
1319
|
+
*/
|
|
1320
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateInput, Prisma.dfw_userUncheckedUpdateInput>;
|
|
1321
|
+
/**
|
|
1322
|
+
* Choose, which dfw_user to update.
|
|
1323
|
+
*/
|
|
1324
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
1325
|
+
};
|
|
1326
|
+
/**
|
|
1327
|
+
* dfw_user updateMany
|
|
1328
|
+
*/
|
|
1329
|
+
export type dfw_userUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1330
|
+
/**
|
|
1331
|
+
* The data used to update dfw_users.
|
|
1332
|
+
*/
|
|
1333
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateManyMutationInput, Prisma.dfw_userUncheckedUpdateManyInput>;
|
|
1334
|
+
/**
|
|
1335
|
+
* Filter which dfw_users to update
|
|
1336
|
+
*/
|
|
1337
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1338
|
+
/**
|
|
1339
|
+
* Limit how many dfw_users to update.
|
|
1340
|
+
*/
|
|
1341
|
+
limit?: number;
|
|
1342
|
+
};
|
|
1343
|
+
/**
|
|
1344
|
+
* dfw_user updateManyAndReturn
|
|
1345
|
+
*/
|
|
1346
|
+
export type dfw_userUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1347
|
+
/**
|
|
1348
|
+
* Select specific fields to fetch from the dfw_user
|
|
1349
|
+
*/
|
|
1350
|
+
select?: Prisma.dfw_userSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
1351
|
+
/**
|
|
1352
|
+
* Omit specific fields from the dfw_user
|
|
1353
|
+
*/
|
|
1354
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1355
|
+
/**
|
|
1356
|
+
* The data used to update dfw_users.
|
|
1357
|
+
*/
|
|
1358
|
+
data: Prisma.XOR<Prisma.dfw_userUpdateManyMutationInput, Prisma.dfw_userUncheckedUpdateManyInput>;
|
|
1359
|
+
/**
|
|
1360
|
+
* Filter which dfw_users to update
|
|
1361
|
+
*/
|
|
1362
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1363
|
+
/**
|
|
1364
|
+
* Limit how many dfw_users to update.
|
|
1365
|
+
*/
|
|
1366
|
+
limit?: number;
|
|
1367
|
+
};
|
|
1368
|
+
/**
|
|
1369
|
+
* dfw_user upsert
|
|
1370
|
+
*/
|
|
1371
|
+
export type dfw_userUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1372
|
+
/**
|
|
1373
|
+
* Select specific fields to fetch from the dfw_user
|
|
1374
|
+
*/
|
|
1375
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1376
|
+
/**
|
|
1377
|
+
* Omit specific fields from the dfw_user
|
|
1378
|
+
*/
|
|
1379
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1380
|
+
/**
|
|
1381
|
+
* Choose, which related nodes to fetch as well
|
|
1382
|
+
*/
|
|
1383
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1384
|
+
/**
|
|
1385
|
+
* The filter to search for the dfw_user to update in case it exists.
|
|
1386
|
+
*/
|
|
1387
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
1388
|
+
/**
|
|
1389
|
+
* In case the dfw_user found by the `where` argument doesn't exist, create a new dfw_user with this data.
|
|
1390
|
+
*/
|
|
1391
|
+
create: Prisma.XOR<Prisma.dfw_userCreateInput, Prisma.dfw_userUncheckedCreateInput>;
|
|
1392
|
+
/**
|
|
1393
|
+
* In case the dfw_user was found with the provided `where` argument, update it with this data.
|
|
1394
|
+
*/
|
|
1395
|
+
update: Prisma.XOR<Prisma.dfw_userUpdateInput, Prisma.dfw_userUncheckedUpdateInput>;
|
|
1396
|
+
};
|
|
1397
|
+
/**
|
|
1398
|
+
* dfw_user delete
|
|
1399
|
+
*/
|
|
1400
|
+
export type dfw_userDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1401
|
+
/**
|
|
1402
|
+
* Select specific fields to fetch from the dfw_user
|
|
1403
|
+
*/
|
|
1404
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1405
|
+
/**
|
|
1406
|
+
* Omit specific fields from the dfw_user
|
|
1407
|
+
*/
|
|
1408
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1409
|
+
/**
|
|
1410
|
+
* Choose, which related nodes to fetch as well
|
|
1411
|
+
*/
|
|
1412
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1413
|
+
/**
|
|
1414
|
+
* Filter which dfw_user to delete.
|
|
1415
|
+
*/
|
|
1416
|
+
where: Prisma.dfw_userWhereUniqueInput;
|
|
1417
|
+
};
|
|
1418
|
+
/**
|
|
1419
|
+
* dfw_user deleteMany
|
|
1420
|
+
*/
|
|
1421
|
+
export type dfw_userDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1422
|
+
/**
|
|
1423
|
+
* Filter which dfw_users to delete
|
|
1424
|
+
*/
|
|
1425
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1426
|
+
/**
|
|
1427
|
+
* Limit how many dfw_users to delete.
|
|
1428
|
+
*/
|
|
1429
|
+
limit?: number;
|
|
1430
|
+
};
|
|
1431
|
+
/**
|
|
1432
|
+
* dfw_user.credentials
|
|
1433
|
+
*/
|
|
1434
|
+
export type dfw_user$credentialsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1435
|
+
/**
|
|
1436
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1437
|
+
*/
|
|
1438
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1439
|
+
/**
|
|
1440
|
+
* Omit specific fields from the dfw_credential
|
|
1441
|
+
*/
|
|
1442
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1443
|
+
/**
|
|
1444
|
+
* Choose, which related nodes to fetch as well
|
|
1445
|
+
*/
|
|
1446
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1447
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
1448
|
+
orderBy?: Prisma.dfw_credentialOrderByWithRelationInput | Prisma.dfw_credentialOrderByWithRelationInput[];
|
|
1449
|
+
cursor?: Prisma.dfw_credentialWhereUniqueInput;
|
|
1450
|
+
take?: number;
|
|
1451
|
+
skip?: number;
|
|
1452
|
+
distinct?: Prisma.Dfw_credentialScalarFieldEnum | Prisma.Dfw_credentialScalarFieldEnum[];
|
|
1453
|
+
};
|
|
1454
|
+
/**
|
|
1455
|
+
* dfw_user.files
|
|
1456
|
+
*/
|
|
1457
|
+
export type dfw_user$filesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1458
|
+
/**
|
|
1459
|
+
* Select specific fields to fetch from the dfw_file
|
|
1460
|
+
*/
|
|
1461
|
+
select?: Prisma.dfw_fileSelect<ExtArgs> | null;
|
|
1462
|
+
/**
|
|
1463
|
+
* Omit specific fields from the dfw_file
|
|
1464
|
+
*/
|
|
1465
|
+
omit?: Prisma.dfw_fileOmit<ExtArgs> | null;
|
|
1466
|
+
/**
|
|
1467
|
+
* Choose, which related nodes to fetch as well
|
|
1468
|
+
*/
|
|
1469
|
+
include?: Prisma.dfw_fileInclude<ExtArgs> | null;
|
|
1470
|
+
where?: Prisma.dfw_fileWhereInput;
|
|
1471
|
+
orderBy?: Prisma.dfw_fileOrderByWithRelationInput | Prisma.dfw_fileOrderByWithRelationInput[];
|
|
1472
|
+
cursor?: Prisma.dfw_fileWhereUniqueInput;
|
|
1473
|
+
take?: number;
|
|
1474
|
+
skip?: number;
|
|
1475
|
+
distinct?: Prisma.Dfw_fileScalarFieldEnum | Prisma.Dfw_fileScalarFieldEnum[];
|
|
1476
|
+
};
|
|
1477
|
+
/**
|
|
1478
|
+
* dfw_user.sessions
|
|
1479
|
+
*/
|
|
1480
|
+
export type dfw_user$sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1481
|
+
/**
|
|
1482
|
+
* Select specific fields to fetch from the dfw_session
|
|
1483
|
+
*/
|
|
1484
|
+
select?: Prisma.dfw_sessionSelect<ExtArgs> | null;
|
|
1485
|
+
/**
|
|
1486
|
+
* Omit specific fields from the dfw_session
|
|
1487
|
+
*/
|
|
1488
|
+
omit?: Prisma.dfw_sessionOmit<ExtArgs> | null;
|
|
1489
|
+
/**
|
|
1490
|
+
* Choose, which related nodes to fetch as well
|
|
1491
|
+
*/
|
|
1492
|
+
include?: Prisma.dfw_sessionInclude<ExtArgs> | null;
|
|
1493
|
+
where?: Prisma.dfw_sessionWhereInput;
|
|
1494
|
+
orderBy?: Prisma.dfw_sessionOrderByWithRelationInput | Prisma.dfw_sessionOrderByWithRelationInput[];
|
|
1495
|
+
cursor?: Prisma.dfw_sessionWhereUniqueInput;
|
|
1496
|
+
take?: number;
|
|
1497
|
+
skip?: number;
|
|
1498
|
+
distinct?: Prisma.Dfw_sessionScalarFieldEnum | Prisma.Dfw_sessionScalarFieldEnum[];
|
|
1499
|
+
};
|
|
1500
|
+
/**
|
|
1501
|
+
* dfw_user without action
|
|
1502
|
+
*/
|
|
1503
|
+
export type dfw_userDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1504
|
+
/**
|
|
1505
|
+
* Select specific fields to fetch from the dfw_user
|
|
1506
|
+
*/
|
|
1507
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1508
|
+
/**
|
|
1509
|
+
* Omit specific fields from the dfw_user
|
|
1510
|
+
*/
|
|
1511
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1512
|
+
/**
|
|
1513
|
+
* Choose, which related nodes to fetch as well
|
|
1514
|
+
*/
|
|
1515
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1516
|
+
};
|
|
1517
|
+
export {};
|
|
1518
|
+
//# sourceMappingURL=dfw_user.d.ts.map
|