@scefira/dfw 1.3.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/guards/BodyValidatorGuard.d.ts +3 -0
- package/dist/cjs/guards/BodyValidatorGuard.d.ts.map +1 -0
- package/dist/cjs/guards/BodyValidatorGuard.js +14 -0
- package/dist/cjs/guards/BodyValidatorGuard.js.map +1 -0
- package/dist/cjs/guards/QueryValidationGuard.d.ts +3 -0
- package/dist/cjs/guards/QueryValidationGuard.d.ts.map +1 -0
- package/dist/cjs/guards/QueryValidationGuard.js +14 -0
- package/dist/cjs/guards/QueryValidationGuard.js.map +1 -0
- package/dist/cjs/guards/UserAuthGuard.d.ts +2 -0
- package/dist/cjs/guards/UserAuthGuard.d.ts.map +1 -0
- package/dist/cjs/guards/UserAuthGuard.js +9 -0
- package/dist/cjs/guards/UserAuthGuard.js.map +1 -0
- package/dist/cjs/guards/index.d.ts +4 -0
- package/dist/cjs/guards/index.d.ts.map +1 -0
- package/dist/cjs/{modules → guards}/index.js +3 -4
- package/dist/cjs/guards/index.js.map +1 -0
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/APIManager.d.ts +3 -3
- package/dist/cjs/lib/APIManager.d.ts.map +1 -1
- package/dist/cjs/lib/APIManager.js +8 -49
- package/dist/cjs/lib/APIManager.js.map +1 -1
- package/dist/cjs/lib/DFWCore.d.ts +39 -20
- package/dist/cjs/lib/DFWCore.d.ts.map +1 -1
- package/dist/cjs/lib/DFWCore.js +39 -23
- package/dist/cjs/lib/DFWCore.js.map +1 -1
- package/dist/cjs/lib/DFWPassportStrategy.d.ts +2 -1
- package/dist/cjs/lib/DFWPassportStrategy.d.ts.map +1 -1
- package/dist/cjs/lib/DFWPassportStrategy.js +5 -4
- package/dist/cjs/lib/DFWPassportStrategy.js.map +1 -1
- package/dist/cjs/lib/DFWRepository.d.ts +16 -0
- package/dist/cjs/lib/DFWRepository.d.ts.map +1 -0
- package/dist/cjs/lib/{DFWModule.js → DFWRepository.js} +13 -16
- package/dist/cjs/lib/DFWRepository.js.map +1 -0
- package/dist/cjs/lib/DFWService.d.ts +10 -10
- package/dist/cjs/lib/DFWService.d.ts.map +1 -1
- package/dist/cjs/lib/DFWService.js +22 -11
- package/dist/cjs/lib/DFWService.js.map +1 -1
- package/dist/cjs/lib/DFWSessionStore.d.ts +1 -1
- package/dist/cjs/lib/DFWSessionStore.d.ts.map +1 -1
- package/dist/cjs/lib/DFWSessionStore.js.map +1 -1
- package/dist/cjs/lib/DFWUtils.d.ts +0 -3
- package/dist/cjs/lib/DFWUtils.d.ts.map +1 -1
- package/dist/cjs/lib/DFWUtils.js +1 -14
- package/dist/cjs/lib/DFWUtils.js.map +1 -1
- package/dist/cjs/lib/index.d.ts +0 -2
- package/dist/cjs/lib/index.d.ts.map +1 -1
- package/dist/cjs/lib/index.js +0 -2
- package/dist/cjs/lib/index.js.map +1 -1
- package/dist/cjs/listeners/index.d.ts +0 -6
- package/dist/cjs/listeners/index.d.ts.map +1 -1
- package/dist/cjs/listeners/index.js +0 -6
- package/dist/cjs/listeners/index.js.map +1 -1
- package/dist/cjs/makers/index.d.ts +5 -0
- package/dist/cjs/makers/index.d.ts.map +1 -0
- package/dist/cjs/makers/index.js +21 -0
- package/dist/cjs/makers/index.js.map +1 -0
- package/dist/cjs/makers/makeGuard.d.ts +4 -0
- package/dist/cjs/makers/makeGuard.d.ts.map +1 -0
- package/dist/cjs/{listeners/DFWLogoutListener.js → makers/makeGuard.js} +13 -18
- package/dist/cjs/makers/makeGuard.js.map +1 -0
- package/dist/cjs/makers/makeListener.d.ts +6 -0
- package/dist/cjs/makers/makeListener.d.ts.map +1 -0
- package/dist/cjs/{lib/APIListener.js → makers/makeListener.js} +4 -4
- package/dist/cjs/makers/makeListener.js.map +1 -0
- package/dist/cjs/makers/makeRepository.d.ts +6 -0
- package/dist/cjs/makers/makeRepository.d.ts.map +1 -0
- package/dist/cjs/makers/makeRepository.js +20 -0
- package/dist/cjs/makers/makeRepository.js.map +1 -0
- package/dist/cjs/makers/makeService.d.ts +6 -0
- package/dist/cjs/makers/makeService.d.ts.map +1 -0
- package/dist/cjs/makers/makeService.js +22 -0
- package/dist/cjs/makers/makeService.js.map +1 -0
- package/dist/cjs/prisma/browser.d.ts +30 -0
- package/dist/cjs/prisma/browser.d.ts.map +1 -0
- package/dist/cjs/prisma/browser.js +57 -0
- package/dist/cjs/prisma/browser.js.map +1 -0
- package/dist/cjs/prisma/client.d.ts +47 -0
- package/dist/cjs/prisma/client.d.ts.map +1 -0
- package/dist/cjs/prisma/client.js +72 -0
- package/dist/cjs/prisma/client.js.map +1 -0
- package/dist/cjs/prisma/commonInputTypes.d.ts +422 -0
- package/dist/cjs/prisma/commonInputTypes.d.ts.map +1 -0
- package/dist/cjs/prisma/commonInputTypes.js +12 -0
- package/dist/cjs/prisma/commonInputTypes.js.map +1 -0
- package/dist/cjs/prisma/enums.d.ts +6 -0
- package/dist/cjs/prisma/enums.d.ts.map +1 -0
- package/dist/cjs/prisma/enums.js +17 -0
- package/dist/cjs/prisma/enums.js.map +1 -0
- package/dist/cjs/prisma/internal/class.d.ts +171 -0
- package/dist/cjs/prisma/internal/class.d.ts.map +1 -0
- package/dist/cjs/prisma/internal/class.js +88 -0
- package/dist/cjs/prisma/internal/class.js.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespace.d.ts +913 -0
- package/dist/cjs/prisma/internal/prismaNamespace.d.ts.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespace.js +190 -0
- package/dist/cjs/prisma/internal/prismaNamespace.js.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.d.ts +121 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.d.ts.map +1 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.js +161 -0
- package/dist/cjs/prisma/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_access.d.ts +1169 -0
- package/dist/cjs/prisma/models/dfw_access.d.ts.map +1 -0
- package/dist/cjs/{types/DFWService.js → prisma/models/dfw_access.js} +1 -1
- package/dist/cjs/prisma/models/dfw_access.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_credential.d.ts +1300 -0
- package/dist/cjs/prisma/models/dfw_credential.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_credential.js +3 -0
- package/dist/cjs/prisma/models/dfw_credential.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_file.d.ts +1933 -0
- package/dist/cjs/prisma/models/dfw_file.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_file.js +3 -0
- package/dist/cjs/prisma/models/dfw_file.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_session.d.ts +1263 -0
- package/dist/cjs/prisma/models/dfw_session.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_session.js +3 -0
- package/dist/cjs/prisma/models/dfw_session.js.map +1 -0
- package/dist/cjs/prisma/models/dfw_user.d.ts +1518 -0
- package/dist/cjs/prisma/models/dfw_user.d.ts.map +1 -0
- package/dist/cjs/prisma/models/dfw_user.js +3 -0
- package/dist/cjs/prisma/models/dfw_user.js.map +1 -0
- package/dist/cjs/prisma/models.d.ts +7 -0
- package/dist/cjs/prisma/models.d.ts.map +1 -0
- package/dist/cjs/{types/DFWModule.js → prisma/models.js} +1 -1
- package/dist/cjs/prisma/models.js.map +1 -0
- package/dist/cjs/repositories/DFWSecurityRepository.d.ts +36 -0
- package/dist/cjs/repositories/DFWSecurityRepository.d.ts.map +1 -0
- package/dist/cjs/{modules/DFWSecurityModule.js → repositories/DFWSecurityRepository.js} +41 -31
- package/dist/cjs/repositories/DFWSecurityRepository.js.map +1 -0
- package/dist/cjs/repositories/DFWSessionRepository.d.ts +13 -0
- package/dist/cjs/repositories/DFWSessionRepository.d.ts.map +1 -0
- package/dist/cjs/{modules/DFWSessionModule.js → repositories/DFWSessionRepository.js} +16 -10
- package/dist/cjs/repositories/DFWSessionRepository.js.map +1 -0
- package/dist/cjs/repositories/DFWUserRepository.d.ts +25 -0
- package/dist/cjs/repositories/DFWUserRepository.d.ts.map +1 -0
- package/dist/cjs/{modules/DFWUserModule.js → repositories/DFWUserRepository.js} +18 -12
- package/dist/cjs/repositories/DFWUserRepository.js.map +1 -0
- package/dist/cjs/repositories/index.d.ts +4 -0
- package/dist/cjs/repositories/index.d.ts.map +1 -0
- package/dist/cjs/repositories/index.js +20 -0
- package/dist/cjs/repositories/index.js.map +1 -0
- package/dist/cjs/test.d.ts +1 -26
- package/dist/cjs/test.d.ts.map +1 -1
- package/dist/cjs/test.dfw.d.ts +3 -0
- package/dist/cjs/test.dfw.d.ts.map +1 -0
- package/dist/cjs/test.dfw.js +15 -0
- package/dist/cjs/test.dfw.js.map +1 -0
- package/dist/cjs/test.guard.d.ts +2 -0
- package/dist/cjs/test.guard.d.ts.map +1 -0
- package/dist/cjs/test.guard.js +10 -0
- package/dist/cjs/test.guard.js.map +1 -0
- package/dist/cjs/test.js +103 -72
- package/dist/cjs/test.js.map +1 -1
- package/dist/cjs/test.repository.d.ts +12 -0
- package/dist/cjs/test.repository.d.ts.map +1 -0
- package/dist/cjs/test.repository.js +21 -0
- package/dist/cjs/test.repository.js.map +1 -0
- package/dist/cjs/test.service.d.ts +26 -0
- package/dist/cjs/test.service.d.ts.map +1 -0
- package/dist/cjs/test.service.js +29 -0
- package/dist/cjs/test.service.js.map +1 -0
- package/dist/cjs/types/APIListener.d.ts +7 -25
- package/dist/cjs/types/APIListener.d.ts.map +1 -1
- package/dist/cjs/types/DFWConfig.d.ts +4 -13
- package/dist/cjs/types/DFWConfig.d.ts.map +1 -1
- package/dist/cjs/types/DFWDatabase.d.ts +2 -2
- package/dist/cjs/types/DFWDatabase.d.ts.map +1 -1
- package/dist/cjs/types/DFWRequest.d.ts +6 -10
- package/dist/cjs/types/DFWRequest.d.ts.map +1 -1
- package/dist/cjs/types/index.d.ts +0 -1
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/esm/guards/BodyValidatorGuard.d.ts +3 -0
- package/dist/esm/guards/BodyValidatorGuard.d.ts.map +1 -0
- package/dist/esm/guards/BodyValidatorGuard.js +10 -0
- package/dist/esm/guards/BodyValidatorGuard.js.map +1 -0
- package/dist/esm/guards/QueryValidationGuard.d.ts +3 -0
- package/dist/esm/guards/QueryValidationGuard.d.ts.map +1 -0
- package/dist/esm/guards/QueryValidationGuard.js +10 -0
- package/dist/esm/guards/QueryValidationGuard.js.map +1 -0
- package/dist/esm/guards/UserAuthGuard.d.ts +2 -0
- package/dist/esm/guards/UserAuthGuard.d.ts.map +1 -0
- package/dist/esm/guards/UserAuthGuard.js +6 -0
- package/dist/esm/guards/UserAuthGuard.js.map +1 -0
- package/dist/esm/guards/index.d.ts +4 -0
- package/dist/esm/guards/index.d.ts.map +1 -0
- package/dist/esm/guards/index.js +4 -0
- package/dist/esm/guards/index.js.map +1 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/lib/APIManager.d.ts +3 -3
- package/dist/esm/lib/APIManager.d.ts.map +1 -1
- package/dist/esm/lib/APIManager.js +7 -42
- package/dist/esm/lib/APIManager.js.map +1 -1
- package/dist/esm/lib/DFWCore.d.ts +39 -20
- package/dist/esm/lib/DFWCore.d.ts.map +1 -1
- package/dist/esm/lib/DFWCore.js +37 -22
- package/dist/esm/lib/DFWCore.js.map +1 -1
- package/dist/esm/lib/DFWPassportStrategy.d.ts +2 -1
- package/dist/esm/lib/DFWPassportStrategy.d.ts.map +1 -1
- package/dist/esm/lib/DFWPassportStrategy.js +4 -4
- package/dist/esm/lib/DFWPassportStrategy.js.map +1 -1
- package/dist/esm/lib/DFWRepository.d.ts +16 -0
- package/dist/esm/lib/DFWRepository.d.ts.map +1 -0
- package/dist/esm/lib/{DFWModule.js → DFWRepository.js} +11 -13
- package/dist/esm/lib/DFWRepository.js.map +1 -0
- package/dist/esm/lib/DFWService.d.ts +10 -10
- package/dist/esm/lib/DFWService.d.ts.map +1 -1
- package/dist/esm/lib/DFWService.js +22 -10
- package/dist/esm/lib/DFWService.js.map +1 -1
- package/dist/esm/lib/DFWSessionStore.d.ts +1 -1
- package/dist/esm/lib/DFWSessionStore.d.ts.map +1 -1
- package/dist/esm/lib/DFWSessionStore.js.map +1 -1
- package/dist/esm/lib/DFWUtils.d.ts +0 -3
- package/dist/esm/lib/DFWUtils.d.ts.map +1 -1
- package/dist/esm/lib/DFWUtils.js +1 -14
- package/dist/esm/lib/DFWUtils.js.map +1 -1
- package/dist/esm/lib/index.d.ts +0 -2
- package/dist/esm/lib/index.d.ts.map +1 -1
- package/dist/esm/lib/index.js +0 -2
- package/dist/esm/lib/index.js.map +1 -1
- package/dist/esm/listeners/index.d.ts +0 -6
- package/dist/esm/listeners/index.d.ts.map +1 -1
- package/dist/esm/listeners/index.js +0 -6
- package/dist/esm/listeners/index.js.map +1 -1
- package/dist/esm/makers/index.d.ts +5 -0
- package/dist/esm/makers/index.d.ts.map +1 -0
- package/dist/esm/makers/index.js +5 -0
- package/dist/esm/makers/index.js.map +1 -0
- package/dist/esm/makers/makeGuard.d.ts +4 -0
- package/dist/esm/makers/makeGuard.d.ts.map +1 -0
- package/dist/esm/makers/makeGuard.js +12 -0
- package/dist/esm/makers/makeGuard.js.map +1 -0
- package/dist/esm/makers/makeListener.d.ts +6 -0
- package/dist/esm/makers/makeListener.d.ts.map +1 -0
- package/dist/esm/{lib/APIListener.js → makers/makeListener.js} +2 -2
- package/dist/esm/makers/makeListener.js.map +1 -0
- package/dist/esm/makers/makeRepository.d.ts +6 -0
- package/dist/esm/makers/makeRepository.d.ts.map +1 -0
- package/dist/esm/makers/makeRepository.js +17 -0
- package/dist/esm/makers/makeRepository.js.map +1 -0
- package/dist/esm/makers/makeService.d.ts +6 -0
- package/dist/esm/makers/makeService.d.ts.map +1 -0
- package/dist/esm/makers/makeService.js +19 -0
- package/dist/esm/makers/makeService.js.map +1 -0
- package/dist/esm/package.json +3 -1
- package/dist/esm/prisma/browser.d.ts +30 -0
- package/dist/esm/prisma/browser.d.ts.map +1 -0
- package/dist/esm/prisma/browser.js +18 -0
- package/dist/esm/prisma/browser.js.map +1 -0
- package/dist/esm/prisma/client.d.ts +47 -0
- package/dist/esm/prisma/client.d.ts.map +1 -0
- package/dist/esm/prisma/client.js +36 -0
- package/dist/esm/prisma/client.js.map +1 -0
- package/dist/esm/prisma/commonInputTypes.d.ts +422 -0
- package/dist/esm/prisma/commonInputTypes.d.ts.map +1 -0
- package/dist/esm/prisma/commonInputTypes.js +11 -0
- package/dist/esm/prisma/commonInputTypes.js.map +1 -0
- package/dist/esm/prisma/enums.d.ts +6 -0
- package/dist/esm/prisma/enums.d.ts.map +1 -0
- package/dist/esm/prisma/enums.js +14 -0
- package/dist/esm/prisma/enums.js.map +1 -0
- package/dist/esm/prisma/internal/class.d.ts +171 -0
- package/dist/esm/prisma/internal/class.d.ts.map +1 -0
- package/dist/esm/prisma/internal/class.js +41 -0
- package/dist/esm/prisma/internal/class.js.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespace.d.ts +913 -0
- package/dist/esm/prisma/internal/prismaNamespace.d.ts.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespace.js +155 -0
- package/dist/esm/prisma/internal/prismaNamespace.js.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.d.ts +121 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.d.ts.map +1 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.js +125 -0
- package/dist/esm/prisma/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/esm/prisma/models/dfw_access.d.ts +1169 -0
- package/dist/esm/prisma/models/dfw_access.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_access.js +2 -0
- package/dist/esm/prisma/models/dfw_access.js.map +1 -0
- package/dist/esm/prisma/models/dfw_credential.d.ts +1300 -0
- package/dist/esm/prisma/models/dfw_credential.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_credential.js +2 -0
- package/dist/esm/prisma/models/dfw_credential.js.map +1 -0
- package/dist/esm/prisma/models/dfw_file.d.ts +1933 -0
- package/dist/esm/prisma/models/dfw_file.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_file.js +2 -0
- package/dist/esm/prisma/models/dfw_file.js.map +1 -0
- package/dist/esm/prisma/models/dfw_session.d.ts +1263 -0
- package/dist/esm/prisma/models/dfw_session.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_session.js +2 -0
- package/dist/esm/prisma/models/dfw_session.js.map +1 -0
- package/dist/esm/prisma/models/dfw_user.d.ts +1518 -0
- package/dist/esm/prisma/models/dfw_user.d.ts.map +1 -0
- package/dist/esm/prisma/models/dfw_user.js +2 -0
- package/dist/esm/prisma/models/dfw_user.js.map +1 -0
- package/dist/esm/prisma/models.d.ts +7 -0
- package/dist/esm/prisma/models.d.ts.map +1 -0
- package/dist/esm/prisma/models.js +2 -0
- package/dist/esm/prisma/models.js.map +1 -0
- package/dist/esm/repositories/DFWSecurityRepository.d.ts +36 -0
- package/dist/esm/repositories/DFWSecurityRepository.d.ts.map +1 -0
- package/dist/esm/repositories/DFWSecurityRepository.js +101 -0
- package/dist/esm/repositories/DFWSecurityRepository.js.map +1 -0
- package/dist/esm/repositories/DFWSessionRepository.d.ts +13 -0
- package/dist/esm/repositories/DFWSessionRepository.d.ts.map +1 -0
- package/dist/esm/repositories/DFWSessionRepository.js +44 -0
- package/dist/esm/repositories/DFWSessionRepository.js.map +1 -0
- package/dist/esm/repositories/DFWUserRepository.d.ts +25 -0
- package/dist/esm/repositories/DFWUserRepository.d.ts.map +1 -0
- package/dist/esm/repositories/DFWUserRepository.js +39 -0
- package/dist/esm/repositories/DFWUserRepository.js.map +1 -0
- package/dist/esm/repositories/index.d.ts +4 -0
- package/dist/esm/repositories/index.d.ts.map +1 -0
- package/dist/esm/repositories/index.js +4 -0
- package/dist/esm/repositories/index.js.map +1 -0
- package/dist/esm/test.d.ts +1 -26
- package/dist/esm/test.d.ts.map +1 -1
- package/dist/esm/test.dfw.d.ts +3 -0
- package/dist/esm/test.dfw.d.ts.map +1 -0
- package/dist/esm/test.dfw.js +12 -0
- package/dist/esm/test.dfw.js.map +1 -0
- package/dist/esm/test.guard.d.ts +2 -0
- package/dist/esm/test.guard.d.ts.map +1 -0
- package/dist/esm/test.guard.js +7 -0
- package/dist/esm/test.guard.js.map +1 -0
- package/dist/esm/test.js +90 -48
- package/dist/esm/test.js.map +1 -1
- package/dist/esm/test.repository.d.ts +12 -0
- package/dist/esm/test.repository.d.ts.map +1 -0
- package/dist/esm/test.repository.js +7 -0
- package/dist/esm/test.repository.js.map +1 -0
- package/dist/esm/test.service.d.ts +26 -0
- package/dist/esm/test.service.d.ts.map +1 -0
- package/dist/esm/test.service.js +15 -0
- package/dist/esm/test.service.js.map +1 -0
- package/dist/esm/types/APIListener.d.ts +7 -25
- package/dist/esm/types/APIListener.d.ts.map +1 -1
- package/dist/esm/types/DFWConfig.d.ts +4 -13
- package/dist/esm/types/DFWConfig.d.ts.map +1 -1
- package/dist/esm/types/DFWDatabase.d.ts +2 -2
- package/dist/esm/types/DFWDatabase.d.ts.map +1 -1
- package/dist/esm/types/DFWRequest.d.ts +6 -10
- package/dist/esm/types/DFWRequest.d.ts.map +1 -1
- package/dist/esm/types/index.d.ts +0 -1
- package/dist/esm/types/index.d.ts.map +1 -1
- package/package.json +20 -13
- package/prisma/schema/schema.prisma +3 -3
- package/dist/cjs/lib/APIListener.d.ts +0 -9
- package/dist/cjs/lib/APIListener.d.ts.map +0 -1
- package/dist/cjs/lib/APIListener.js.map +0 -1
- package/dist/cjs/lib/DFWModule.d.ts +0 -24
- package/dist/cjs/lib/DFWModule.d.ts.map +0 -1
- package/dist/cjs/lib/DFWModule.js.map +0 -1
- package/dist/cjs/listeners/DELETEListener.d.ts +0 -7
- package/dist/cjs/listeners/DELETEListener.d.ts.map +0 -1
- package/dist/cjs/listeners/DELETEListener.js +0 -8
- package/dist/cjs/listeners/DELETEListener.js.map +0 -1
- package/dist/cjs/listeners/DFWAuthListener.d.ts +0 -10
- package/dist/cjs/listeners/DFWAuthListener.d.ts.map +0 -1
- package/dist/cjs/listeners/DFWAuthListener.js +0 -35
- package/dist/cjs/listeners/DFWAuthListener.js.map +0 -1
- package/dist/cjs/listeners/DFWLogoutListener.d.ts +0 -9
- package/dist/cjs/listeners/DFWLogoutListener.d.ts.map +0 -1
- package/dist/cjs/listeners/DFWLogoutListener.js.map +0 -1
- package/dist/cjs/listeners/GETListener.d.ts +0 -7
- package/dist/cjs/listeners/GETListener.d.ts.map +0 -1
- package/dist/cjs/listeners/GETListener.js +0 -8
- package/dist/cjs/listeners/GETListener.js.map +0 -1
- package/dist/cjs/listeners/PATCHListener.d.ts +0 -7
- package/dist/cjs/listeners/PATCHListener.d.ts.map +0 -1
- package/dist/cjs/listeners/PATCHListener.js +0 -8
- package/dist/cjs/listeners/PATCHListener.js.map +0 -1
- package/dist/cjs/listeners/POSTListener.d.ts +0 -7
- package/dist/cjs/listeners/POSTListener.d.ts.map +0 -1
- package/dist/cjs/listeners/POSTListener.js +0 -8
- package/dist/cjs/listeners/POSTListener.js.map +0 -1
- package/dist/cjs/listeners/PUTListener.d.ts +0 -7
- package/dist/cjs/listeners/PUTListener.d.ts.map +0 -1
- package/dist/cjs/listeners/PUTListener.js +0 -8
- package/dist/cjs/listeners/PUTListener.js.map +0 -1
- package/dist/cjs/modules/DFWFileModule.d.ts +0 -51
- package/dist/cjs/modules/DFWFileModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWFileModule.js +0 -53
- package/dist/cjs/modules/DFWFileModule.js.map +0 -1
- package/dist/cjs/modules/DFWSecurityModule.d.ts +0 -34
- package/dist/cjs/modules/DFWSecurityModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWSecurityModule.js.map +0 -1
- package/dist/cjs/modules/DFWSessionModule.d.ts +0 -10
- package/dist/cjs/modules/DFWSessionModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWSessionModule.js.map +0 -1
- package/dist/cjs/modules/DFWUserModule.d.ts +0 -23
- package/dist/cjs/modules/DFWUserModule.d.ts.map +0 -1
- package/dist/cjs/modules/DFWUserModule.js.map +0 -1
- package/dist/cjs/modules/index.d.ts +0 -5
- package/dist/cjs/modules/index.d.ts.map +0 -1
- package/dist/cjs/modules/index.js.map +0 -1
- package/dist/cjs/types/DFWModule.d.ts +0 -8
- package/dist/cjs/types/DFWModule.d.ts.map +0 -1
- package/dist/cjs/types/DFWModule.js.map +0 -1
- package/dist/cjs/types/DFWService.d.ts +0 -7
- package/dist/cjs/types/DFWService.d.ts.map +0 -1
- package/dist/cjs/types/DFWService.js.map +0 -1
- package/dist/esm/lib/APIListener.d.ts +0 -9
- package/dist/esm/lib/APIListener.d.ts.map +0 -1
- package/dist/esm/lib/APIListener.js.map +0 -1
- package/dist/esm/lib/DFWModule.d.ts +0 -24
- package/dist/esm/lib/DFWModule.d.ts.map +0 -1
- package/dist/esm/lib/DFWModule.js.map +0 -1
- package/dist/esm/listeners/DELETEListener.d.ts +0 -7
- package/dist/esm/listeners/DELETEListener.d.ts.map +0 -1
- package/dist/esm/listeners/DELETEListener.js +0 -5
- package/dist/esm/listeners/DELETEListener.js.map +0 -1
- package/dist/esm/listeners/DFWAuthListener.d.ts +0 -10
- package/dist/esm/listeners/DFWAuthListener.d.ts.map +0 -1
- package/dist/esm/listeners/DFWAuthListener.js +0 -19
- package/dist/esm/listeners/DFWAuthListener.js.map +0 -1
- package/dist/esm/listeners/DFWLogoutListener.d.ts +0 -9
- package/dist/esm/listeners/DFWLogoutListener.d.ts.map +0 -1
- package/dist/esm/listeners/DFWLogoutListener.js +0 -17
- package/dist/esm/listeners/DFWLogoutListener.js.map +0 -1
- package/dist/esm/listeners/GETListener.d.ts +0 -7
- package/dist/esm/listeners/GETListener.d.ts.map +0 -1
- package/dist/esm/listeners/GETListener.js +0 -5
- package/dist/esm/listeners/GETListener.js.map +0 -1
- package/dist/esm/listeners/PATCHListener.d.ts +0 -7
- package/dist/esm/listeners/PATCHListener.d.ts.map +0 -1
- package/dist/esm/listeners/PATCHListener.js +0 -5
- package/dist/esm/listeners/PATCHListener.js.map +0 -1
- package/dist/esm/listeners/POSTListener.d.ts +0 -7
- package/dist/esm/listeners/POSTListener.d.ts.map +0 -1
- package/dist/esm/listeners/POSTListener.js +0 -5
- package/dist/esm/listeners/POSTListener.js.map +0 -1
- package/dist/esm/listeners/PUTListener.d.ts +0 -7
- package/dist/esm/listeners/PUTListener.d.ts.map +0 -1
- package/dist/esm/listeners/PUTListener.js +0 -5
- package/dist/esm/listeners/PUTListener.js.map +0 -1
- package/dist/esm/modules/DFWFileModule.d.ts +0 -51
- package/dist/esm/modules/DFWFileModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWFileModule.js +0 -44
- package/dist/esm/modules/DFWFileModule.js.map +0 -1
- package/dist/esm/modules/DFWSecurityModule.d.ts +0 -34
- package/dist/esm/modules/DFWSecurityModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWSecurityModule.js +0 -101
- package/dist/esm/modules/DFWSecurityModule.js.map +0 -1
- package/dist/esm/modules/DFWSessionModule.d.ts +0 -10
- package/dist/esm/modules/DFWSessionModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWSessionModule.js +0 -44
- package/dist/esm/modules/DFWSessionModule.js.map +0 -1
- package/dist/esm/modules/DFWUserModule.d.ts +0 -23
- package/dist/esm/modules/DFWUserModule.d.ts.map +0 -1
- package/dist/esm/modules/DFWUserModule.js +0 -39
- package/dist/esm/modules/DFWUserModule.js.map +0 -1
- package/dist/esm/modules/index.d.ts +0 -5
- package/dist/esm/modules/index.d.ts.map +0 -1
- package/dist/esm/modules/index.js +0 -5
- package/dist/esm/modules/index.js.map +0 -1
- package/dist/esm/types/DFWModule.d.ts +0 -8
- package/dist/esm/types/DFWModule.d.ts.map +0 -1
- package/dist/esm/types/DFWModule.js +0 -2
- package/dist/esm/types/DFWModule.js.map +0 -1
- package/dist/esm/types/DFWService.d.ts +0 -7
- package/dist/esm/types/DFWService.d.ts.map +0 -1
- package/dist/esm/types/DFWService.js +0 -2
- package/dist/esm/types/DFWService.js.map +0 -1
|
@@ -0,0 +1,1300 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../internal/prismaNamespace";
|
|
3
|
+
/**
|
|
4
|
+
* Model dfw_credential
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export type dfw_credentialModel = runtime.Types.Result.DefaultSelection<Prisma.$dfw_credentialPayload>;
|
|
8
|
+
export type AggregateDfw_credential = {
|
|
9
|
+
_count: Dfw_credentialCountAggregateOutputType | null;
|
|
10
|
+
_min: Dfw_credentialMinAggregateOutputType | null;
|
|
11
|
+
_max: Dfw_credentialMaxAggregateOutputType | null;
|
|
12
|
+
};
|
|
13
|
+
export type Dfw_credentialMinAggregateOutputType = {
|
|
14
|
+
name: string | null;
|
|
15
|
+
description: string | null;
|
|
16
|
+
createdAt: Date | null;
|
|
17
|
+
updatedAt: Date | null;
|
|
18
|
+
};
|
|
19
|
+
export type Dfw_credentialMaxAggregateOutputType = {
|
|
20
|
+
name: string | null;
|
|
21
|
+
description: string | null;
|
|
22
|
+
createdAt: Date | null;
|
|
23
|
+
updatedAt: Date | null;
|
|
24
|
+
};
|
|
25
|
+
export type Dfw_credentialCountAggregateOutputType = {
|
|
26
|
+
name: number;
|
|
27
|
+
description: number;
|
|
28
|
+
createdAt: number;
|
|
29
|
+
updatedAt: number;
|
|
30
|
+
_all: number;
|
|
31
|
+
};
|
|
32
|
+
export type Dfw_credentialMinAggregateInputType = {
|
|
33
|
+
name?: true;
|
|
34
|
+
description?: true;
|
|
35
|
+
createdAt?: true;
|
|
36
|
+
updatedAt?: true;
|
|
37
|
+
};
|
|
38
|
+
export type Dfw_credentialMaxAggregateInputType = {
|
|
39
|
+
name?: true;
|
|
40
|
+
description?: true;
|
|
41
|
+
createdAt?: true;
|
|
42
|
+
updatedAt?: true;
|
|
43
|
+
};
|
|
44
|
+
export type Dfw_credentialCountAggregateInputType = {
|
|
45
|
+
name?: true;
|
|
46
|
+
description?: true;
|
|
47
|
+
createdAt?: true;
|
|
48
|
+
updatedAt?: true;
|
|
49
|
+
_all?: true;
|
|
50
|
+
};
|
|
51
|
+
export type Dfw_credentialAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
52
|
+
/**
|
|
53
|
+
* Filter which dfw_credential to aggregate.
|
|
54
|
+
*/
|
|
55
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
56
|
+
/**
|
|
57
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58
|
+
*
|
|
59
|
+
* Determine the order of dfw_credentials to fetch.
|
|
60
|
+
*/
|
|
61
|
+
orderBy?: Prisma.dfw_credentialOrderByWithRelationInput | Prisma.dfw_credentialOrderByWithRelationInput[];
|
|
62
|
+
/**
|
|
63
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
64
|
+
*
|
|
65
|
+
* Sets the start position
|
|
66
|
+
*/
|
|
67
|
+
cursor?: Prisma.dfw_credentialWhereUniqueInput;
|
|
68
|
+
/**
|
|
69
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
70
|
+
*
|
|
71
|
+
* Take `±n` dfw_credentials from the position of the cursor.
|
|
72
|
+
*/
|
|
73
|
+
take?: number;
|
|
74
|
+
/**
|
|
75
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76
|
+
*
|
|
77
|
+
* Skip the first `n` dfw_credentials.
|
|
78
|
+
*/
|
|
79
|
+
skip?: number;
|
|
80
|
+
/**
|
|
81
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
82
|
+
*
|
|
83
|
+
* Count returned dfw_credentials
|
|
84
|
+
**/
|
|
85
|
+
_count?: true | Dfw_credentialCountAggregateInputType;
|
|
86
|
+
/**
|
|
87
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
88
|
+
*
|
|
89
|
+
* Select which fields to find the minimum value
|
|
90
|
+
**/
|
|
91
|
+
_min?: Dfw_credentialMinAggregateInputType;
|
|
92
|
+
/**
|
|
93
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
94
|
+
*
|
|
95
|
+
* Select which fields to find the maximum value
|
|
96
|
+
**/
|
|
97
|
+
_max?: Dfw_credentialMaxAggregateInputType;
|
|
98
|
+
};
|
|
99
|
+
export type GetDfw_credentialAggregateType<T extends Dfw_credentialAggregateArgs> = {
|
|
100
|
+
[P in keyof T & keyof AggregateDfw_credential]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateDfw_credential[P]> : Prisma.GetScalarType<T[P], AggregateDfw_credential[P]>;
|
|
101
|
+
};
|
|
102
|
+
export type dfw_credentialGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
103
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
104
|
+
orderBy?: Prisma.dfw_credentialOrderByWithAggregationInput | Prisma.dfw_credentialOrderByWithAggregationInput[];
|
|
105
|
+
by: Prisma.Dfw_credentialScalarFieldEnum[] | Prisma.Dfw_credentialScalarFieldEnum;
|
|
106
|
+
having?: Prisma.dfw_credentialScalarWhereWithAggregatesInput;
|
|
107
|
+
take?: number;
|
|
108
|
+
skip?: number;
|
|
109
|
+
_count?: Dfw_credentialCountAggregateInputType | true;
|
|
110
|
+
_min?: Dfw_credentialMinAggregateInputType;
|
|
111
|
+
_max?: Dfw_credentialMaxAggregateInputType;
|
|
112
|
+
};
|
|
113
|
+
export type Dfw_credentialGroupByOutputType = {
|
|
114
|
+
name: string;
|
|
115
|
+
description: string | null;
|
|
116
|
+
createdAt: Date;
|
|
117
|
+
updatedAt: Date;
|
|
118
|
+
_count: Dfw_credentialCountAggregateOutputType | null;
|
|
119
|
+
_min: Dfw_credentialMinAggregateOutputType | null;
|
|
120
|
+
_max: Dfw_credentialMaxAggregateOutputType | null;
|
|
121
|
+
};
|
|
122
|
+
type GetDfw_credentialGroupByPayload<T extends dfw_credentialGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<Dfw_credentialGroupByOutputType, T['by']> & {
|
|
123
|
+
[P in ((keyof T) & (keyof Dfw_credentialGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], Dfw_credentialGroupByOutputType[P]> : Prisma.GetScalarType<T[P], Dfw_credentialGroupByOutputType[P]>;
|
|
124
|
+
}>>;
|
|
125
|
+
export type dfw_credentialWhereInput = {
|
|
126
|
+
AND?: Prisma.dfw_credentialWhereInput | Prisma.dfw_credentialWhereInput[];
|
|
127
|
+
OR?: Prisma.dfw_credentialWhereInput[];
|
|
128
|
+
NOT?: Prisma.dfw_credentialWhereInput | Prisma.dfw_credentialWhereInput[];
|
|
129
|
+
name?: Prisma.StringFilter<"dfw_credential"> | string;
|
|
130
|
+
description?: Prisma.StringNullableFilter<"dfw_credential"> | string | null;
|
|
131
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_credential"> | Date | string;
|
|
132
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_credential"> | Date | string;
|
|
133
|
+
users?: Prisma.Dfw_userListRelationFilter;
|
|
134
|
+
access?: Prisma.Dfw_accessListRelationFilter;
|
|
135
|
+
};
|
|
136
|
+
export type dfw_credentialOrderByWithRelationInput = {
|
|
137
|
+
name?: Prisma.SortOrder;
|
|
138
|
+
description?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
139
|
+
createdAt?: Prisma.SortOrder;
|
|
140
|
+
updatedAt?: Prisma.SortOrder;
|
|
141
|
+
users?: Prisma.dfw_userOrderByRelationAggregateInput;
|
|
142
|
+
access?: Prisma.dfw_accessOrderByRelationAggregateInput;
|
|
143
|
+
};
|
|
144
|
+
export type dfw_credentialWhereUniqueInput = Prisma.AtLeast<{
|
|
145
|
+
name?: string;
|
|
146
|
+
AND?: Prisma.dfw_credentialWhereInput | Prisma.dfw_credentialWhereInput[];
|
|
147
|
+
OR?: Prisma.dfw_credentialWhereInput[];
|
|
148
|
+
NOT?: Prisma.dfw_credentialWhereInput | Prisma.dfw_credentialWhereInput[];
|
|
149
|
+
description?: Prisma.StringNullableFilter<"dfw_credential"> | string | null;
|
|
150
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_credential"> | Date | string;
|
|
151
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_credential"> | Date | string;
|
|
152
|
+
users?: Prisma.Dfw_userListRelationFilter;
|
|
153
|
+
access?: Prisma.Dfw_accessListRelationFilter;
|
|
154
|
+
}, "name">;
|
|
155
|
+
export type dfw_credentialOrderByWithAggregationInput = {
|
|
156
|
+
name?: Prisma.SortOrder;
|
|
157
|
+
description?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
158
|
+
createdAt?: Prisma.SortOrder;
|
|
159
|
+
updatedAt?: Prisma.SortOrder;
|
|
160
|
+
_count?: Prisma.dfw_credentialCountOrderByAggregateInput;
|
|
161
|
+
_max?: Prisma.dfw_credentialMaxOrderByAggregateInput;
|
|
162
|
+
_min?: Prisma.dfw_credentialMinOrderByAggregateInput;
|
|
163
|
+
};
|
|
164
|
+
export type dfw_credentialScalarWhereWithAggregatesInput = {
|
|
165
|
+
AND?: Prisma.dfw_credentialScalarWhereWithAggregatesInput | Prisma.dfw_credentialScalarWhereWithAggregatesInput[];
|
|
166
|
+
OR?: Prisma.dfw_credentialScalarWhereWithAggregatesInput[];
|
|
167
|
+
NOT?: Prisma.dfw_credentialScalarWhereWithAggregatesInput | Prisma.dfw_credentialScalarWhereWithAggregatesInput[];
|
|
168
|
+
name?: Prisma.StringWithAggregatesFilter<"dfw_credential"> | string;
|
|
169
|
+
description?: Prisma.StringNullableWithAggregatesFilter<"dfw_credential"> | string | null;
|
|
170
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"dfw_credential"> | Date | string;
|
|
171
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"dfw_credential"> | Date | string;
|
|
172
|
+
};
|
|
173
|
+
export type dfw_credentialCreateInput = {
|
|
174
|
+
name: string;
|
|
175
|
+
description?: string | null;
|
|
176
|
+
createdAt?: Date | string;
|
|
177
|
+
updatedAt?: Date | string;
|
|
178
|
+
users?: Prisma.dfw_userCreateNestedManyWithoutCredentialsInput;
|
|
179
|
+
access?: Prisma.dfw_accessCreateNestedManyWithoutCredentialsInput;
|
|
180
|
+
};
|
|
181
|
+
export type dfw_credentialUncheckedCreateInput = {
|
|
182
|
+
name: string;
|
|
183
|
+
description?: string | null;
|
|
184
|
+
createdAt?: Date | string;
|
|
185
|
+
updatedAt?: Date | string;
|
|
186
|
+
users?: Prisma.dfw_userUncheckedCreateNestedManyWithoutCredentialsInput;
|
|
187
|
+
access?: Prisma.dfw_accessUncheckedCreateNestedManyWithoutCredentialsInput;
|
|
188
|
+
};
|
|
189
|
+
export type dfw_credentialUpdateInput = {
|
|
190
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
191
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
192
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
193
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
194
|
+
users?: Prisma.dfw_userUpdateManyWithoutCredentialsNestedInput;
|
|
195
|
+
access?: Prisma.dfw_accessUpdateManyWithoutCredentialsNestedInput;
|
|
196
|
+
};
|
|
197
|
+
export type dfw_credentialUncheckedUpdateInput = {
|
|
198
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
199
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
200
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
201
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
202
|
+
users?: Prisma.dfw_userUncheckedUpdateManyWithoutCredentialsNestedInput;
|
|
203
|
+
access?: Prisma.dfw_accessUncheckedUpdateManyWithoutCredentialsNestedInput;
|
|
204
|
+
};
|
|
205
|
+
export type dfw_credentialCreateManyInput = {
|
|
206
|
+
name: string;
|
|
207
|
+
description?: string | null;
|
|
208
|
+
createdAt?: Date | string;
|
|
209
|
+
updatedAt?: Date | string;
|
|
210
|
+
};
|
|
211
|
+
export type dfw_credentialUpdateManyMutationInput = {
|
|
212
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
213
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
214
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
215
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
216
|
+
};
|
|
217
|
+
export type dfw_credentialUncheckedUpdateManyInput = {
|
|
218
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
219
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
220
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
221
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
222
|
+
};
|
|
223
|
+
export type Dfw_credentialListRelationFilter = {
|
|
224
|
+
every?: Prisma.dfw_credentialWhereInput;
|
|
225
|
+
some?: Prisma.dfw_credentialWhereInput;
|
|
226
|
+
none?: Prisma.dfw_credentialWhereInput;
|
|
227
|
+
};
|
|
228
|
+
export type dfw_credentialOrderByRelationAggregateInput = {
|
|
229
|
+
_count?: Prisma.SortOrder;
|
|
230
|
+
};
|
|
231
|
+
export type dfw_credentialCountOrderByAggregateInput = {
|
|
232
|
+
name?: Prisma.SortOrder;
|
|
233
|
+
description?: Prisma.SortOrder;
|
|
234
|
+
createdAt?: Prisma.SortOrder;
|
|
235
|
+
updatedAt?: Prisma.SortOrder;
|
|
236
|
+
};
|
|
237
|
+
export type dfw_credentialMaxOrderByAggregateInput = {
|
|
238
|
+
name?: Prisma.SortOrder;
|
|
239
|
+
description?: Prisma.SortOrder;
|
|
240
|
+
createdAt?: Prisma.SortOrder;
|
|
241
|
+
updatedAt?: Prisma.SortOrder;
|
|
242
|
+
};
|
|
243
|
+
export type dfw_credentialMinOrderByAggregateInput = {
|
|
244
|
+
name?: Prisma.SortOrder;
|
|
245
|
+
description?: Prisma.SortOrder;
|
|
246
|
+
createdAt?: Prisma.SortOrder;
|
|
247
|
+
updatedAt?: Prisma.SortOrder;
|
|
248
|
+
};
|
|
249
|
+
export type dfw_credentialCreateNestedManyWithoutUsersInput = {
|
|
250
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutUsersInput, Prisma.dfw_credentialUncheckedCreateWithoutUsersInput> | Prisma.dfw_credentialCreateWithoutUsersInput[] | Prisma.dfw_credentialUncheckedCreateWithoutUsersInput[];
|
|
251
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutUsersInput | Prisma.dfw_credentialCreateOrConnectWithoutUsersInput[];
|
|
252
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
253
|
+
};
|
|
254
|
+
export type dfw_credentialUncheckedCreateNestedManyWithoutUsersInput = {
|
|
255
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutUsersInput, Prisma.dfw_credentialUncheckedCreateWithoutUsersInput> | Prisma.dfw_credentialCreateWithoutUsersInput[] | Prisma.dfw_credentialUncheckedCreateWithoutUsersInput[];
|
|
256
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutUsersInput | Prisma.dfw_credentialCreateOrConnectWithoutUsersInput[];
|
|
257
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
258
|
+
};
|
|
259
|
+
export type dfw_credentialUpdateManyWithoutUsersNestedInput = {
|
|
260
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutUsersInput, Prisma.dfw_credentialUncheckedCreateWithoutUsersInput> | Prisma.dfw_credentialCreateWithoutUsersInput[] | Prisma.dfw_credentialUncheckedCreateWithoutUsersInput[];
|
|
261
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutUsersInput | Prisma.dfw_credentialCreateOrConnectWithoutUsersInput[];
|
|
262
|
+
upsert?: Prisma.dfw_credentialUpsertWithWhereUniqueWithoutUsersInput | Prisma.dfw_credentialUpsertWithWhereUniqueWithoutUsersInput[];
|
|
263
|
+
set?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
264
|
+
disconnect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
265
|
+
delete?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
266
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
267
|
+
update?: Prisma.dfw_credentialUpdateWithWhereUniqueWithoutUsersInput | Prisma.dfw_credentialUpdateWithWhereUniqueWithoutUsersInput[];
|
|
268
|
+
updateMany?: Prisma.dfw_credentialUpdateManyWithWhereWithoutUsersInput | Prisma.dfw_credentialUpdateManyWithWhereWithoutUsersInput[];
|
|
269
|
+
deleteMany?: Prisma.dfw_credentialScalarWhereInput | Prisma.dfw_credentialScalarWhereInput[];
|
|
270
|
+
};
|
|
271
|
+
export type dfw_credentialUncheckedUpdateManyWithoutUsersNestedInput = {
|
|
272
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutUsersInput, Prisma.dfw_credentialUncheckedCreateWithoutUsersInput> | Prisma.dfw_credentialCreateWithoutUsersInput[] | Prisma.dfw_credentialUncheckedCreateWithoutUsersInput[];
|
|
273
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutUsersInput | Prisma.dfw_credentialCreateOrConnectWithoutUsersInput[];
|
|
274
|
+
upsert?: Prisma.dfw_credentialUpsertWithWhereUniqueWithoutUsersInput | Prisma.dfw_credentialUpsertWithWhereUniqueWithoutUsersInput[];
|
|
275
|
+
set?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
276
|
+
disconnect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
277
|
+
delete?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
278
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
279
|
+
update?: Prisma.dfw_credentialUpdateWithWhereUniqueWithoutUsersInput | Prisma.dfw_credentialUpdateWithWhereUniqueWithoutUsersInput[];
|
|
280
|
+
updateMany?: Prisma.dfw_credentialUpdateManyWithWhereWithoutUsersInput | Prisma.dfw_credentialUpdateManyWithWhereWithoutUsersInput[];
|
|
281
|
+
deleteMany?: Prisma.dfw_credentialScalarWhereInput | Prisma.dfw_credentialScalarWhereInput[];
|
|
282
|
+
};
|
|
283
|
+
export type dfw_credentialCreateNestedManyWithoutAccessInput = {
|
|
284
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutAccessInput, Prisma.dfw_credentialUncheckedCreateWithoutAccessInput> | Prisma.dfw_credentialCreateWithoutAccessInput[] | Prisma.dfw_credentialUncheckedCreateWithoutAccessInput[];
|
|
285
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutAccessInput | Prisma.dfw_credentialCreateOrConnectWithoutAccessInput[];
|
|
286
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
287
|
+
};
|
|
288
|
+
export type dfw_credentialUncheckedCreateNestedManyWithoutAccessInput = {
|
|
289
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutAccessInput, Prisma.dfw_credentialUncheckedCreateWithoutAccessInput> | Prisma.dfw_credentialCreateWithoutAccessInput[] | Prisma.dfw_credentialUncheckedCreateWithoutAccessInput[];
|
|
290
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutAccessInput | Prisma.dfw_credentialCreateOrConnectWithoutAccessInput[];
|
|
291
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
292
|
+
};
|
|
293
|
+
export type dfw_credentialUpdateManyWithoutAccessNestedInput = {
|
|
294
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutAccessInput, Prisma.dfw_credentialUncheckedCreateWithoutAccessInput> | Prisma.dfw_credentialCreateWithoutAccessInput[] | Prisma.dfw_credentialUncheckedCreateWithoutAccessInput[];
|
|
295
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutAccessInput | Prisma.dfw_credentialCreateOrConnectWithoutAccessInput[];
|
|
296
|
+
upsert?: Prisma.dfw_credentialUpsertWithWhereUniqueWithoutAccessInput | Prisma.dfw_credentialUpsertWithWhereUniqueWithoutAccessInput[];
|
|
297
|
+
set?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
298
|
+
disconnect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
299
|
+
delete?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
300
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
301
|
+
update?: Prisma.dfw_credentialUpdateWithWhereUniqueWithoutAccessInput | Prisma.dfw_credentialUpdateWithWhereUniqueWithoutAccessInput[];
|
|
302
|
+
updateMany?: Prisma.dfw_credentialUpdateManyWithWhereWithoutAccessInput | Prisma.dfw_credentialUpdateManyWithWhereWithoutAccessInput[];
|
|
303
|
+
deleteMany?: Prisma.dfw_credentialScalarWhereInput | Prisma.dfw_credentialScalarWhereInput[];
|
|
304
|
+
};
|
|
305
|
+
export type dfw_credentialUncheckedUpdateManyWithoutAccessNestedInput = {
|
|
306
|
+
create?: Prisma.XOR<Prisma.dfw_credentialCreateWithoutAccessInput, Prisma.dfw_credentialUncheckedCreateWithoutAccessInput> | Prisma.dfw_credentialCreateWithoutAccessInput[] | Prisma.dfw_credentialUncheckedCreateWithoutAccessInput[];
|
|
307
|
+
connectOrCreate?: Prisma.dfw_credentialCreateOrConnectWithoutAccessInput | Prisma.dfw_credentialCreateOrConnectWithoutAccessInput[];
|
|
308
|
+
upsert?: Prisma.dfw_credentialUpsertWithWhereUniqueWithoutAccessInput | Prisma.dfw_credentialUpsertWithWhereUniqueWithoutAccessInput[];
|
|
309
|
+
set?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
310
|
+
disconnect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
311
|
+
delete?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
312
|
+
connect?: Prisma.dfw_credentialWhereUniqueInput | Prisma.dfw_credentialWhereUniqueInput[];
|
|
313
|
+
update?: Prisma.dfw_credentialUpdateWithWhereUniqueWithoutAccessInput | Prisma.dfw_credentialUpdateWithWhereUniqueWithoutAccessInput[];
|
|
314
|
+
updateMany?: Prisma.dfw_credentialUpdateManyWithWhereWithoutAccessInput | Prisma.dfw_credentialUpdateManyWithWhereWithoutAccessInput[];
|
|
315
|
+
deleteMany?: Prisma.dfw_credentialScalarWhereInput | Prisma.dfw_credentialScalarWhereInput[];
|
|
316
|
+
};
|
|
317
|
+
export type dfw_credentialCreateWithoutUsersInput = {
|
|
318
|
+
name: string;
|
|
319
|
+
description?: string | null;
|
|
320
|
+
createdAt?: Date | string;
|
|
321
|
+
updatedAt?: Date | string;
|
|
322
|
+
access?: Prisma.dfw_accessCreateNestedManyWithoutCredentialsInput;
|
|
323
|
+
};
|
|
324
|
+
export type dfw_credentialUncheckedCreateWithoutUsersInput = {
|
|
325
|
+
name: string;
|
|
326
|
+
description?: string | null;
|
|
327
|
+
createdAt?: Date | string;
|
|
328
|
+
updatedAt?: Date | string;
|
|
329
|
+
access?: Prisma.dfw_accessUncheckedCreateNestedManyWithoutCredentialsInput;
|
|
330
|
+
};
|
|
331
|
+
export type dfw_credentialCreateOrConnectWithoutUsersInput = {
|
|
332
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
333
|
+
create: Prisma.XOR<Prisma.dfw_credentialCreateWithoutUsersInput, Prisma.dfw_credentialUncheckedCreateWithoutUsersInput>;
|
|
334
|
+
};
|
|
335
|
+
export type dfw_credentialUpsertWithWhereUniqueWithoutUsersInput = {
|
|
336
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
337
|
+
update: Prisma.XOR<Prisma.dfw_credentialUpdateWithoutUsersInput, Prisma.dfw_credentialUncheckedUpdateWithoutUsersInput>;
|
|
338
|
+
create: Prisma.XOR<Prisma.dfw_credentialCreateWithoutUsersInput, Prisma.dfw_credentialUncheckedCreateWithoutUsersInput>;
|
|
339
|
+
};
|
|
340
|
+
export type dfw_credentialUpdateWithWhereUniqueWithoutUsersInput = {
|
|
341
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
342
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateWithoutUsersInput, Prisma.dfw_credentialUncheckedUpdateWithoutUsersInput>;
|
|
343
|
+
};
|
|
344
|
+
export type dfw_credentialUpdateManyWithWhereWithoutUsersInput = {
|
|
345
|
+
where: Prisma.dfw_credentialScalarWhereInput;
|
|
346
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateManyMutationInput, Prisma.dfw_credentialUncheckedUpdateManyWithoutUsersInput>;
|
|
347
|
+
};
|
|
348
|
+
export type dfw_credentialScalarWhereInput = {
|
|
349
|
+
AND?: Prisma.dfw_credentialScalarWhereInput | Prisma.dfw_credentialScalarWhereInput[];
|
|
350
|
+
OR?: Prisma.dfw_credentialScalarWhereInput[];
|
|
351
|
+
NOT?: Prisma.dfw_credentialScalarWhereInput | Prisma.dfw_credentialScalarWhereInput[];
|
|
352
|
+
name?: Prisma.StringFilter<"dfw_credential"> | string;
|
|
353
|
+
description?: Prisma.StringNullableFilter<"dfw_credential"> | string | null;
|
|
354
|
+
createdAt?: Prisma.DateTimeFilter<"dfw_credential"> | Date | string;
|
|
355
|
+
updatedAt?: Prisma.DateTimeFilter<"dfw_credential"> | Date | string;
|
|
356
|
+
};
|
|
357
|
+
export type dfw_credentialCreateWithoutAccessInput = {
|
|
358
|
+
name: string;
|
|
359
|
+
description?: string | null;
|
|
360
|
+
createdAt?: Date | string;
|
|
361
|
+
updatedAt?: Date | string;
|
|
362
|
+
users?: Prisma.dfw_userCreateNestedManyWithoutCredentialsInput;
|
|
363
|
+
};
|
|
364
|
+
export type dfw_credentialUncheckedCreateWithoutAccessInput = {
|
|
365
|
+
name: string;
|
|
366
|
+
description?: string | null;
|
|
367
|
+
createdAt?: Date | string;
|
|
368
|
+
updatedAt?: Date | string;
|
|
369
|
+
users?: Prisma.dfw_userUncheckedCreateNestedManyWithoutCredentialsInput;
|
|
370
|
+
};
|
|
371
|
+
export type dfw_credentialCreateOrConnectWithoutAccessInput = {
|
|
372
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
373
|
+
create: Prisma.XOR<Prisma.dfw_credentialCreateWithoutAccessInput, Prisma.dfw_credentialUncheckedCreateWithoutAccessInput>;
|
|
374
|
+
};
|
|
375
|
+
export type dfw_credentialUpsertWithWhereUniqueWithoutAccessInput = {
|
|
376
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
377
|
+
update: Prisma.XOR<Prisma.dfw_credentialUpdateWithoutAccessInput, Prisma.dfw_credentialUncheckedUpdateWithoutAccessInput>;
|
|
378
|
+
create: Prisma.XOR<Prisma.dfw_credentialCreateWithoutAccessInput, Prisma.dfw_credentialUncheckedCreateWithoutAccessInput>;
|
|
379
|
+
};
|
|
380
|
+
export type dfw_credentialUpdateWithWhereUniqueWithoutAccessInput = {
|
|
381
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
382
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateWithoutAccessInput, Prisma.dfw_credentialUncheckedUpdateWithoutAccessInput>;
|
|
383
|
+
};
|
|
384
|
+
export type dfw_credentialUpdateManyWithWhereWithoutAccessInput = {
|
|
385
|
+
where: Prisma.dfw_credentialScalarWhereInput;
|
|
386
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateManyMutationInput, Prisma.dfw_credentialUncheckedUpdateManyWithoutAccessInput>;
|
|
387
|
+
};
|
|
388
|
+
export type dfw_credentialUpdateWithoutUsersInput = {
|
|
389
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
390
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
391
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
392
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
393
|
+
access?: Prisma.dfw_accessUpdateManyWithoutCredentialsNestedInput;
|
|
394
|
+
};
|
|
395
|
+
export type dfw_credentialUncheckedUpdateWithoutUsersInput = {
|
|
396
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
397
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
398
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
399
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
400
|
+
access?: Prisma.dfw_accessUncheckedUpdateManyWithoutCredentialsNestedInput;
|
|
401
|
+
};
|
|
402
|
+
export type dfw_credentialUncheckedUpdateManyWithoutUsersInput = {
|
|
403
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
404
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
405
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
406
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
407
|
+
};
|
|
408
|
+
export type dfw_credentialUpdateWithoutAccessInput = {
|
|
409
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
410
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
411
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
412
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
413
|
+
users?: Prisma.dfw_userUpdateManyWithoutCredentialsNestedInput;
|
|
414
|
+
};
|
|
415
|
+
export type dfw_credentialUncheckedUpdateWithoutAccessInput = {
|
|
416
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
417
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
418
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
419
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
420
|
+
users?: Prisma.dfw_userUncheckedUpdateManyWithoutCredentialsNestedInput;
|
|
421
|
+
};
|
|
422
|
+
export type dfw_credentialUncheckedUpdateManyWithoutAccessInput = {
|
|
423
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
424
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
425
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
426
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
427
|
+
};
|
|
428
|
+
/**
|
|
429
|
+
* Count Type Dfw_credentialCountOutputType
|
|
430
|
+
*/
|
|
431
|
+
export type Dfw_credentialCountOutputType = {
|
|
432
|
+
users: number;
|
|
433
|
+
access: number;
|
|
434
|
+
};
|
|
435
|
+
export type Dfw_credentialCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
436
|
+
users?: boolean | Dfw_credentialCountOutputTypeCountUsersArgs;
|
|
437
|
+
access?: boolean | Dfw_credentialCountOutputTypeCountAccessArgs;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* Dfw_credentialCountOutputType without action
|
|
441
|
+
*/
|
|
442
|
+
export type Dfw_credentialCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
443
|
+
/**
|
|
444
|
+
* Select specific fields to fetch from the Dfw_credentialCountOutputType
|
|
445
|
+
*/
|
|
446
|
+
select?: Prisma.Dfw_credentialCountOutputTypeSelect<ExtArgs> | null;
|
|
447
|
+
};
|
|
448
|
+
/**
|
|
449
|
+
* Dfw_credentialCountOutputType without action
|
|
450
|
+
*/
|
|
451
|
+
export type Dfw_credentialCountOutputTypeCountUsersArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
452
|
+
where?: Prisma.dfw_userWhereInput;
|
|
453
|
+
};
|
|
454
|
+
/**
|
|
455
|
+
* Dfw_credentialCountOutputType without action
|
|
456
|
+
*/
|
|
457
|
+
export type Dfw_credentialCountOutputTypeCountAccessArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
458
|
+
where?: Prisma.dfw_accessWhereInput;
|
|
459
|
+
};
|
|
460
|
+
export type dfw_credentialSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
461
|
+
name?: boolean;
|
|
462
|
+
description?: boolean;
|
|
463
|
+
createdAt?: boolean;
|
|
464
|
+
updatedAt?: boolean;
|
|
465
|
+
users?: boolean | Prisma.dfw_credential$usersArgs<ExtArgs>;
|
|
466
|
+
access?: boolean | Prisma.dfw_credential$accessArgs<ExtArgs>;
|
|
467
|
+
_count?: boolean | Prisma.Dfw_credentialCountOutputTypeDefaultArgs<ExtArgs>;
|
|
468
|
+
}, ExtArgs["result"]["dfw_credential"]>;
|
|
469
|
+
export type dfw_credentialSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
470
|
+
name?: boolean;
|
|
471
|
+
description?: boolean;
|
|
472
|
+
createdAt?: boolean;
|
|
473
|
+
updatedAt?: boolean;
|
|
474
|
+
}, ExtArgs["result"]["dfw_credential"]>;
|
|
475
|
+
export type dfw_credentialSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
476
|
+
name?: boolean;
|
|
477
|
+
description?: boolean;
|
|
478
|
+
createdAt?: boolean;
|
|
479
|
+
updatedAt?: boolean;
|
|
480
|
+
}, ExtArgs["result"]["dfw_credential"]>;
|
|
481
|
+
export type dfw_credentialSelectScalar = {
|
|
482
|
+
name?: boolean;
|
|
483
|
+
description?: boolean;
|
|
484
|
+
createdAt?: boolean;
|
|
485
|
+
updatedAt?: boolean;
|
|
486
|
+
};
|
|
487
|
+
export type dfw_credentialOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"name" | "description" | "createdAt" | "updatedAt", ExtArgs["result"]["dfw_credential"]>;
|
|
488
|
+
export type dfw_credentialInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
489
|
+
users?: boolean | Prisma.dfw_credential$usersArgs<ExtArgs>;
|
|
490
|
+
access?: boolean | Prisma.dfw_credential$accessArgs<ExtArgs>;
|
|
491
|
+
_count?: boolean | Prisma.Dfw_credentialCountOutputTypeDefaultArgs<ExtArgs>;
|
|
492
|
+
};
|
|
493
|
+
export type dfw_credentialIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
|
|
494
|
+
export type dfw_credentialIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
|
|
495
|
+
export type $dfw_credentialPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
496
|
+
name: "dfw_credential";
|
|
497
|
+
objects: {
|
|
498
|
+
users: Prisma.$dfw_userPayload<ExtArgs>[];
|
|
499
|
+
access: Prisma.$dfw_accessPayload<ExtArgs>[];
|
|
500
|
+
};
|
|
501
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
502
|
+
name: string;
|
|
503
|
+
description: string | null;
|
|
504
|
+
createdAt: Date;
|
|
505
|
+
updatedAt: Date;
|
|
506
|
+
}, ExtArgs["result"]["dfw_credential"]>;
|
|
507
|
+
composites: {};
|
|
508
|
+
};
|
|
509
|
+
export type dfw_credentialGetPayload<S extends boolean | null | undefined | dfw_credentialDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload, S>;
|
|
510
|
+
export type dfw_credentialCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<dfw_credentialFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
511
|
+
select?: Dfw_credentialCountAggregateInputType | true;
|
|
512
|
+
};
|
|
513
|
+
export interface dfw_credentialDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
514
|
+
[K: symbol]: {
|
|
515
|
+
types: Prisma.TypeMap<ExtArgs>['model']['dfw_credential'];
|
|
516
|
+
meta: {
|
|
517
|
+
name: 'dfw_credential';
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
/**
|
|
521
|
+
* Find zero or one Dfw_credential that matches the filter.
|
|
522
|
+
* @param {dfw_credentialFindUniqueArgs} args - Arguments to find a Dfw_credential
|
|
523
|
+
* @example
|
|
524
|
+
* // Get one Dfw_credential
|
|
525
|
+
* const dfw_credential = await prisma.dfw_credential.findUnique({
|
|
526
|
+
* where: {
|
|
527
|
+
* // ... provide filter here
|
|
528
|
+
* }
|
|
529
|
+
* })
|
|
530
|
+
*/
|
|
531
|
+
findUnique<T extends dfw_credentialFindUniqueArgs>(args: Prisma.SelectSubset<T, dfw_credentialFindUniqueArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
532
|
+
/**
|
|
533
|
+
* Find one Dfw_credential that matches the filter or throw an error with `error.code='P2025'`
|
|
534
|
+
* if no matches were found.
|
|
535
|
+
* @param {dfw_credentialFindUniqueOrThrowArgs} args - Arguments to find a Dfw_credential
|
|
536
|
+
* @example
|
|
537
|
+
* // Get one Dfw_credential
|
|
538
|
+
* const dfw_credential = await prisma.dfw_credential.findUniqueOrThrow({
|
|
539
|
+
* where: {
|
|
540
|
+
* // ... provide filter here
|
|
541
|
+
* }
|
|
542
|
+
* })
|
|
543
|
+
*/
|
|
544
|
+
findUniqueOrThrow<T extends dfw_credentialFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, dfw_credentialFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
545
|
+
/**
|
|
546
|
+
* Find the first Dfw_credential that matches the filter.
|
|
547
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
548
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
549
|
+
* @param {dfw_credentialFindFirstArgs} args - Arguments to find a Dfw_credential
|
|
550
|
+
* @example
|
|
551
|
+
* // Get one Dfw_credential
|
|
552
|
+
* const dfw_credential = await prisma.dfw_credential.findFirst({
|
|
553
|
+
* where: {
|
|
554
|
+
* // ... provide filter here
|
|
555
|
+
* }
|
|
556
|
+
* })
|
|
557
|
+
*/
|
|
558
|
+
findFirst<T extends dfw_credentialFindFirstArgs>(args?: Prisma.SelectSubset<T, dfw_credentialFindFirstArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
559
|
+
/**
|
|
560
|
+
* Find the first Dfw_credential that matches the filter or
|
|
561
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
562
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
563
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
564
|
+
* @param {dfw_credentialFindFirstOrThrowArgs} args - Arguments to find a Dfw_credential
|
|
565
|
+
* @example
|
|
566
|
+
* // Get one Dfw_credential
|
|
567
|
+
* const dfw_credential = await prisma.dfw_credential.findFirstOrThrow({
|
|
568
|
+
* where: {
|
|
569
|
+
* // ... provide filter here
|
|
570
|
+
* }
|
|
571
|
+
* })
|
|
572
|
+
*/
|
|
573
|
+
findFirstOrThrow<T extends dfw_credentialFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, dfw_credentialFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
574
|
+
/**
|
|
575
|
+
* Find zero or more Dfw_credentials that matches the filter.
|
|
576
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
577
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
578
|
+
* @param {dfw_credentialFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
579
|
+
* @example
|
|
580
|
+
* // Get all Dfw_credentials
|
|
581
|
+
* const dfw_credentials = await prisma.dfw_credential.findMany()
|
|
582
|
+
*
|
|
583
|
+
* // Get first 10 Dfw_credentials
|
|
584
|
+
* const dfw_credentials = await prisma.dfw_credential.findMany({ take: 10 })
|
|
585
|
+
*
|
|
586
|
+
* // Only select the `name`
|
|
587
|
+
* const dfw_credentialWithNameOnly = await prisma.dfw_credential.findMany({ select: { name: true } })
|
|
588
|
+
*
|
|
589
|
+
*/
|
|
590
|
+
findMany<T extends dfw_credentialFindManyArgs>(args?: Prisma.SelectSubset<T, dfw_credentialFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
591
|
+
/**
|
|
592
|
+
* Create a Dfw_credential.
|
|
593
|
+
* @param {dfw_credentialCreateArgs} args - Arguments to create a Dfw_credential.
|
|
594
|
+
* @example
|
|
595
|
+
* // Create one Dfw_credential
|
|
596
|
+
* const Dfw_credential = await prisma.dfw_credential.create({
|
|
597
|
+
* data: {
|
|
598
|
+
* // ... data to create a Dfw_credential
|
|
599
|
+
* }
|
|
600
|
+
* })
|
|
601
|
+
*
|
|
602
|
+
*/
|
|
603
|
+
create<T extends dfw_credentialCreateArgs>(args: Prisma.SelectSubset<T, dfw_credentialCreateArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
604
|
+
/**
|
|
605
|
+
* Create many Dfw_credentials.
|
|
606
|
+
* @param {dfw_credentialCreateManyArgs} args - Arguments to create many Dfw_credentials.
|
|
607
|
+
* @example
|
|
608
|
+
* // Create many Dfw_credentials
|
|
609
|
+
* const dfw_credential = await prisma.dfw_credential.createMany({
|
|
610
|
+
* data: [
|
|
611
|
+
* // ... provide data here
|
|
612
|
+
* ]
|
|
613
|
+
* })
|
|
614
|
+
*
|
|
615
|
+
*/
|
|
616
|
+
createMany<T extends dfw_credentialCreateManyArgs>(args?: Prisma.SelectSubset<T, dfw_credentialCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
617
|
+
/**
|
|
618
|
+
* Create many Dfw_credentials and returns the data saved in the database.
|
|
619
|
+
* @param {dfw_credentialCreateManyAndReturnArgs} args - Arguments to create many Dfw_credentials.
|
|
620
|
+
* @example
|
|
621
|
+
* // Create many Dfw_credentials
|
|
622
|
+
* const dfw_credential = await prisma.dfw_credential.createManyAndReturn({
|
|
623
|
+
* data: [
|
|
624
|
+
* // ... provide data here
|
|
625
|
+
* ]
|
|
626
|
+
* })
|
|
627
|
+
*
|
|
628
|
+
* // Create many Dfw_credentials and only return the `name`
|
|
629
|
+
* const dfw_credentialWithNameOnly = await prisma.dfw_credential.createManyAndReturn({
|
|
630
|
+
* select: { name: true },
|
|
631
|
+
* data: [
|
|
632
|
+
* // ... provide data here
|
|
633
|
+
* ]
|
|
634
|
+
* })
|
|
635
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
636
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
637
|
+
*
|
|
638
|
+
*/
|
|
639
|
+
createManyAndReturn<T extends dfw_credentialCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, dfw_credentialCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
640
|
+
/**
|
|
641
|
+
* Delete a Dfw_credential.
|
|
642
|
+
* @param {dfw_credentialDeleteArgs} args - Arguments to delete one Dfw_credential.
|
|
643
|
+
* @example
|
|
644
|
+
* // Delete one Dfw_credential
|
|
645
|
+
* const Dfw_credential = await prisma.dfw_credential.delete({
|
|
646
|
+
* where: {
|
|
647
|
+
* // ... filter to delete one Dfw_credential
|
|
648
|
+
* }
|
|
649
|
+
* })
|
|
650
|
+
*
|
|
651
|
+
*/
|
|
652
|
+
delete<T extends dfw_credentialDeleteArgs>(args: Prisma.SelectSubset<T, dfw_credentialDeleteArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
653
|
+
/**
|
|
654
|
+
* Update one Dfw_credential.
|
|
655
|
+
* @param {dfw_credentialUpdateArgs} args - Arguments to update one Dfw_credential.
|
|
656
|
+
* @example
|
|
657
|
+
* // Update one Dfw_credential
|
|
658
|
+
* const dfw_credential = await prisma.dfw_credential.update({
|
|
659
|
+
* where: {
|
|
660
|
+
* // ... provide filter here
|
|
661
|
+
* },
|
|
662
|
+
* data: {
|
|
663
|
+
* // ... provide data here
|
|
664
|
+
* }
|
|
665
|
+
* })
|
|
666
|
+
*
|
|
667
|
+
*/
|
|
668
|
+
update<T extends dfw_credentialUpdateArgs>(args: Prisma.SelectSubset<T, dfw_credentialUpdateArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
669
|
+
/**
|
|
670
|
+
* Delete zero or more Dfw_credentials.
|
|
671
|
+
* @param {dfw_credentialDeleteManyArgs} args - Arguments to filter Dfw_credentials to delete.
|
|
672
|
+
* @example
|
|
673
|
+
* // Delete a few Dfw_credentials
|
|
674
|
+
* const { count } = await prisma.dfw_credential.deleteMany({
|
|
675
|
+
* where: {
|
|
676
|
+
* // ... provide filter here
|
|
677
|
+
* }
|
|
678
|
+
* })
|
|
679
|
+
*
|
|
680
|
+
*/
|
|
681
|
+
deleteMany<T extends dfw_credentialDeleteManyArgs>(args?: Prisma.SelectSubset<T, dfw_credentialDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
682
|
+
/**
|
|
683
|
+
* Update zero or more Dfw_credentials.
|
|
684
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
685
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
686
|
+
* @param {dfw_credentialUpdateManyArgs} args - Arguments to update one or more rows.
|
|
687
|
+
* @example
|
|
688
|
+
* // Update many Dfw_credentials
|
|
689
|
+
* const dfw_credential = await prisma.dfw_credential.updateMany({
|
|
690
|
+
* where: {
|
|
691
|
+
* // ... provide filter here
|
|
692
|
+
* },
|
|
693
|
+
* data: {
|
|
694
|
+
* // ... provide data here
|
|
695
|
+
* }
|
|
696
|
+
* })
|
|
697
|
+
*
|
|
698
|
+
*/
|
|
699
|
+
updateMany<T extends dfw_credentialUpdateManyArgs>(args: Prisma.SelectSubset<T, dfw_credentialUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
700
|
+
/**
|
|
701
|
+
* Update zero or more Dfw_credentials and returns the data updated in the database.
|
|
702
|
+
* @param {dfw_credentialUpdateManyAndReturnArgs} args - Arguments to update many Dfw_credentials.
|
|
703
|
+
* @example
|
|
704
|
+
* // Update many Dfw_credentials
|
|
705
|
+
* const dfw_credential = await prisma.dfw_credential.updateManyAndReturn({
|
|
706
|
+
* where: {
|
|
707
|
+
* // ... provide filter here
|
|
708
|
+
* },
|
|
709
|
+
* data: [
|
|
710
|
+
* // ... provide data here
|
|
711
|
+
* ]
|
|
712
|
+
* })
|
|
713
|
+
*
|
|
714
|
+
* // Update zero or more Dfw_credentials and only return the `name`
|
|
715
|
+
* const dfw_credentialWithNameOnly = await prisma.dfw_credential.updateManyAndReturn({
|
|
716
|
+
* select: { name: true },
|
|
717
|
+
* where: {
|
|
718
|
+
* // ... provide filter here
|
|
719
|
+
* },
|
|
720
|
+
* data: [
|
|
721
|
+
* // ... provide data here
|
|
722
|
+
* ]
|
|
723
|
+
* })
|
|
724
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
725
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
726
|
+
*
|
|
727
|
+
*/
|
|
728
|
+
updateManyAndReturn<T extends dfw_credentialUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, dfw_credentialUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
729
|
+
/**
|
|
730
|
+
* Create or update one Dfw_credential.
|
|
731
|
+
* @param {dfw_credentialUpsertArgs} args - Arguments to update or create a Dfw_credential.
|
|
732
|
+
* @example
|
|
733
|
+
* // Update or create a Dfw_credential
|
|
734
|
+
* const dfw_credential = await prisma.dfw_credential.upsert({
|
|
735
|
+
* create: {
|
|
736
|
+
* // ... data to create a Dfw_credential
|
|
737
|
+
* },
|
|
738
|
+
* update: {
|
|
739
|
+
* // ... in case it already exists, update
|
|
740
|
+
* },
|
|
741
|
+
* where: {
|
|
742
|
+
* // ... the filter for the Dfw_credential we want to update
|
|
743
|
+
* }
|
|
744
|
+
* })
|
|
745
|
+
*/
|
|
746
|
+
upsert<T extends dfw_credentialUpsertArgs>(args: Prisma.SelectSubset<T, dfw_credentialUpsertArgs<ExtArgs>>): Prisma.Prisma__dfw_credentialClient<runtime.Types.Result.GetResult<Prisma.$dfw_credentialPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
747
|
+
/**
|
|
748
|
+
* Count the number of Dfw_credentials.
|
|
749
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
750
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
751
|
+
* @param {dfw_credentialCountArgs} args - Arguments to filter Dfw_credentials to count.
|
|
752
|
+
* @example
|
|
753
|
+
* // Count the number of Dfw_credentials
|
|
754
|
+
* const count = await prisma.dfw_credential.count({
|
|
755
|
+
* where: {
|
|
756
|
+
* // ... the filter for the Dfw_credentials we want to count
|
|
757
|
+
* }
|
|
758
|
+
* })
|
|
759
|
+
**/
|
|
760
|
+
count<T extends dfw_credentialCountArgs>(args?: Prisma.Subset<T, dfw_credentialCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], Dfw_credentialCountAggregateOutputType> : number>;
|
|
761
|
+
/**
|
|
762
|
+
* Allows you to perform aggregations operations on a Dfw_credential.
|
|
763
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
764
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
765
|
+
* @param {Dfw_credentialAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
766
|
+
* @example
|
|
767
|
+
* // Ordered by age ascending
|
|
768
|
+
* // Where email contains prisma.io
|
|
769
|
+
* // Limited to the 10 users
|
|
770
|
+
* const aggregations = await prisma.user.aggregate({
|
|
771
|
+
* _avg: {
|
|
772
|
+
* age: true,
|
|
773
|
+
* },
|
|
774
|
+
* where: {
|
|
775
|
+
* email: {
|
|
776
|
+
* contains: "prisma.io",
|
|
777
|
+
* },
|
|
778
|
+
* },
|
|
779
|
+
* orderBy: {
|
|
780
|
+
* age: "asc",
|
|
781
|
+
* },
|
|
782
|
+
* take: 10,
|
|
783
|
+
* })
|
|
784
|
+
**/
|
|
785
|
+
aggregate<T extends Dfw_credentialAggregateArgs>(args: Prisma.Subset<T, Dfw_credentialAggregateArgs>): Prisma.PrismaPromise<GetDfw_credentialAggregateType<T>>;
|
|
786
|
+
/**
|
|
787
|
+
* Group by Dfw_credential.
|
|
788
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
789
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
790
|
+
* @param {dfw_credentialGroupByArgs} args - Group by arguments.
|
|
791
|
+
* @example
|
|
792
|
+
* // Group by city, order by createdAt, get count
|
|
793
|
+
* const result = await prisma.user.groupBy({
|
|
794
|
+
* by: ['city', 'createdAt'],
|
|
795
|
+
* orderBy: {
|
|
796
|
+
* createdAt: true
|
|
797
|
+
* },
|
|
798
|
+
* _count: {
|
|
799
|
+
* _all: true
|
|
800
|
+
* },
|
|
801
|
+
* })
|
|
802
|
+
*
|
|
803
|
+
**/
|
|
804
|
+
groupBy<T extends dfw_credentialGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
805
|
+
orderBy: dfw_credentialGroupByArgs['orderBy'];
|
|
806
|
+
} : {
|
|
807
|
+
orderBy?: dfw_credentialGroupByArgs['orderBy'];
|
|
808
|
+
}, 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 ? {
|
|
809
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
810
|
+
Error,
|
|
811
|
+
'Field ',
|
|
812
|
+
P,
|
|
813
|
+
` in "having" needs to be provided in "by"`
|
|
814
|
+
];
|
|
815
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
816
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
817
|
+
}[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 ? {} : {
|
|
818
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
819
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
820
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
821
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, dfw_credentialGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetDfw_credentialGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
822
|
+
/**
|
|
823
|
+
* Fields of the dfw_credential model
|
|
824
|
+
*/
|
|
825
|
+
readonly fields: dfw_credentialFieldRefs;
|
|
826
|
+
}
|
|
827
|
+
/**
|
|
828
|
+
* The delegate class that acts as a "Promise-like" for dfw_credential.
|
|
829
|
+
* Why is this prefixed with `Prisma__`?
|
|
830
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
831
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
832
|
+
*/
|
|
833
|
+
export interface Prisma__dfw_credentialClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
834
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
835
|
+
users<T extends Prisma.dfw_credential$usersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_credential$usersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_userPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
836
|
+
access<T extends Prisma.dfw_credential$accessArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.dfw_credential$accessArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$dfw_accessPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
837
|
+
/**
|
|
838
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
839
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
840
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
841
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
842
|
+
*/
|
|
843
|
+
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>;
|
|
844
|
+
/**
|
|
845
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
846
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
847
|
+
* @returns A Promise for the completion of the callback.
|
|
848
|
+
*/
|
|
849
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
850
|
+
/**
|
|
851
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
852
|
+
* resolved value cannot be modified from the callback.
|
|
853
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
854
|
+
* @returns A Promise for the completion of the callback.
|
|
855
|
+
*/
|
|
856
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
857
|
+
}
|
|
858
|
+
/**
|
|
859
|
+
* Fields of the dfw_credential model
|
|
860
|
+
*/
|
|
861
|
+
export interface dfw_credentialFieldRefs {
|
|
862
|
+
readonly name: Prisma.FieldRef<"dfw_credential", 'String'>;
|
|
863
|
+
readonly description: Prisma.FieldRef<"dfw_credential", 'String'>;
|
|
864
|
+
readonly createdAt: Prisma.FieldRef<"dfw_credential", 'DateTime'>;
|
|
865
|
+
readonly updatedAt: Prisma.FieldRef<"dfw_credential", 'DateTime'>;
|
|
866
|
+
}
|
|
867
|
+
/**
|
|
868
|
+
* dfw_credential findUnique
|
|
869
|
+
*/
|
|
870
|
+
export type dfw_credentialFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
871
|
+
/**
|
|
872
|
+
* Select specific fields to fetch from the dfw_credential
|
|
873
|
+
*/
|
|
874
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
875
|
+
/**
|
|
876
|
+
* Omit specific fields from the dfw_credential
|
|
877
|
+
*/
|
|
878
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
879
|
+
/**
|
|
880
|
+
* Choose, which related nodes to fetch as well
|
|
881
|
+
*/
|
|
882
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
883
|
+
/**
|
|
884
|
+
* Filter, which dfw_credential to fetch.
|
|
885
|
+
*/
|
|
886
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
887
|
+
};
|
|
888
|
+
/**
|
|
889
|
+
* dfw_credential findUniqueOrThrow
|
|
890
|
+
*/
|
|
891
|
+
export type dfw_credentialFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
892
|
+
/**
|
|
893
|
+
* Select specific fields to fetch from the dfw_credential
|
|
894
|
+
*/
|
|
895
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
896
|
+
/**
|
|
897
|
+
* Omit specific fields from the dfw_credential
|
|
898
|
+
*/
|
|
899
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
900
|
+
/**
|
|
901
|
+
* Choose, which related nodes to fetch as well
|
|
902
|
+
*/
|
|
903
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
904
|
+
/**
|
|
905
|
+
* Filter, which dfw_credential to fetch.
|
|
906
|
+
*/
|
|
907
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
908
|
+
};
|
|
909
|
+
/**
|
|
910
|
+
* dfw_credential findFirst
|
|
911
|
+
*/
|
|
912
|
+
export type dfw_credentialFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
913
|
+
/**
|
|
914
|
+
* Select specific fields to fetch from the dfw_credential
|
|
915
|
+
*/
|
|
916
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
917
|
+
/**
|
|
918
|
+
* Omit specific fields from the dfw_credential
|
|
919
|
+
*/
|
|
920
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
921
|
+
/**
|
|
922
|
+
* Choose, which related nodes to fetch as well
|
|
923
|
+
*/
|
|
924
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
925
|
+
/**
|
|
926
|
+
* Filter, which dfw_credential to fetch.
|
|
927
|
+
*/
|
|
928
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
929
|
+
/**
|
|
930
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
931
|
+
*
|
|
932
|
+
* Determine the order of dfw_credentials to fetch.
|
|
933
|
+
*/
|
|
934
|
+
orderBy?: Prisma.dfw_credentialOrderByWithRelationInput | Prisma.dfw_credentialOrderByWithRelationInput[];
|
|
935
|
+
/**
|
|
936
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
937
|
+
*
|
|
938
|
+
* Sets the position for searching for dfw_credentials.
|
|
939
|
+
*/
|
|
940
|
+
cursor?: Prisma.dfw_credentialWhereUniqueInput;
|
|
941
|
+
/**
|
|
942
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
943
|
+
*
|
|
944
|
+
* Take `±n` dfw_credentials from the position of the cursor.
|
|
945
|
+
*/
|
|
946
|
+
take?: number;
|
|
947
|
+
/**
|
|
948
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
949
|
+
*
|
|
950
|
+
* Skip the first `n` dfw_credentials.
|
|
951
|
+
*/
|
|
952
|
+
skip?: number;
|
|
953
|
+
/**
|
|
954
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
955
|
+
*
|
|
956
|
+
* Filter by unique combinations of dfw_credentials.
|
|
957
|
+
*/
|
|
958
|
+
distinct?: Prisma.Dfw_credentialScalarFieldEnum | Prisma.Dfw_credentialScalarFieldEnum[];
|
|
959
|
+
};
|
|
960
|
+
/**
|
|
961
|
+
* dfw_credential findFirstOrThrow
|
|
962
|
+
*/
|
|
963
|
+
export type dfw_credentialFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
964
|
+
/**
|
|
965
|
+
* Select specific fields to fetch from the dfw_credential
|
|
966
|
+
*/
|
|
967
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
968
|
+
/**
|
|
969
|
+
* Omit specific fields from the dfw_credential
|
|
970
|
+
*/
|
|
971
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
972
|
+
/**
|
|
973
|
+
* Choose, which related nodes to fetch as well
|
|
974
|
+
*/
|
|
975
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
976
|
+
/**
|
|
977
|
+
* Filter, which dfw_credential to fetch.
|
|
978
|
+
*/
|
|
979
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
980
|
+
/**
|
|
981
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
982
|
+
*
|
|
983
|
+
* Determine the order of dfw_credentials to fetch.
|
|
984
|
+
*/
|
|
985
|
+
orderBy?: Prisma.dfw_credentialOrderByWithRelationInput | Prisma.dfw_credentialOrderByWithRelationInput[];
|
|
986
|
+
/**
|
|
987
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
988
|
+
*
|
|
989
|
+
* Sets the position for searching for dfw_credentials.
|
|
990
|
+
*/
|
|
991
|
+
cursor?: Prisma.dfw_credentialWhereUniqueInput;
|
|
992
|
+
/**
|
|
993
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
994
|
+
*
|
|
995
|
+
* Take `±n` dfw_credentials from the position of the cursor.
|
|
996
|
+
*/
|
|
997
|
+
take?: number;
|
|
998
|
+
/**
|
|
999
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1000
|
+
*
|
|
1001
|
+
* Skip the first `n` dfw_credentials.
|
|
1002
|
+
*/
|
|
1003
|
+
skip?: number;
|
|
1004
|
+
/**
|
|
1005
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1006
|
+
*
|
|
1007
|
+
* Filter by unique combinations of dfw_credentials.
|
|
1008
|
+
*/
|
|
1009
|
+
distinct?: Prisma.Dfw_credentialScalarFieldEnum | Prisma.Dfw_credentialScalarFieldEnum[];
|
|
1010
|
+
};
|
|
1011
|
+
/**
|
|
1012
|
+
* dfw_credential findMany
|
|
1013
|
+
*/
|
|
1014
|
+
export type dfw_credentialFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1015
|
+
/**
|
|
1016
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1017
|
+
*/
|
|
1018
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1019
|
+
/**
|
|
1020
|
+
* Omit specific fields from the dfw_credential
|
|
1021
|
+
*/
|
|
1022
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1023
|
+
/**
|
|
1024
|
+
* Choose, which related nodes to fetch as well
|
|
1025
|
+
*/
|
|
1026
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1027
|
+
/**
|
|
1028
|
+
* Filter, which dfw_credentials to fetch.
|
|
1029
|
+
*/
|
|
1030
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
1031
|
+
/**
|
|
1032
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1033
|
+
*
|
|
1034
|
+
* Determine the order of dfw_credentials to fetch.
|
|
1035
|
+
*/
|
|
1036
|
+
orderBy?: Prisma.dfw_credentialOrderByWithRelationInput | Prisma.dfw_credentialOrderByWithRelationInput[];
|
|
1037
|
+
/**
|
|
1038
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1039
|
+
*
|
|
1040
|
+
* Sets the position for listing dfw_credentials.
|
|
1041
|
+
*/
|
|
1042
|
+
cursor?: Prisma.dfw_credentialWhereUniqueInput;
|
|
1043
|
+
/**
|
|
1044
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1045
|
+
*
|
|
1046
|
+
* Take `±n` dfw_credentials from the position of the cursor.
|
|
1047
|
+
*/
|
|
1048
|
+
take?: number;
|
|
1049
|
+
/**
|
|
1050
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1051
|
+
*
|
|
1052
|
+
* Skip the first `n` dfw_credentials.
|
|
1053
|
+
*/
|
|
1054
|
+
skip?: number;
|
|
1055
|
+
distinct?: Prisma.Dfw_credentialScalarFieldEnum | Prisma.Dfw_credentialScalarFieldEnum[];
|
|
1056
|
+
};
|
|
1057
|
+
/**
|
|
1058
|
+
* dfw_credential create
|
|
1059
|
+
*/
|
|
1060
|
+
export type dfw_credentialCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1061
|
+
/**
|
|
1062
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1063
|
+
*/
|
|
1064
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1065
|
+
/**
|
|
1066
|
+
* Omit specific fields from the dfw_credential
|
|
1067
|
+
*/
|
|
1068
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1069
|
+
/**
|
|
1070
|
+
* Choose, which related nodes to fetch as well
|
|
1071
|
+
*/
|
|
1072
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1073
|
+
/**
|
|
1074
|
+
* The data needed to create a dfw_credential.
|
|
1075
|
+
*/
|
|
1076
|
+
data: Prisma.XOR<Prisma.dfw_credentialCreateInput, Prisma.dfw_credentialUncheckedCreateInput>;
|
|
1077
|
+
};
|
|
1078
|
+
/**
|
|
1079
|
+
* dfw_credential createMany
|
|
1080
|
+
*/
|
|
1081
|
+
export type dfw_credentialCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1082
|
+
/**
|
|
1083
|
+
* The data used to create many dfw_credentials.
|
|
1084
|
+
*/
|
|
1085
|
+
data: Prisma.dfw_credentialCreateManyInput | Prisma.dfw_credentialCreateManyInput[];
|
|
1086
|
+
skipDuplicates?: boolean;
|
|
1087
|
+
};
|
|
1088
|
+
/**
|
|
1089
|
+
* dfw_credential createManyAndReturn
|
|
1090
|
+
*/
|
|
1091
|
+
export type dfw_credentialCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1092
|
+
/**
|
|
1093
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1094
|
+
*/
|
|
1095
|
+
select?: Prisma.dfw_credentialSelectCreateManyAndReturn<ExtArgs> | null;
|
|
1096
|
+
/**
|
|
1097
|
+
* Omit specific fields from the dfw_credential
|
|
1098
|
+
*/
|
|
1099
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1100
|
+
/**
|
|
1101
|
+
* The data used to create many dfw_credentials.
|
|
1102
|
+
*/
|
|
1103
|
+
data: Prisma.dfw_credentialCreateManyInput | Prisma.dfw_credentialCreateManyInput[];
|
|
1104
|
+
skipDuplicates?: boolean;
|
|
1105
|
+
};
|
|
1106
|
+
/**
|
|
1107
|
+
* dfw_credential update
|
|
1108
|
+
*/
|
|
1109
|
+
export type dfw_credentialUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1110
|
+
/**
|
|
1111
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1112
|
+
*/
|
|
1113
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1114
|
+
/**
|
|
1115
|
+
* Omit specific fields from the dfw_credential
|
|
1116
|
+
*/
|
|
1117
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1118
|
+
/**
|
|
1119
|
+
* Choose, which related nodes to fetch as well
|
|
1120
|
+
*/
|
|
1121
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1122
|
+
/**
|
|
1123
|
+
* The data needed to update a dfw_credential.
|
|
1124
|
+
*/
|
|
1125
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateInput, Prisma.dfw_credentialUncheckedUpdateInput>;
|
|
1126
|
+
/**
|
|
1127
|
+
* Choose, which dfw_credential to update.
|
|
1128
|
+
*/
|
|
1129
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
1130
|
+
};
|
|
1131
|
+
/**
|
|
1132
|
+
* dfw_credential updateMany
|
|
1133
|
+
*/
|
|
1134
|
+
export type dfw_credentialUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1135
|
+
/**
|
|
1136
|
+
* The data used to update dfw_credentials.
|
|
1137
|
+
*/
|
|
1138
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateManyMutationInput, Prisma.dfw_credentialUncheckedUpdateManyInput>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Filter which dfw_credentials to update
|
|
1141
|
+
*/
|
|
1142
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
1143
|
+
/**
|
|
1144
|
+
* Limit how many dfw_credentials to update.
|
|
1145
|
+
*/
|
|
1146
|
+
limit?: number;
|
|
1147
|
+
};
|
|
1148
|
+
/**
|
|
1149
|
+
* dfw_credential updateManyAndReturn
|
|
1150
|
+
*/
|
|
1151
|
+
export type dfw_credentialUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1152
|
+
/**
|
|
1153
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1154
|
+
*/
|
|
1155
|
+
select?: Prisma.dfw_credentialSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
1156
|
+
/**
|
|
1157
|
+
* Omit specific fields from the dfw_credential
|
|
1158
|
+
*/
|
|
1159
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1160
|
+
/**
|
|
1161
|
+
* The data used to update dfw_credentials.
|
|
1162
|
+
*/
|
|
1163
|
+
data: Prisma.XOR<Prisma.dfw_credentialUpdateManyMutationInput, Prisma.dfw_credentialUncheckedUpdateManyInput>;
|
|
1164
|
+
/**
|
|
1165
|
+
* Filter which dfw_credentials to update
|
|
1166
|
+
*/
|
|
1167
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
1168
|
+
/**
|
|
1169
|
+
* Limit how many dfw_credentials to update.
|
|
1170
|
+
*/
|
|
1171
|
+
limit?: number;
|
|
1172
|
+
};
|
|
1173
|
+
/**
|
|
1174
|
+
* dfw_credential upsert
|
|
1175
|
+
*/
|
|
1176
|
+
export type dfw_credentialUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1177
|
+
/**
|
|
1178
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1179
|
+
*/
|
|
1180
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1181
|
+
/**
|
|
1182
|
+
* Omit specific fields from the dfw_credential
|
|
1183
|
+
*/
|
|
1184
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1185
|
+
/**
|
|
1186
|
+
* Choose, which related nodes to fetch as well
|
|
1187
|
+
*/
|
|
1188
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1189
|
+
/**
|
|
1190
|
+
* The filter to search for the dfw_credential to update in case it exists.
|
|
1191
|
+
*/
|
|
1192
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
1193
|
+
/**
|
|
1194
|
+
* In case the dfw_credential found by the `where` argument doesn't exist, create a new dfw_credential with this data.
|
|
1195
|
+
*/
|
|
1196
|
+
create: Prisma.XOR<Prisma.dfw_credentialCreateInput, Prisma.dfw_credentialUncheckedCreateInput>;
|
|
1197
|
+
/**
|
|
1198
|
+
* In case the dfw_credential was found with the provided `where` argument, update it with this data.
|
|
1199
|
+
*/
|
|
1200
|
+
update: Prisma.XOR<Prisma.dfw_credentialUpdateInput, Prisma.dfw_credentialUncheckedUpdateInput>;
|
|
1201
|
+
};
|
|
1202
|
+
/**
|
|
1203
|
+
* dfw_credential delete
|
|
1204
|
+
*/
|
|
1205
|
+
export type dfw_credentialDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1206
|
+
/**
|
|
1207
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1208
|
+
*/
|
|
1209
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1210
|
+
/**
|
|
1211
|
+
* Omit specific fields from the dfw_credential
|
|
1212
|
+
*/
|
|
1213
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1214
|
+
/**
|
|
1215
|
+
* Choose, which related nodes to fetch as well
|
|
1216
|
+
*/
|
|
1217
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* Filter which dfw_credential to delete.
|
|
1220
|
+
*/
|
|
1221
|
+
where: Prisma.dfw_credentialWhereUniqueInput;
|
|
1222
|
+
};
|
|
1223
|
+
/**
|
|
1224
|
+
* dfw_credential deleteMany
|
|
1225
|
+
*/
|
|
1226
|
+
export type dfw_credentialDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1227
|
+
/**
|
|
1228
|
+
* Filter which dfw_credentials to delete
|
|
1229
|
+
*/
|
|
1230
|
+
where?: Prisma.dfw_credentialWhereInput;
|
|
1231
|
+
/**
|
|
1232
|
+
* Limit how many dfw_credentials to delete.
|
|
1233
|
+
*/
|
|
1234
|
+
limit?: number;
|
|
1235
|
+
};
|
|
1236
|
+
/**
|
|
1237
|
+
* dfw_credential.users
|
|
1238
|
+
*/
|
|
1239
|
+
export type dfw_credential$usersArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1240
|
+
/**
|
|
1241
|
+
* Select specific fields to fetch from the dfw_user
|
|
1242
|
+
*/
|
|
1243
|
+
select?: Prisma.dfw_userSelect<ExtArgs> | null;
|
|
1244
|
+
/**
|
|
1245
|
+
* Omit specific fields from the dfw_user
|
|
1246
|
+
*/
|
|
1247
|
+
omit?: Prisma.dfw_userOmit<ExtArgs> | null;
|
|
1248
|
+
/**
|
|
1249
|
+
* Choose, which related nodes to fetch as well
|
|
1250
|
+
*/
|
|
1251
|
+
include?: Prisma.dfw_userInclude<ExtArgs> | null;
|
|
1252
|
+
where?: Prisma.dfw_userWhereInput;
|
|
1253
|
+
orderBy?: Prisma.dfw_userOrderByWithRelationInput | Prisma.dfw_userOrderByWithRelationInput[];
|
|
1254
|
+
cursor?: Prisma.dfw_userWhereUniqueInput;
|
|
1255
|
+
take?: number;
|
|
1256
|
+
skip?: number;
|
|
1257
|
+
distinct?: Prisma.Dfw_userScalarFieldEnum | Prisma.Dfw_userScalarFieldEnum[];
|
|
1258
|
+
};
|
|
1259
|
+
/**
|
|
1260
|
+
* dfw_credential.access
|
|
1261
|
+
*/
|
|
1262
|
+
export type dfw_credential$accessArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1263
|
+
/**
|
|
1264
|
+
* Select specific fields to fetch from the dfw_access
|
|
1265
|
+
*/
|
|
1266
|
+
select?: Prisma.dfw_accessSelect<ExtArgs> | null;
|
|
1267
|
+
/**
|
|
1268
|
+
* Omit specific fields from the dfw_access
|
|
1269
|
+
*/
|
|
1270
|
+
omit?: Prisma.dfw_accessOmit<ExtArgs> | null;
|
|
1271
|
+
/**
|
|
1272
|
+
* Choose, which related nodes to fetch as well
|
|
1273
|
+
*/
|
|
1274
|
+
include?: Prisma.dfw_accessInclude<ExtArgs> | null;
|
|
1275
|
+
where?: Prisma.dfw_accessWhereInput;
|
|
1276
|
+
orderBy?: Prisma.dfw_accessOrderByWithRelationInput | Prisma.dfw_accessOrderByWithRelationInput[];
|
|
1277
|
+
cursor?: Prisma.dfw_accessWhereUniqueInput;
|
|
1278
|
+
take?: number;
|
|
1279
|
+
skip?: number;
|
|
1280
|
+
distinct?: Prisma.Dfw_accessScalarFieldEnum | Prisma.Dfw_accessScalarFieldEnum[];
|
|
1281
|
+
};
|
|
1282
|
+
/**
|
|
1283
|
+
* dfw_credential without action
|
|
1284
|
+
*/
|
|
1285
|
+
export type dfw_credentialDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1286
|
+
/**
|
|
1287
|
+
* Select specific fields to fetch from the dfw_credential
|
|
1288
|
+
*/
|
|
1289
|
+
select?: Prisma.dfw_credentialSelect<ExtArgs> | null;
|
|
1290
|
+
/**
|
|
1291
|
+
* Omit specific fields from the dfw_credential
|
|
1292
|
+
*/
|
|
1293
|
+
omit?: Prisma.dfw_credentialOmit<ExtArgs> | null;
|
|
1294
|
+
/**
|
|
1295
|
+
* Choose, which related nodes to fetch as well
|
|
1296
|
+
*/
|
|
1297
|
+
include?: Prisma.dfw_credentialInclude<ExtArgs> | null;
|
|
1298
|
+
};
|
|
1299
|
+
export {};
|
|
1300
|
+
//# sourceMappingURL=dfw_credential.d.ts.map
|