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