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