agent-tower 0.5.4-beta.0 → 0.5.4-beta.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/README.md +6 -1
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +15 -1
- package/dist/app.js.map +1 -1
- package/dist/app.test.js +12 -0
- package/dist/app.test.js.map +1 -1
- package/dist/cli.js +18 -1
- package/dist/cli.js.map +1 -1
- package/dist/core/event-bus.d.ts +3 -0
- package/dist/core/event-bus.d.ts.map +1 -1
- package/dist/core/event-bus.js.map +1 -1
- package/dist/executors/__tests__/base.executor.test.js +29 -1
- package/dist/executors/__tests__/base.executor.test.js.map +1 -1
- package/dist/executors/__tests__/codex.executor.test.js +13 -0
- package/dist/executors/__tests__/codex.executor.test.js.map +1 -1
- package/dist/executors/base.executor.d.ts.map +1 -1
- package/dist/executors/base.executor.js +4 -0
- package/dist/executors/base.executor.js.map +1 -1
- package/dist/executors/execution-env.d.ts +1 -1
- package/dist/executors/execution-env.d.ts.map +1 -1
- package/dist/executors/execution-env.js +7 -0
- package/dist/executors/execution-env.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp/http-client.d.ts +2 -0
- package/dist/mcp/http-client.d.ts.map +1 -1
- package/dist/mcp/http-client.js +7 -0
- package/dist/mcp/http-client.js.map +1 -1
- package/dist/mcp/index.js +4 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/server.d.ts +3 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +2 -1
- package/dist/mcp/server.js.map +1 -1
- package/dist/middleware/__tests__/access-auth.test.d.ts +2 -0
- package/dist/middleware/__tests__/access-auth.test.d.ts.map +1 -0
- package/dist/middleware/__tests__/access-auth.test.js +249 -0
- package/dist/middleware/__tests__/access-auth.test.js.map +1 -0
- package/dist/middleware/access-auth.d.ts +3 -0
- package/dist/middleware/access-auth.d.ts.map +1 -0
- package/dist/middleware/access-auth.js +110 -0
- package/dist/middleware/access-auth.js.map +1 -0
- package/dist/routes/__tests__/files.test.d.ts +2 -0
- package/dist/routes/__tests__/files.test.d.ts.map +1 -0
- package/dist/routes/__tests__/files.test.js +101 -0
- package/dist/routes/__tests__/files.test.js.map +1 -0
- package/dist/routes/__tests__/previews.integration.test.d.ts +2 -0
- package/dist/routes/__tests__/previews.integration.test.d.ts.map +1 -0
- package/dist/routes/__tests__/previews.integration.test.js +269 -0
- package/dist/routes/__tests__/previews.integration.test.js.map +1 -0
- package/dist/routes/__tests__/previews.test.js +103 -1
- package/dist/routes/__tests__/previews.test.js.map +1 -1
- package/dist/routes/access-auth.d.ts +3 -0
- package/dist/routes/access-auth.d.ts.map +1 -0
- package/dist/routes/access-auth.js +89 -0
- package/dist/routes/access-auth.js.map +1 -0
- package/dist/routes/files.d.ts.map +1 -1
- package/dist/routes/files.js +46 -0
- package/dist/routes/files.js.map +1 -1
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +3 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/previews.d.ts +7 -2
- package/dist/routes/previews.d.ts.map +1 -1
- package/dist/routes/previews.js +106 -32
- package/dist/routes/previews.js.map +1 -1
- package/dist/routes/projects.d.ts.map +1 -1
- package/dist/routes/projects.js +9 -0
- package/dist/routes/projects.js.map +1 -1
- package/dist/services/__tests__/access-auth.service.test.d.ts +2 -0
- package/dist/services/__tests__/access-auth.service.test.d.ts.map +1 -0
- package/dist/services/__tests__/access-auth.service.test.js +316 -0
- package/dist/services/__tests__/access-auth.service.test.js.map +1 -0
- package/dist/services/__tests__/member-heartbeat.test.d.ts +2 -0
- package/dist/services/__tests__/member-heartbeat.test.d.ts.map +1 -0
- package/dist/services/__tests__/member-heartbeat.test.js +344 -0
- package/dist/services/__tests__/member-heartbeat.test.js.map +1 -0
- package/dist/services/__tests__/project.service.test.js +29 -0
- package/dist/services/__tests__/project.service.test.js.map +1 -1
- package/dist/services/__tests__/session-manager.team-run.test.js +69 -0
- package/dist/services/__tests__/session-manager.team-run.test.js.map +1 -1
- package/dist/services/__tests__/task.service.test.js +34 -0
- package/dist/services/__tests__/task.service.test.js.map +1 -1
- package/dist/services/__tests__/team-reconciler.service.test.js +180 -3
- package/dist/services/__tests__/team-reconciler.service.test.js.map +1 -1
- package/dist/services/__tests__/team-run.service.test.js +196 -2
- package/dist/services/__tests__/team-run.service.test.js.map +1 -1
- package/dist/services/__tests__/team-scheduler.service.test.js +12 -5
- package/dist/services/__tests__/team-scheduler.service.test.js.map +1 -1
- package/dist/services/__tests__/workspace.service.test.js +32 -0
- package/dist/services/__tests__/workspace.service.test.js.map +1 -1
- package/dist/services/access-auth.service.d.ts +82 -0
- package/dist/services/access-auth.service.d.ts.map +1 -0
- package/dist/services/access-auth.service.js +385 -0
- package/dist/services/access-auth.service.js.map +1 -0
- package/dist/services/mcp-config.service.d.ts.map +1 -1
- package/dist/services/mcp-config.service.js +8 -2
- package/dist/services/mcp-config.service.js.map +1 -1
- package/dist/services/mcp-config.service.test.js +18 -3
- package/dist/services/mcp-config.service.test.js.map +1 -1
- package/dist/services/member-heartbeat-scheduler.d.ts +33 -0
- package/dist/services/member-heartbeat-scheduler.d.ts.map +1 -0
- package/dist/services/member-heartbeat-scheduler.js +83 -0
- package/dist/services/member-heartbeat-scheduler.js.map +1 -0
- package/dist/services/project-guards.d.ts +5 -0
- package/dist/services/project-guards.d.ts.map +1 -1
- package/dist/services/project-guards.js +47 -0
- package/dist/services/project-guards.js.map +1 -1
- package/dist/services/project.service.d.ts +6 -4
- package/dist/services/project.service.d.ts.map +1 -1
- package/dist/services/project.service.js +16 -7
- package/dist/services/project.service.js.map +1 -1
- package/dist/services/session-manager.d.ts +11 -0
- package/dist/services/session-manager.d.ts.map +1 -1
- package/dist/services/session-manager.js +60 -0
- package/dist/services/session-manager.js.map +1 -1
- package/dist/services/task.service.d.ts +11 -9
- package/dist/services/task.service.d.ts.map +1 -1
- package/dist/services/task.service.js +17 -12
- package/dist/services/task.service.js.map +1 -1
- package/dist/services/team-reconciler.service.d.ts +39 -0
- package/dist/services/team-reconciler.service.d.ts.map +1 -1
- package/dist/services/team-reconciler.service.js +234 -3
- package/dist/services/team-reconciler.service.js.map +1 -1
- package/dist/services/team-run.service.d.ts +2 -0
- package/dist/services/team-run.service.d.ts.map +1 -1
- package/dist/services/team-run.service.js +35 -7
- package/dist/services/team-run.service.js.map +1 -1
- package/dist/services/team-scheduler.service.d.ts.map +1 -1
- package/dist/services/team-scheduler.service.js +22 -7
- package/dist/services/team-scheduler.service.js.map +1 -1
- package/dist/services/terminal-manager.d.ts.map +1 -1
- package/dist/services/terminal-manager.js +1 -0
- package/dist/services/terminal-manager.js.map +1 -1
- package/dist/services/workspace.service.d.ts.map +1 -1
- package/dist/services/workspace.service.js +5 -5
- package/dist/services/workspace.service.js.map +1 -1
- package/dist/socket/__tests__/socket-gateway.test.d.ts +2 -0
- package/dist/socket/__tests__/socket-gateway.test.d.ts.map +1 -0
- package/dist/socket/__tests__/socket-gateway.test.js +119 -0
- package/dist/socket/__tests__/socket-gateway.test.js.map +1 -0
- package/dist/socket/middleware/__tests__/auth.test.js +102 -2
- package/dist/socket/middleware/__tests__/auth.test.js.map +1 -1
- package/dist/socket/middleware/auth.d.ts +1 -0
- package/dist/socket/middleware/auth.d.ts.map +1 -1
- package/dist/socket/middleware/auth.js +22 -2
- package/dist/socket/middleware/auth.js.map +1 -1
- package/dist/socket/socket-gateway.d.ts +6 -2
- package/dist/socket/socket-gateway.d.ts.map +1 -1
- package/dist/socket/socket-gateway.js +78 -15
- package/dist/socket/socket-gateway.js.map +1 -1
- package/dist/utils/internal-api-token.d.ts +9 -0
- package/dist/utils/internal-api-token.d.ts.map +1 -0
- package/dist/utils/internal-api-token.js +74 -0
- package/dist/utils/internal-api-token.js.map +1 -0
- package/dist/utils/preview-path.d.ts +11 -0
- package/dist/utils/preview-path.d.ts.map +1 -0
- package/dist/utils/preview-path.js +46 -0
- package/dist/utils/preview-path.js.map +1 -0
- package/dist/utils/process-launch.test.js +14 -0
- package/dist/utils/process-launch.test.js.map +1 -1
- package/dist/web/assets/{AgentDemoPage-DMLw4xpg.js → AgentDemoPage-UmBBXiZq.js} +1 -1
- package/dist/web/assets/{AgentEnvironmentSettingsPage-NgRdouLu.js → AgentEnvironmentSettingsPage-DeMVC_O2.js} +1 -1
- package/dist/web/assets/{AgentLogo-ThhvSi7G.js → AgentLogo-sxp-yGLB.js} +1 -1
- package/dist/web/assets/{ConversationPage-B1ZcyF_h.js → ConversationPage-ykUuKcMG.js} +2 -2
- package/dist/web/assets/CreateTaskInput-WmNhRnVp.js +1 -0
- package/dist/web/assets/{DemoPage-CN2OBKzu.js → DemoPage-Cx-F46PV.js} +3 -3
- package/dist/web/assets/GeneralSettingsPage-DM4iy6dp.js +1 -0
- package/dist/web/assets/{Icons-DIZBOtuC.js → Icons-CO02_BMI.js} +1 -1
- package/dist/web/assets/{LoadingPreviewPage-CRBcypeY.js → LoadingPreviewPage-C58uR8H7.js} +1 -1
- package/dist/web/assets/McpSettingsPage-CTe-SNfY.js +1 -0
- package/dist/web/assets/{MemberAvatar-Y_pJlw-N.js → MemberAvatar-CZegYpYl.js} +1 -1
- package/dist/web/assets/NotificationSettingsPage-D17SAmMK.js +1 -0
- package/dist/web/assets/ProfileSettingsPage-B2rHV2eU.js +3 -0
- package/dist/web/assets/{ProjectKanbanPage-CBfocvKp.js → ProjectKanbanPage-SpCqpcZ0.js} +31 -32
- package/dist/web/assets/ProjectSettingsPage-2dD_ahm-.js +2 -0
- package/dist/web/assets/{ProviderSettingsPage-D-1Fyh5B.js → ProviderSettingsPage-D9vu3rO0.js} +6 -6
- package/dist/web/assets/{SettingsMasterDetail-CZfVaFo2.js → SettingsMasterDetail-CwRB1WBt.js} +1 -1
- package/dist/web/assets/{TeamSettingsPage-DysTmOGE.js → TeamSettingsPage-QXwc1AJE.js} +1 -1
- package/dist/web/assets/{arc-CgLBAHTH.js → arc-BRCC5BeU.js} +1 -1
- package/dist/web/assets/{architectureDiagram-3BPJPVTR-CP9eQfdk.js → architectureDiagram-3BPJPVTR-7lTGsSu5.js} +1 -1
- package/dist/web/assets/{arrow-left-y1LwO7sB.js → arrow-left-CNgpy5r6.js} +1 -1
- package/dist/web/assets/{blockDiagram-GPEHLZMM-BURZnUwn.js → blockDiagram-GPEHLZMM-CnscyQkX.js} +1 -1
- package/dist/web/assets/{c4Diagram-AAUBKEIU-Dzgp3z3S.js → c4Diagram-AAUBKEIU-DDhuPTLZ.js} +1 -1
- package/dist/web/assets/channel-S-3oxkZZ.js +1 -0
- package/dist/web/assets/check-DRdZLPss.js +1 -0
- package/dist/web/assets/{chevron-down--B7iZqBL.js → chevron-down-CqZBsPeR.js} +1 -1
- package/dist/web/assets/{chevron-right-7PShDIwg.js → chevron-right-YWciNkox.js} +1 -1
- package/dist/web/assets/{chevron-up-3n_vHdrD.js → chevron-up-BJ4i5iAn.js} +1 -1
- package/dist/web/assets/{chunk-2J33WTMH-CIpasa01.js → chunk-2J33WTMH-B96XJhZG.js} +1 -1
- package/dist/web/assets/{chunk-4BX2VUAB-DeSe2m1y.js → chunk-4BX2VUAB-IUZUHtbw.js} +1 -1
- package/dist/web/assets/{chunk-55IACEB6-BkJ6ogdn.js → chunk-55IACEB6-DcO4xSOO.js} +1 -1
- package/dist/web/assets/{chunk-727SXJPM-Bkbv-knP.js → chunk-727SXJPM-DuQwKkk-.js} +1 -1
- package/dist/web/assets/{chunk-AQP2D5EJ-BG9wGFIo.js → chunk-AQP2D5EJ-QotCqjAo.js} +1 -1
- package/dist/web/assets/{chunk-FMBD7UC4-Cvl_2za9.js → chunk-FMBD7UC4-C7hUbfZh.js} +1 -1
- package/dist/web/assets/{chunk-ND2GUHAM-B_zdzkWX.js → chunk-ND2GUHAM-B_C5eChQ.js} +1 -1
- package/dist/web/assets/{chunk-QZHKN3VN-Ch6dvKNw.js → chunk-QZHKN3VN-DRgZY4LJ.js} +1 -1
- package/dist/web/assets/{circle-alert-W13JkYj3.js → circle-alert-Ch4pQ3zT.js} +1 -1
- package/dist/web/assets/classDiagram-4FO5ZUOK-C00aPgpD.js +1 -0
- package/dist/web/assets/classDiagram-v2-Q7XG4LA2-C00aPgpD.js +1 -0
- package/dist/web/assets/{code-block-OCS4YCEC-CYhJ9OPu.js → code-block-OCS4YCEC-h5zD4EvJ.js} +1 -1
- package/dist/web/assets/confirm-dialog-DG0L1v-9.js +1 -0
- package/dist/web/assets/{copy-bJ2sut_L.js → copy-JHS-5tjr.js} +1 -1
- package/dist/web/assets/{cose-bilkent-S5V4N54A-DWlnxyfH.js → cose-bilkent-S5V4N54A-6Gv8U8Cj.js} +1 -1
- package/dist/web/assets/{dagre-BM42HDAG-Bt3QI02a.js → dagre-BM42HDAG-Cf4rsmyS.js} +1 -1
- package/dist/web/assets/{diagram-2AECGRRQ-EaJBYSnS.js → diagram-2AECGRRQ-DW3DQ8NA.js} +1 -1
- package/dist/web/assets/{diagram-5GNKFQAL-BGyRb-_h.js → diagram-5GNKFQAL-C5cQ_MTX.js} +1 -1
- package/dist/web/assets/{diagram-KO2AKTUF-CZhDTMfm.js → diagram-KO2AKTUF-Dcs4NTfn.js} +1 -1
- package/dist/web/assets/{diagram-LMA3HP47-Be8BAxmL.js → diagram-LMA3HP47-lLI-OolH.js} +1 -1
- package/dist/web/assets/{diagram-OG6HWLK6-DEdQ7Cml.js → diagram-OG6HWLK6-BTdMG1u6.js} +1 -1
- package/dist/web/assets/{erDiagram-TEJ5UH35-CG9SNlbz.js → erDiagram-TEJ5UH35-BrKfSMWb.js} +1 -1
- package/dist/web/assets/{flowDiagram-I6XJVG4X-BUpx5PVX.js → flowDiagram-I6XJVG4X-BFT9EHqo.js} +1 -1
- package/dist/web/assets/folder-picker--V79noua.js +1 -0
- package/dist/web/assets/{ganttDiagram-6RSMTGT7-D7vRxMpE.js → ganttDiagram-6RSMTGT7-D_44EJ_y.js} +1 -1
- package/dist/web/assets/{gitGraphDiagram-PVQCEYII-3lhH-RcD.js → gitGraphDiagram-PVQCEYII-COrCr27e.js} +1 -1
- package/dist/web/assets/index-BC5stA77.js +122 -0
- package/dist/web/assets/{index-CGMjRoF7.js → index-Cjaho2ST.js} +4 -4
- package/dist/web/assets/index-DRJLGAPR.css +1 -0
- package/dist/web/assets/{infoDiagram-5YYISTIA-C5SNbJpO.js → infoDiagram-5YYISTIA-Derwhgw-.js} +1 -1
- package/dist/web/assets/{ishikawaDiagram-YF4QCWOH-Ca7tX9_0.js → ishikawaDiagram-YF4QCWOH-Dv_SKfKy.js} +1 -1
- package/dist/web/assets/{journeyDiagram-JHISSGLW-B2oo6nxY.js → journeyDiagram-JHISSGLW-BvL0Myto.js} +1 -1
- package/dist/web/assets/{kanban-definition-UN3LZRKU-D1CzIzX9.js → kanban-definition-UN3LZRKU-D9iCCF7g.js} +1 -1
- package/dist/web/assets/{layers-BbLzQqyy.js → layers-D-OLv40U.js} +1 -1
- package/dist/web/assets/{linear-BWowtcGw.js → linear-DLebIyPZ.js} +1 -1
- package/dist/web/assets/{mermaid-NOHMQCX5-B42ziicV.js → mermaid-NOHMQCX5-CyA4Kmm7.js} +40 -40
- package/dist/web/assets/{message-square-Bd_m34OX.js → message-square-ByVmnBN0.js} +1 -1
- package/dist/web/assets/{mindmap-definition-RKZ34NQL-CYbO6QCk.js → mindmap-definition-RKZ34NQL-CJXkujXD.js} +1 -1
- package/dist/web/assets/{modal-CxOKWOjZ.js → modal-KKPLseLk.js} +1 -1
- package/dist/web/assets/{pencil-h5kxwbcu.js → pencil-B7ylaB7k.js} +1 -1
- package/dist/web/assets/{pieDiagram-4H26LBE5-DXQghKRy.js → pieDiagram-4H26LBE5-C8DfXjYu.js} +1 -1
- package/dist/web/assets/{quadrantDiagram-W4KKPZXB-C6lAMMQB.js → quadrantDiagram-W4KKPZXB-BxaUhA-J.js} +1 -1
- package/dist/web/assets/{requirementDiagram-4Y6WPE33-Di9Le7Wy.js → requirementDiagram-4Y6WPE33-CkP381y3.js} +1 -1
- package/dist/web/assets/{sankeyDiagram-5OEKKPKP-BGpnptvR.js → sankeyDiagram-5OEKKPKP-Ciot-1f1.js} +1 -1
- package/dist/web/assets/{select-DFuN9DX8.js → select-CLvHC1t4.js} +1 -1
- package/dist/web/assets/{sequenceDiagram-3UESZ5HK-DjfkfaQL.js → sequenceDiagram-3UESZ5HK-ZrO6aulq.js} +1 -1
- package/dist/web/assets/{stateDiagram-AJRCARHV-DsELotm9.js → stateDiagram-AJRCARHV-BDC3J_xT.js} +1 -1
- package/dist/web/assets/stateDiagram-v2-BHNVJYJU-C_4zupNH.js +1 -0
- package/dist/web/assets/{switch-gL7lBFj6.js → switch-DqXAu8pW.js} +1 -1
- package/dist/web/assets/{textarea-Lr4GZaYW.js → textarea-ByV2n54w.js} +1 -1
- package/dist/web/assets/{timeline-definition-PNZ67QCA-Cq1BWC0T.js → timeline-definition-PNZ67QCA-CG898aCW.js} +1 -1
- package/dist/web/assets/{trash-2-B7GFt5Wl.js → trash-2-D-MBxpK4.js} +1 -1
- package/dist/web/assets/{upload-L8hpDFoO.js → upload-CkkorsYk.js} +1 -1
- package/dist/web/assets/{use-profiles-zIsoigD8.js → use-profiles-B62R9Kbn.js} +1 -1
- package/dist/web/assets/use-projects-JMhtZFd6.js +1 -0
- package/dist/web/assets/{use-providers-erJ2iHLz.js → use-providers-Cg1RDnUJ.js} +1 -1
- package/dist/web/assets/{useNormalizedLogs-CXAn7xj_.js → useNormalizedLogs-BMa5-cCl.js} +1 -1
- package/dist/web/assets/{vennDiagram-CIIHVFJN-DdOfNtRo.js → vennDiagram-CIIHVFJN-CNRNbGoo.js} +1 -1
- package/dist/web/assets/{wardley-L42UT6IY-BeKcEIgK.js → wardley-L42UT6IY-Fm0b_w6O.js} +1 -1
- package/dist/web/assets/{wardleyDiagram-YWT4CUSO-DPKOxABd.js → wardleyDiagram-YWT4CUSO-C_xf1EWg.js} +1 -1
- package/dist/web/assets/{xychartDiagram-2RQKCTM6-olIy_aaY.js → xychartDiagram-2RQKCTM6-D9yke6dF.js} +1 -1
- package/dist/web/index.html +2 -2
- package/node_modules/@agent-tower/shared/dist/types.d.ts +30 -1
- package/node_modules/@agent-tower/shared/dist/types.d.ts.map +1 -1
- package/node_modules/@agent-tower/shared/dist/types.js.map +1 -1
- package/node_modules/@prisma/client/.prisma/client/edge.js +18 -5
- package/node_modules/@prisma/client/.prisma/client/index-browser.js +13 -0
- package/node_modules/@prisma/client/.prisma/client/index.d.ts +1450 -215
- package/node_modules/@prisma/client/.prisma/client/index.js +18 -5
- package/node_modules/@prisma/client/.prisma/client/package.json +1 -1
- package/node_modules/@prisma/client/.prisma/client/schema.prisma +13 -0
- package/node_modules/@prisma/client/.prisma/client/wasm.js +13 -0
- package/package.json +1 -1
- package/prisma/migrations/20260701000000_add_access_auth_settings/migration.sql +9 -0
- package/prisma/schema.prisma +13 -0
- package/dist/web/assets/CreateTaskInput-Cb3aRHr3.js +0 -1
- package/dist/web/assets/GeneralSettingsPage-CE7P3t_v.js +0 -1
- package/dist/web/assets/McpSettingsPage-gp1XDMUd.js +0 -1
- package/dist/web/assets/NotificationSettingsPage-BhZeHEef.js +0 -1
- package/dist/web/assets/ProfileSettingsPage-D_y3ePFs.js +0 -3
- package/dist/web/assets/ProjectSettingsPage-V38j8T61.js +0 -2
- package/dist/web/assets/channel-CWEYGfCJ.js +0 -1
- package/dist/web/assets/check-D2WWIhwV.js +0 -1
- package/dist/web/assets/classDiagram-4FO5ZUOK-CcU8zfK8.js +0 -1
- package/dist/web/assets/classDiagram-v2-Q7XG4LA2-CcU8zfK8.js +0 -1
- package/dist/web/assets/confirm-dialog-BAqfLDT8.js +0 -1
- package/dist/web/assets/folder-picker-DFB9_pv4.js +0 -1
- package/dist/web/assets/folder-u7fKAtz_.js +0 -1
- package/dist/web/assets/index-7nw4fV42.js +0 -122
- package/dist/web/assets/index-YCjjSSLC.css +0 -1
- package/dist/web/assets/input-CKwRYuUJ.js +0 -1
- package/dist/web/assets/stateDiagram-v2-BHNVJYJU-CudtEyHd.js +0 -1
|
@@ -113,6 +113,11 @@ export type Attachment = $Result.DefaultSelection<Prisma.$AttachmentPayload>
|
|
|
113
113
|
*
|
|
114
114
|
*/
|
|
115
115
|
export type AppSettings = $Result.DefaultSelection<Prisma.$AppSettingsPayload>
|
|
116
|
+
/**
|
|
117
|
+
* Model AccessAuthSettings
|
|
118
|
+
*
|
|
119
|
+
*/
|
|
120
|
+
export type AccessAuthSettings = $Result.DefaultSelection<Prisma.$AccessAuthSettingsPayload>
|
|
116
121
|
/**
|
|
117
122
|
* Model NotificationSettings
|
|
118
123
|
*
|
|
@@ -442,6 +447,16 @@ export class PrismaClient<
|
|
|
442
447
|
*/
|
|
443
448
|
get appSettings(): Prisma.AppSettingsDelegate<ExtArgs>;
|
|
444
449
|
|
|
450
|
+
/**
|
|
451
|
+
* `prisma.accessAuthSettings`: Exposes CRUD operations for the **AccessAuthSettings** model.
|
|
452
|
+
* Example usage:
|
|
453
|
+
* ```ts
|
|
454
|
+
* // Fetch zero or more AccessAuthSettings
|
|
455
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findMany()
|
|
456
|
+
* ```
|
|
457
|
+
*/
|
|
458
|
+
get accessAuthSettings(): Prisma.AccessAuthSettingsDelegate<ExtArgs>;
|
|
459
|
+
|
|
445
460
|
/**
|
|
446
461
|
* `prisma.notificationSettings`: Exposes CRUD operations for the **NotificationSettings** model.
|
|
447
462
|
* Example usage:
|
|
@@ -912,6 +927,7 @@ export namespace Prisma {
|
|
|
912
927
|
ExecutionLog: 'ExecutionLog',
|
|
913
928
|
Attachment: 'Attachment',
|
|
914
929
|
AppSettings: 'AppSettings',
|
|
930
|
+
AccessAuthSettings: 'AccessAuthSettings',
|
|
915
931
|
NotificationSettings: 'NotificationSettings'
|
|
916
932
|
};
|
|
917
933
|
|
|
@@ -928,7 +944,7 @@ export namespace Prisma {
|
|
|
928
944
|
|
|
929
945
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
930
946
|
meta: {
|
|
931
|
-
modelProps: "project" | "task" | "taskCleanupJob" | "memberPreset" | "teamTemplate" | "teamTemplateMember" | "teamRun" | "teamMember" | "roomMessage" | "roomMessageParticipant" | "workRequest" | "agentInvocation" | "workspace" | "workspaceVerdict" | "conversation" | "session" | "executionProcess" | "executionLog" | "attachment" | "appSettings" | "notificationSettings"
|
|
947
|
+
modelProps: "project" | "task" | "taskCleanupJob" | "memberPreset" | "teamTemplate" | "teamTemplateMember" | "teamRun" | "teamMember" | "roomMessage" | "roomMessageParticipant" | "workRequest" | "agentInvocation" | "workspace" | "workspaceVerdict" | "conversation" | "session" | "executionProcess" | "executionLog" | "attachment" | "appSettings" | "accessAuthSettings" | "notificationSettings"
|
|
932
948
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
933
949
|
}
|
|
934
950
|
model: {
|
|
@@ -2332,6 +2348,76 @@ export namespace Prisma {
|
|
|
2332
2348
|
}
|
|
2333
2349
|
}
|
|
2334
2350
|
}
|
|
2351
|
+
AccessAuthSettings: {
|
|
2352
|
+
payload: Prisma.$AccessAuthSettingsPayload<ExtArgs>
|
|
2353
|
+
fields: Prisma.AccessAuthSettingsFieldRefs
|
|
2354
|
+
operations: {
|
|
2355
|
+
findUnique: {
|
|
2356
|
+
args: Prisma.AccessAuthSettingsFindUniqueArgs<ExtArgs>
|
|
2357
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload> | null
|
|
2358
|
+
}
|
|
2359
|
+
findUniqueOrThrow: {
|
|
2360
|
+
args: Prisma.AccessAuthSettingsFindUniqueOrThrowArgs<ExtArgs>
|
|
2361
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>
|
|
2362
|
+
}
|
|
2363
|
+
findFirst: {
|
|
2364
|
+
args: Prisma.AccessAuthSettingsFindFirstArgs<ExtArgs>
|
|
2365
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload> | null
|
|
2366
|
+
}
|
|
2367
|
+
findFirstOrThrow: {
|
|
2368
|
+
args: Prisma.AccessAuthSettingsFindFirstOrThrowArgs<ExtArgs>
|
|
2369
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>
|
|
2370
|
+
}
|
|
2371
|
+
findMany: {
|
|
2372
|
+
args: Prisma.AccessAuthSettingsFindManyArgs<ExtArgs>
|
|
2373
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>[]
|
|
2374
|
+
}
|
|
2375
|
+
create: {
|
|
2376
|
+
args: Prisma.AccessAuthSettingsCreateArgs<ExtArgs>
|
|
2377
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>
|
|
2378
|
+
}
|
|
2379
|
+
createMany: {
|
|
2380
|
+
args: Prisma.AccessAuthSettingsCreateManyArgs<ExtArgs>
|
|
2381
|
+
result: BatchPayload
|
|
2382
|
+
}
|
|
2383
|
+
createManyAndReturn: {
|
|
2384
|
+
args: Prisma.AccessAuthSettingsCreateManyAndReturnArgs<ExtArgs>
|
|
2385
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>[]
|
|
2386
|
+
}
|
|
2387
|
+
delete: {
|
|
2388
|
+
args: Prisma.AccessAuthSettingsDeleteArgs<ExtArgs>
|
|
2389
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>
|
|
2390
|
+
}
|
|
2391
|
+
update: {
|
|
2392
|
+
args: Prisma.AccessAuthSettingsUpdateArgs<ExtArgs>
|
|
2393
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>
|
|
2394
|
+
}
|
|
2395
|
+
deleteMany: {
|
|
2396
|
+
args: Prisma.AccessAuthSettingsDeleteManyArgs<ExtArgs>
|
|
2397
|
+
result: BatchPayload
|
|
2398
|
+
}
|
|
2399
|
+
updateMany: {
|
|
2400
|
+
args: Prisma.AccessAuthSettingsUpdateManyArgs<ExtArgs>
|
|
2401
|
+
result: BatchPayload
|
|
2402
|
+
}
|
|
2403
|
+
upsert: {
|
|
2404
|
+
args: Prisma.AccessAuthSettingsUpsertArgs<ExtArgs>
|
|
2405
|
+
result: $Utils.PayloadToResult<Prisma.$AccessAuthSettingsPayload>
|
|
2406
|
+
}
|
|
2407
|
+
aggregate: {
|
|
2408
|
+
args: Prisma.AccessAuthSettingsAggregateArgs<ExtArgs>
|
|
2409
|
+
result: $Utils.Optional<AggregateAccessAuthSettings>
|
|
2410
|
+
}
|
|
2411
|
+
groupBy: {
|
|
2412
|
+
args: Prisma.AccessAuthSettingsGroupByArgs<ExtArgs>
|
|
2413
|
+
result: $Utils.Optional<AccessAuthSettingsGroupByOutputType>[]
|
|
2414
|
+
}
|
|
2415
|
+
count: {
|
|
2416
|
+
args: Prisma.AccessAuthSettingsCountArgs<ExtArgs>
|
|
2417
|
+
result: $Utils.Optional<AccessAuthSettingsCountAggregateOutputType> | number
|
|
2418
|
+
}
|
|
2419
|
+
}
|
|
2420
|
+
}
|
|
2335
2421
|
NotificationSettings: {
|
|
2336
2422
|
payload: Prisma.$NotificationSettingsPayload<ExtArgs>
|
|
2337
2423
|
fields: Prisma.NotificationSettingsFieldRefs
|
|
@@ -14224,6 +14310,8 @@ export namespace Prisma {
|
|
|
14224
14310
|
status: string | null
|
|
14225
14311
|
roomReplyReminderCount: number | null
|
|
14226
14312
|
nextRoomReplyReminderAt: Date | null
|
|
14313
|
+
lastHeartbeatAt: Date | null
|
|
14314
|
+
firstNudgeAt: Date | null
|
|
14227
14315
|
createdAt: Date | null
|
|
14228
14316
|
updatedAt: Date | null
|
|
14229
14317
|
}
|
|
@@ -14251,6 +14339,8 @@ export namespace Prisma {
|
|
|
14251
14339
|
status: string | null
|
|
14252
14340
|
roomReplyReminderCount: number | null
|
|
14253
14341
|
nextRoomReplyReminderAt: Date | null
|
|
14342
|
+
lastHeartbeatAt: Date | null
|
|
14343
|
+
firstNudgeAt: Date | null
|
|
14254
14344
|
createdAt: Date | null
|
|
14255
14345
|
updatedAt: Date | null
|
|
14256
14346
|
}
|
|
@@ -14278,6 +14368,8 @@ export namespace Prisma {
|
|
|
14278
14368
|
status: number
|
|
14279
14369
|
roomReplyReminderCount: number
|
|
14280
14370
|
nextRoomReplyReminderAt: number
|
|
14371
|
+
lastHeartbeatAt: number
|
|
14372
|
+
firstNudgeAt: number
|
|
14281
14373
|
createdAt: number
|
|
14282
14374
|
updatedAt: number
|
|
14283
14375
|
_all: number
|
|
@@ -14321,6 +14413,8 @@ export namespace Prisma {
|
|
|
14321
14413
|
status?: true
|
|
14322
14414
|
roomReplyReminderCount?: true
|
|
14323
14415
|
nextRoomReplyReminderAt?: true
|
|
14416
|
+
lastHeartbeatAt?: true
|
|
14417
|
+
firstNudgeAt?: true
|
|
14324
14418
|
createdAt?: true
|
|
14325
14419
|
updatedAt?: true
|
|
14326
14420
|
}
|
|
@@ -14348,6 +14442,8 @@ export namespace Prisma {
|
|
|
14348
14442
|
status?: true
|
|
14349
14443
|
roomReplyReminderCount?: true
|
|
14350
14444
|
nextRoomReplyReminderAt?: true
|
|
14445
|
+
lastHeartbeatAt?: true
|
|
14446
|
+
firstNudgeAt?: true
|
|
14351
14447
|
createdAt?: true
|
|
14352
14448
|
updatedAt?: true
|
|
14353
14449
|
}
|
|
@@ -14375,6 +14471,8 @@ export namespace Prisma {
|
|
|
14375
14471
|
status?: true
|
|
14376
14472
|
roomReplyReminderCount?: true
|
|
14377
14473
|
nextRoomReplyReminderAt?: true
|
|
14474
|
+
lastHeartbeatAt?: true
|
|
14475
|
+
firstNudgeAt?: true
|
|
14378
14476
|
createdAt?: true
|
|
14379
14477
|
updatedAt?: true
|
|
14380
14478
|
_all?: true
|
|
@@ -14489,6 +14587,8 @@ export namespace Prisma {
|
|
|
14489
14587
|
status: string
|
|
14490
14588
|
roomReplyReminderCount: number
|
|
14491
14589
|
nextRoomReplyReminderAt: Date | null
|
|
14590
|
+
lastHeartbeatAt: Date | null
|
|
14591
|
+
firstNudgeAt: Date | null
|
|
14492
14592
|
createdAt: Date
|
|
14493
14593
|
updatedAt: Date
|
|
14494
14594
|
_count: AgentInvocationCountAggregateOutputType | null
|
|
@@ -14535,6 +14635,8 @@ export namespace Prisma {
|
|
|
14535
14635
|
status?: boolean
|
|
14536
14636
|
roomReplyReminderCount?: boolean
|
|
14537
14637
|
nextRoomReplyReminderAt?: boolean
|
|
14638
|
+
lastHeartbeatAt?: boolean
|
|
14639
|
+
firstNudgeAt?: boolean
|
|
14538
14640
|
createdAt?: boolean
|
|
14539
14641
|
updatedAt?: boolean
|
|
14540
14642
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
@@ -14563,6 +14665,8 @@ export namespace Prisma {
|
|
|
14563
14665
|
status?: boolean
|
|
14564
14666
|
roomReplyReminderCount?: boolean
|
|
14565
14667
|
nextRoomReplyReminderAt?: boolean
|
|
14668
|
+
lastHeartbeatAt?: boolean
|
|
14669
|
+
firstNudgeAt?: boolean
|
|
14566
14670
|
createdAt?: boolean
|
|
14567
14671
|
updatedAt?: boolean
|
|
14568
14672
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
@@ -14591,6 +14695,8 @@ export namespace Prisma {
|
|
|
14591
14695
|
status?: boolean
|
|
14592
14696
|
roomReplyReminderCount?: boolean
|
|
14593
14697
|
nextRoomReplyReminderAt?: boolean
|
|
14698
|
+
lastHeartbeatAt?: boolean
|
|
14699
|
+
firstNudgeAt?: boolean
|
|
14594
14700
|
createdAt?: boolean
|
|
14595
14701
|
updatedAt?: boolean
|
|
14596
14702
|
}
|
|
@@ -14630,6 +14736,8 @@ export namespace Prisma {
|
|
|
14630
14736
|
status: string
|
|
14631
14737
|
roomReplyReminderCount: number
|
|
14632
14738
|
nextRoomReplyReminderAt: Date | null
|
|
14739
|
+
lastHeartbeatAt: Date | null
|
|
14740
|
+
firstNudgeAt: Date | null
|
|
14633
14741
|
createdAt: Date
|
|
14634
14742
|
updatedAt: Date
|
|
14635
14743
|
}, ExtArgs["result"]["agentInvocation"]>
|
|
@@ -15048,6 +15156,8 @@ export namespace Prisma {
|
|
|
15048
15156
|
readonly status: FieldRef<"AgentInvocation", 'String'>
|
|
15049
15157
|
readonly roomReplyReminderCount: FieldRef<"AgentInvocation", 'Int'>
|
|
15050
15158
|
readonly nextRoomReplyReminderAt: FieldRef<"AgentInvocation", 'DateTime'>
|
|
15159
|
+
readonly lastHeartbeatAt: FieldRef<"AgentInvocation", 'DateTime'>
|
|
15160
|
+
readonly firstNudgeAt: FieldRef<"AgentInvocation", 'DateTime'>
|
|
15051
15161
|
readonly createdAt: FieldRef<"AgentInvocation", 'DateTime'>
|
|
15052
15162
|
readonly updatedAt: FieldRef<"AgentInvocation", 'DateTime'>
|
|
15053
15163
|
}
|
|
@@ -23322,349 +23432,349 @@ export namespace Prisma {
|
|
|
23322
23432
|
|
|
23323
23433
|
|
|
23324
23434
|
/**
|
|
23325
|
-
* Model
|
|
23435
|
+
* Model AccessAuthSettings
|
|
23326
23436
|
*/
|
|
23327
23437
|
|
|
23328
|
-
export type
|
|
23329
|
-
_count:
|
|
23330
|
-
_min:
|
|
23331
|
-
_max:
|
|
23438
|
+
export type AggregateAccessAuthSettings = {
|
|
23439
|
+
_count: AccessAuthSettingsCountAggregateOutputType | null
|
|
23440
|
+
_min: AccessAuthSettingsMinAggregateOutputType | null
|
|
23441
|
+
_max: AccessAuthSettingsMaxAggregateOutputType | null
|
|
23332
23442
|
}
|
|
23333
23443
|
|
|
23334
|
-
export type
|
|
23444
|
+
export type AccessAuthSettingsMinAggregateOutputType = {
|
|
23335
23445
|
id: string | null
|
|
23336
|
-
|
|
23337
|
-
|
|
23338
|
-
|
|
23339
|
-
|
|
23340
|
-
|
|
23341
|
-
|
|
23446
|
+
enabled: boolean | null
|
|
23447
|
+
passwordHash: string | null
|
|
23448
|
+
sessionSecret: string | null
|
|
23449
|
+
passwordUpdatedAt: Date | null
|
|
23450
|
+
createdAt: Date | null
|
|
23451
|
+
updatedAt: Date | null
|
|
23342
23452
|
}
|
|
23343
23453
|
|
|
23344
|
-
export type
|
|
23454
|
+
export type AccessAuthSettingsMaxAggregateOutputType = {
|
|
23345
23455
|
id: string | null
|
|
23346
|
-
|
|
23347
|
-
|
|
23348
|
-
|
|
23349
|
-
|
|
23350
|
-
|
|
23351
|
-
|
|
23456
|
+
enabled: boolean | null
|
|
23457
|
+
passwordHash: string | null
|
|
23458
|
+
sessionSecret: string | null
|
|
23459
|
+
passwordUpdatedAt: Date | null
|
|
23460
|
+
createdAt: Date | null
|
|
23461
|
+
updatedAt: Date | null
|
|
23352
23462
|
}
|
|
23353
23463
|
|
|
23354
|
-
export type
|
|
23464
|
+
export type AccessAuthSettingsCountAggregateOutputType = {
|
|
23355
23465
|
id: number
|
|
23356
|
-
|
|
23357
|
-
|
|
23358
|
-
|
|
23359
|
-
|
|
23360
|
-
|
|
23361
|
-
|
|
23466
|
+
enabled: number
|
|
23467
|
+
passwordHash: number
|
|
23468
|
+
sessionSecret: number
|
|
23469
|
+
passwordUpdatedAt: number
|
|
23470
|
+
createdAt: number
|
|
23471
|
+
updatedAt: number
|
|
23362
23472
|
_all: number
|
|
23363
23473
|
}
|
|
23364
23474
|
|
|
23365
23475
|
|
|
23366
|
-
export type
|
|
23476
|
+
export type AccessAuthSettingsMinAggregateInputType = {
|
|
23367
23477
|
id?: true
|
|
23368
|
-
|
|
23369
|
-
|
|
23370
|
-
|
|
23371
|
-
|
|
23372
|
-
|
|
23373
|
-
|
|
23478
|
+
enabled?: true
|
|
23479
|
+
passwordHash?: true
|
|
23480
|
+
sessionSecret?: true
|
|
23481
|
+
passwordUpdatedAt?: true
|
|
23482
|
+
createdAt?: true
|
|
23483
|
+
updatedAt?: true
|
|
23374
23484
|
}
|
|
23375
23485
|
|
|
23376
|
-
export type
|
|
23486
|
+
export type AccessAuthSettingsMaxAggregateInputType = {
|
|
23377
23487
|
id?: true
|
|
23378
|
-
|
|
23379
|
-
|
|
23380
|
-
|
|
23381
|
-
|
|
23382
|
-
|
|
23383
|
-
|
|
23488
|
+
enabled?: true
|
|
23489
|
+
passwordHash?: true
|
|
23490
|
+
sessionSecret?: true
|
|
23491
|
+
passwordUpdatedAt?: true
|
|
23492
|
+
createdAt?: true
|
|
23493
|
+
updatedAt?: true
|
|
23384
23494
|
}
|
|
23385
23495
|
|
|
23386
|
-
export type
|
|
23496
|
+
export type AccessAuthSettingsCountAggregateInputType = {
|
|
23387
23497
|
id?: true
|
|
23388
|
-
|
|
23389
|
-
|
|
23390
|
-
|
|
23391
|
-
|
|
23392
|
-
|
|
23393
|
-
|
|
23498
|
+
enabled?: true
|
|
23499
|
+
passwordHash?: true
|
|
23500
|
+
sessionSecret?: true
|
|
23501
|
+
passwordUpdatedAt?: true
|
|
23502
|
+
createdAt?: true
|
|
23503
|
+
updatedAt?: true
|
|
23394
23504
|
_all?: true
|
|
23395
23505
|
}
|
|
23396
23506
|
|
|
23397
|
-
export type
|
|
23507
|
+
export type AccessAuthSettingsAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
23398
23508
|
/**
|
|
23399
|
-
* Filter which
|
|
23509
|
+
* Filter which AccessAuthSettings to aggregate.
|
|
23400
23510
|
*/
|
|
23401
|
-
where?:
|
|
23511
|
+
where?: AccessAuthSettingsWhereInput
|
|
23402
23512
|
/**
|
|
23403
23513
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
23404
23514
|
*
|
|
23405
|
-
* Determine the order of
|
|
23515
|
+
* Determine the order of AccessAuthSettings to fetch.
|
|
23406
23516
|
*/
|
|
23407
|
-
orderBy?:
|
|
23517
|
+
orderBy?: AccessAuthSettingsOrderByWithRelationInput | AccessAuthSettingsOrderByWithRelationInput[]
|
|
23408
23518
|
/**
|
|
23409
23519
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
23410
23520
|
*
|
|
23411
23521
|
* Sets the start position
|
|
23412
23522
|
*/
|
|
23413
|
-
cursor?:
|
|
23523
|
+
cursor?: AccessAuthSettingsWhereUniqueInput
|
|
23414
23524
|
/**
|
|
23415
23525
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
23416
23526
|
*
|
|
23417
|
-
* Take `±n`
|
|
23527
|
+
* Take `±n` AccessAuthSettings from the position of the cursor.
|
|
23418
23528
|
*/
|
|
23419
23529
|
take?: number
|
|
23420
23530
|
/**
|
|
23421
23531
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
23422
23532
|
*
|
|
23423
|
-
* Skip the first `n`
|
|
23533
|
+
* Skip the first `n` AccessAuthSettings.
|
|
23424
23534
|
*/
|
|
23425
23535
|
skip?: number
|
|
23426
23536
|
/**
|
|
23427
23537
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
23428
23538
|
*
|
|
23429
|
-
* Count returned
|
|
23539
|
+
* Count returned AccessAuthSettings
|
|
23430
23540
|
**/
|
|
23431
|
-
_count?: true |
|
|
23541
|
+
_count?: true | AccessAuthSettingsCountAggregateInputType
|
|
23432
23542
|
/**
|
|
23433
23543
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
23434
23544
|
*
|
|
23435
23545
|
* Select which fields to find the minimum value
|
|
23436
23546
|
**/
|
|
23437
|
-
_min?:
|
|
23547
|
+
_min?: AccessAuthSettingsMinAggregateInputType
|
|
23438
23548
|
/**
|
|
23439
23549
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
23440
23550
|
*
|
|
23441
23551
|
* Select which fields to find the maximum value
|
|
23442
23552
|
**/
|
|
23443
|
-
_max?:
|
|
23553
|
+
_max?: AccessAuthSettingsMaxAggregateInputType
|
|
23444
23554
|
}
|
|
23445
23555
|
|
|
23446
|
-
export type
|
|
23447
|
-
[P in keyof T & keyof
|
|
23556
|
+
export type GetAccessAuthSettingsAggregateType<T extends AccessAuthSettingsAggregateArgs> = {
|
|
23557
|
+
[P in keyof T & keyof AggregateAccessAuthSettings]: P extends '_count' | 'count'
|
|
23448
23558
|
? T[P] extends true
|
|
23449
23559
|
? number
|
|
23450
|
-
: GetScalarType<T[P],
|
|
23451
|
-
: GetScalarType<T[P],
|
|
23560
|
+
: GetScalarType<T[P], AggregateAccessAuthSettings[P]>
|
|
23561
|
+
: GetScalarType<T[P], AggregateAccessAuthSettings[P]>
|
|
23452
23562
|
}
|
|
23453
23563
|
|
|
23454
23564
|
|
|
23455
23565
|
|
|
23456
23566
|
|
|
23457
|
-
export type
|
|
23458
|
-
where?:
|
|
23459
|
-
orderBy?:
|
|
23460
|
-
by:
|
|
23461
|
-
having?:
|
|
23567
|
+
export type AccessAuthSettingsGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
23568
|
+
where?: AccessAuthSettingsWhereInput
|
|
23569
|
+
orderBy?: AccessAuthSettingsOrderByWithAggregationInput | AccessAuthSettingsOrderByWithAggregationInput[]
|
|
23570
|
+
by: AccessAuthSettingsScalarFieldEnum[] | AccessAuthSettingsScalarFieldEnum
|
|
23571
|
+
having?: AccessAuthSettingsScalarWhereWithAggregatesInput
|
|
23462
23572
|
take?: number
|
|
23463
23573
|
skip?: number
|
|
23464
|
-
_count?:
|
|
23465
|
-
_min?:
|
|
23466
|
-
_max?:
|
|
23574
|
+
_count?: AccessAuthSettingsCountAggregateInputType | true
|
|
23575
|
+
_min?: AccessAuthSettingsMinAggregateInputType
|
|
23576
|
+
_max?: AccessAuthSettingsMaxAggregateInputType
|
|
23467
23577
|
}
|
|
23468
23578
|
|
|
23469
|
-
export type
|
|
23579
|
+
export type AccessAuthSettingsGroupByOutputType = {
|
|
23470
23580
|
id: string
|
|
23471
|
-
|
|
23472
|
-
|
|
23473
|
-
|
|
23474
|
-
|
|
23475
|
-
|
|
23476
|
-
|
|
23477
|
-
_count:
|
|
23478
|
-
_min:
|
|
23479
|
-
_max:
|
|
23581
|
+
enabled: boolean
|
|
23582
|
+
passwordHash: string | null
|
|
23583
|
+
sessionSecret: string
|
|
23584
|
+
passwordUpdatedAt: Date | null
|
|
23585
|
+
createdAt: Date
|
|
23586
|
+
updatedAt: Date
|
|
23587
|
+
_count: AccessAuthSettingsCountAggregateOutputType | null
|
|
23588
|
+
_min: AccessAuthSettingsMinAggregateOutputType | null
|
|
23589
|
+
_max: AccessAuthSettingsMaxAggregateOutputType | null
|
|
23480
23590
|
}
|
|
23481
23591
|
|
|
23482
|
-
type
|
|
23592
|
+
type GetAccessAuthSettingsGroupByPayload<T extends AccessAuthSettingsGroupByArgs> = Prisma.PrismaPromise<
|
|
23483
23593
|
Array<
|
|
23484
|
-
PickEnumerable<
|
|
23594
|
+
PickEnumerable<AccessAuthSettingsGroupByOutputType, T['by']> &
|
|
23485
23595
|
{
|
|
23486
|
-
[P in ((keyof T) & (keyof
|
|
23596
|
+
[P in ((keyof T) & (keyof AccessAuthSettingsGroupByOutputType))]: P extends '_count'
|
|
23487
23597
|
? T[P] extends boolean
|
|
23488
23598
|
? number
|
|
23489
|
-
: GetScalarType<T[P],
|
|
23490
|
-
: GetScalarType<T[P],
|
|
23599
|
+
: GetScalarType<T[P], AccessAuthSettingsGroupByOutputType[P]>
|
|
23600
|
+
: GetScalarType<T[P], AccessAuthSettingsGroupByOutputType[P]>
|
|
23491
23601
|
}
|
|
23492
23602
|
>
|
|
23493
23603
|
>
|
|
23494
23604
|
|
|
23495
23605
|
|
|
23496
|
-
export type
|
|
23606
|
+
export type AccessAuthSettingsSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
23497
23607
|
id?: boolean
|
|
23498
|
-
|
|
23499
|
-
|
|
23500
|
-
|
|
23501
|
-
|
|
23502
|
-
|
|
23503
|
-
|
|
23504
|
-
}, ExtArgs["result"]["
|
|
23608
|
+
enabled?: boolean
|
|
23609
|
+
passwordHash?: boolean
|
|
23610
|
+
sessionSecret?: boolean
|
|
23611
|
+
passwordUpdatedAt?: boolean
|
|
23612
|
+
createdAt?: boolean
|
|
23613
|
+
updatedAt?: boolean
|
|
23614
|
+
}, ExtArgs["result"]["accessAuthSettings"]>
|
|
23505
23615
|
|
|
23506
|
-
export type
|
|
23616
|
+
export type AccessAuthSettingsSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
23507
23617
|
id?: boolean
|
|
23508
|
-
|
|
23509
|
-
|
|
23510
|
-
|
|
23511
|
-
|
|
23512
|
-
|
|
23513
|
-
|
|
23514
|
-
}, ExtArgs["result"]["
|
|
23618
|
+
enabled?: boolean
|
|
23619
|
+
passwordHash?: boolean
|
|
23620
|
+
sessionSecret?: boolean
|
|
23621
|
+
passwordUpdatedAt?: boolean
|
|
23622
|
+
createdAt?: boolean
|
|
23623
|
+
updatedAt?: boolean
|
|
23624
|
+
}, ExtArgs["result"]["accessAuthSettings"]>
|
|
23515
23625
|
|
|
23516
|
-
export type
|
|
23626
|
+
export type AccessAuthSettingsSelectScalar = {
|
|
23517
23627
|
id?: boolean
|
|
23518
|
-
|
|
23519
|
-
|
|
23520
|
-
|
|
23521
|
-
|
|
23522
|
-
|
|
23523
|
-
|
|
23628
|
+
enabled?: boolean
|
|
23629
|
+
passwordHash?: boolean
|
|
23630
|
+
sessionSecret?: boolean
|
|
23631
|
+
passwordUpdatedAt?: boolean
|
|
23632
|
+
createdAt?: boolean
|
|
23633
|
+
updatedAt?: boolean
|
|
23524
23634
|
}
|
|
23525
23635
|
|
|
23526
23636
|
|
|
23527
|
-
export type $
|
|
23528
|
-
name: "
|
|
23637
|
+
export type $AccessAuthSettingsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
23638
|
+
name: "AccessAuthSettings"
|
|
23529
23639
|
objects: {}
|
|
23530
23640
|
scalars: $Extensions.GetPayloadResult<{
|
|
23531
23641
|
id: string
|
|
23532
|
-
|
|
23533
|
-
|
|
23534
|
-
|
|
23535
|
-
|
|
23536
|
-
|
|
23537
|
-
|
|
23538
|
-
}, ExtArgs["result"]["
|
|
23642
|
+
enabled: boolean
|
|
23643
|
+
passwordHash: string | null
|
|
23644
|
+
sessionSecret: string
|
|
23645
|
+
passwordUpdatedAt: Date | null
|
|
23646
|
+
createdAt: Date
|
|
23647
|
+
updatedAt: Date
|
|
23648
|
+
}, ExtArgs["result"]["accessAuthSettings"]>
|
|
23539
23649
|
composites: {}
|
|
23540
23650
|
}
|
|
23541
23651
|
|
|
23542
|
-
type
|
|
23652
|
+
type AccessAuthSettingsGetPayload<S extends boolean | null | undefined | AccessAuthSettingsDefaultArgs> = $Result.GetResult<Prisma.$AccessAuthSettingsPayload, S>
|
|
23543
23653
|
|
|
23544
|
-
type
|
|
23545
|
-
Omit<
|
|
23546
|
-
select?:
|
|
23654
|
+
type AccessAuthSettingsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
23655
|
+
Omit<AccessAuthSettingsFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
23656
|
+
select?: AccessAuthSettingsCountAggregateInputType | true
|
|
23547
23657
|
}
|
|
23548
23658
|
|
|
23549
|
-
export interface
|
|
23550
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
23659
|
+
export interface AccessAuthSettingsDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
23660
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['AccessAuthSettings'], meta: { name: 'AccessAuthSettings' } }
|
|
23551
23661
|
/**
|
|
23552
|
-
* Find zero or one
|
|
23553
|
-
* @param {
|
|
23662
|
+
* Find zero or one AccessAuthSettings that matches the filter.
|
|
23663
|
+
* @param {AccessAuthSettingsFindUniqueArgs} args - Arguments to find a AccessAuthSettings
|
|
23554
23664
|
* @example
|
|
23555
|
-
* // Get one
|
|
23556
|
-
* const
|
|
23665
|
+
* // Get one AccessAuthSettings
|
|
23666
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findUnique({
|
|
23557
23667
|
* where: {
|
|
23558
23668
|
* // ... provide filter here
|
|
23559
23669
|
* }
|
|
23560
23670
|
* })
|
|
23561
23671
|
*/
|
|
23562
|
-
findUnique<T extends
|
|
23672
|
+
findUnique<T extends AccessAuthSettingsFindUniqueArgs>(args: SelectSubset<T, AccessAuthSettingsFindUniqueArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
23563
23673
|
|
|
23564
23674
|
/**
|
|
23565
|
-
* Find one
|
|
23675
|
+
* Find one AccessAuthSettings that matches the filter or throw an error with `error.code='P2025'`
|
|
23566
23676
|
* if no matches were found.
|
|
23567
|
-
* @param {
|
|
23677
|
+
* @param {AccessAuthSettingsFindUniqueOrThrowArgs} args - Arguments to find a AccessAuthSettings
|
|
23568
23678
|
* @example
|
|
23569
|
-
* // Get one
|
|
23570
|
-
* const
|
|
23679
|
+
* // Get one AccessAuthSettings
|
|
23680
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findUniqueOrThrow({
|
|
23571
23681
|
* where: {
|
|
23572
23682
|
* // ... provide filter here
|
|
23573
23683
|
* }
|
|
23574
23684
|
* })
|
|
23575
23685
|
*/
|
|
23576
|
-
findUniqueOrThrow<T extends
|
|
23686
|
+
findUniqueOrThrow<T extends AccessAuthSettingsFindUniqueOrThrowArgs>(args: SelectSubset<T, AccessAuthSettingsFindUniqueOrThrowArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
23577
23687
|
|
|
23578
23688
|
/**
|
|
23579
|
-
* Find the first
|
|
23689
|
+
* Find the first AccessAuthSettings that matches the filter.
|
|
23580
23690
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23581
23691
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23582
|
-
* @param {
|
|
23692
|
+
* @param {AccessAuthSettingsFindFirstArgs} args - Arguments to find a AccessAuthSettings
|
|
23583
23693
|
* @example
|
|
23584
|
-
* // Get one
|
|
23585
|
-
* const
|
|
23694
|
+
* // Get one AccessAuthSettings
|
|
23695
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findFirst({
|
|
23586
23696
|
* where: {
|
|
23587
23697
|
* // ... provide filter here
|
|
23588
23698
|
* }
|
|
23589
23699
|
* })
|
|
23590
23700
|
*/
|
|
23591
|
-
findFirst<T extends
|
|
23701
|
+
findFirst<T extends AccessAuthSettingsFindFirstArgs>(args?: SelectSubset<T, AccessAuthSettingsFindFirstArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
23592
23702
|
|
|
23593
23703
|
/**
|
|
23594
|
-
* Find the first
|
|
23704
|
+
* Find the first AccessAuthSettings that matches the filter or
|
|
23595
23705
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
23596
23706
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23597
23707
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23598
|
-
* @param {
|
|
23708
|
+
* @param {AccessAuthSettingsFindFirstOrThrowArgs} args - Arguments to find a AccessAuthSettings
|
|
23599
23709
|
* @example
|
|
23600
|
-
* // Get one
|
|
23601
|
-
* const
|
|
23710
|
+
* // Get one AccessAuthSettings
|
|
23711
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findFirstOrThrow({
|
|
23602
23712
|
* where: {
|
|
23603
23713
|
* // ... provide filter here
|
|
23604
23714
|
* }
|
|
23605
23715
|
* })
|
|
23606
23716
|
*/
|
|
23607
|
-
findFirstOrThrow<T extends
|
|
23717
|
+
findFirstOrThrow<T extends AccessAuthSettingsFindFirstOrThrowArgs>(args?: SelectSubset<T, AccessAuthSettingsFindFirstOrThrowArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
23608
23718
|
|
|
23609
23719
|
/**
|
|
23610
|
-
* Find zero or more
|
|
23720
|
+
* Find zero or more AccessAuthSettings that matches the filter.
|
|
23611
23721
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23612
23722
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23613
|
-
* @param {
|
|
23723
|
+
* @param {AccessAuthSettingsFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
23614
23724
|
* @example
|
|
23615
|
-
* // Get all
|
|
23616
|
-
* const
|
|
23725
|
+
* // Get all AccessAuthSettings
|
|
23726
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findMany()
|
|
23617
23727
|
*
|
|
23618
|
-
* // Get first 10
|
|
23619
|
-
* const
|
|
23728
|
+
* // Get first 10 AccessAuthSettings
|
|
23729
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.findMany({ take: 10 })
|
|
23620
23730
|
*
|
|
23621
23731
|
* // Only select the `id`
|
|
23622
|
-
* const
|
|
23732
|
+
* const accessAuthSettingsWithIdOnly = await prisma.accessAuthSettings.findMany({ select: { id: true } })
|
|
23623
23733
|
*
|
|
23624
23734
|
*/
|
|
23625
|
-
findMany<T extends
|
|
23735
|
+
findMany<T extends AccessAuthSettingsFindManyArgs>(args?: SelectSubset<T, AccessAuthSettingsFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "findMany">>
|
|
23626
23736
|
|
|
23627
23737
|
/**
|
|
23628
|
-
* Create a
|
|
23629
|
-
* @param {
|
|
23738
|
+
* Create a AccessAuthSettings.
|
|
23739
|
+
* @param {AccessAuthSettingsCreateArgs} args - Arguments to create a AccessAuthSettings.
|
|
23630
23740
|
* @example
|
|
23631
|
-
* // Create one
|
|
23632
|
-
* const
|
|
23741
|
+
* // Create one AccessAuthSettings
|
|
23742
|
+
* const AccessAuthSettings = await prisma.accessAuthSettings.create({
|
|
23633
23743
|
* data: {
|
|
23634
|
-
* // ... data to create a
|
|
23744
|
+
* // ... data to create a AccessAuthSettings
|
|
23635
23745
|
* }
|
|
23636
23746
|
* })
|
|
23637
23747
|
*
|
|
23638
23748
|
*/
|
|
23639
|
-
create<T extends
|
|
23749
|
+
create<T extends AccessAuthSettingsCreateArgs>(args: SelectSubset<T, AccessAuthSettingsCreateArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
23640
23750
|
|
|
23641
23751
|
/**
|
|
23642
|
-
* Create many
|
|
23643
|
-
* @param {
|
|
23752
|
+
* Create many AccessAuthSettings.
|
|
23753
|
+
* @param {AccessAuthSettingsCreateManyArgs} args - Arguments to create many AccessAuthSettings.
|
|
23644
23754
|
* @example
|
|
23645
|
-
* // Create many
|
|
23646
|
-
* const
|
|
23755
|
+
* // Create many AccessAuthSettings
|
|
23756
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.createMany({
|
|
23647
23757
|
* data: [
|
|
23648
23758
|
* // ... provide data here
|
|
23649
23759
|
* ]
|
|
23650
23760
|
* })
|
|
23651
23761
|
*
|
|
23652
23762
|
*/
|
|
23653
|
-
createMany<T extends
|
|
23763
|
+
createMany<T extends AccessAuthSettingsCreateManyArgs>(args?: SelectSubset<T, AccessAuthSettingsCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
23654
23764
|
|
|
23655
23765
|
/**
|
|
23656
|
-
* Create many
|
|
23657
|
-
* @param {
|
|
23766
|
+
* Create many AccessAuthSettings and returns the data saved in the database.
|
|
23767
|
+
* @param {AccessAuthSettingsCreateManyAndReturnArgs} args - Arguments to create many AccessAuthSettings.
|
|
23658
23768
|
* @example
|
|
23659
|
-
* // Create many
|
|
23660
|
-
* const
|
|
23769
|
+
* // Create many AccessAuthSettings
|
|
23770
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.createManyAndReturn({
|
|
23661
23771
|
* data: [
|
|
23662
23772
|
* // ... provide data here
|
|
23663
23773
|
* ]
|
|
23664
23774
|
* })
|
|
23665
23775
|
*
|
|
23666
|
-
* // Create many
|
|
23667
|
-
* const
|
|
23776
|
+
* // Create many AccessAuthSettings and only return the `id`
|
|
23777
|
+
* const accessAuthSettingsWithIdOnly = await prisma.accessAuthSettings.createManyAndReturn({
|
|
23668
23778
|
* select: { id: true },
|
|
23669
23779
|
* data: [
|
|
23670
23780
|
* // ... provide data here
|
|
@@ -23674,28 +23784,28 @@ export namespace Prisma {
|
|
|
23674
23784
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23675
23785
|
*
|
|
23676
23786
|
*/
|
|
23677
|
-
createManyAndReturn<T extends
|
|
23787
|
+
createManyAndReturn<T extends AccessAuthSettingsCreateManyAndReturnArgs>(args?: SelectSubset<T, AccessAuthSettingsCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
23678
23788
|
|
|
23679
23789
|
/**
|
|
23680
|
-
* Delete a
|
|
23681
|
-
* @param {
|
|
23790
|
+
* Delete a AccessAuthSettings.
|
|
23791
|
+
* @param {AccessAuthSettingsDeleteArgs} args - Arguments to delete one AccessAuthSettings.
|
|
23682
23792
|
* @example
|
|
23683
|
-
* // Delete one
|
|
23684
|
-
* const
|
|
23793
|
+
* // Delete one AccessAuthSettings
|
|
23794
|
+
* const AccessAuthSettings = await prisma.accessAuthSettings.delete({
|
|
23685
23795
|
* where: {
|
|
23686
|
-
* // ... filter to delete one
|
|
23796
|
+
* // ... filter to delete one AccessAuthSettings
|
|
23687
23797
|
* }
|
|
23688
23798
|
* })
|
|
23689
23799
|
*
|
|
23690
23800
|
*/
|
|
23691
|
-
delete<T extends
|
|
23801
|
+
delete<T extends AccessAuthSettingsDeleteArgs>(args: SelectSubset<T, AccessAuthSettingsDeleteArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
23692
23802
|
|
|
23693
23803
|
/**
|
|
23694
|
-
* Update one
|
|
23695
|
-
* @param {
|
|
23804
|
+
* Update one AccessAuthSettings.
|
|
23805
|
+
* @param {AccessAuthSettingsUpdateArgs} args - Arguments to update one AccessAuthSettings.
|
|
23696
23806
|
* @example
|
|
23697
|
-
* // Update one
|
|
23698
|
-
* const
|
|
23807
|
+
* // Update one AccessAuthSettings
|
|
23808
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.update({
|
|
23699
23809
|
* where: {
|
|
23700
23810
|
* // ... provide filter here
|
|
23701
23811
|
* },
|
|
@@ -23705,30 +23815,30 @@ export namespace Prisma {
|
|
|
23705
23815
|
* })
|
|
23706
23816
|
*
|
|
23707
23817
|
*/
|
|
23708
|
-
update<T extends
|
|
23818
|
+
update<T extends AccessAuthSettingsUpdateArgs>(args: SelectSubset<T, AccessAuthSettingsUpdateArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
23709
23819
|
|
|
23710
23820
|
/**
|
|
23711
|
-
* Delete zero or more
|
|
23712
|
-
* @param {
|
|
23821
|
+
* Delete zero or more AccessAuthSettings.
|
|
23822
|
+
* @param {AccessAuthSettingsDeleteManyArgs} args - Arguments to filter AccessAuthSettings to delete.
|
|
23713
23823
|
* @example
|
|
23714
|
-
* // Delete a few
|
|
23715
|
-
* const { count } = await prisma.
|
|
23824
|
+
* // Delete a few AccessAuthSettings
|
|
23825
|
+
* const { count } = await prisma.accessAuthSettings.deleteMany({
|
|
23716
23826
|
* where: {
|
|
23717
23827
|
* // ... provide filter here
|
|
23718
23828
|
* }
|
|
23719
23829
|
* })
|
|
23720
23830
|
*
|
|
23721
23831
|
*/
|
|
23722
|
-
deleteMany<T extends
|
|
23832
|
+
deleteMany<T extends AccessAuthSettingsDeleteManyArgs>(args?: SelectSubset<T, AccessAuthSettingsDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
23723
23833
|
|
|
23724
23834
|
/**
|
|
23725
|
-
* Update zero or more
|
|
23835
|
+
* Update zero or more AccessAuthSettings.
|
|
23726
23836
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23727
23837
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23728
|
-
* @param {
|
|
23838
|
+
* @param {AccessAuthSettingsUpdateManyArgs} args - Arguments to update one or more rows.
|
|
23729
23839
|
* @example
|
|
23730
|
-
* // Update many
|
|
23731
|
-
* const
|
|
23840
|
+
* // Update many AccessAuthSettings
|
|
23841
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.updateMany({
|
|
23732
23842
|
* where: {
|
|
23733
23843
|
* // ... provide filter here
|
|
23734
23844
|
* },
|
|
@@ -23738,56 +23848,56 @@ export namespace Prisma {
|
|
|
23738
23848
|
* })
|
|
23739
23849
|
*
|
|
23740
23850
|
*/
|
|
23741
|
-
updateMany<T extends
|
|
23851
|
+
updateMany<T extends AccessAuthSettingsUpdateManyArgs>(args: SelectSubset<T, AccessAuthSettingsUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
23742
23852
|
|
|
23743
23853
|
/**
|
|
23744
|
-
* Create or update one
|
|
23745
|
-
* @param {
|
|
23854
|
+
* Create or update one AccessAuthSettings.
|
|
23855
|
+
* @param {AccessAuthSettingsUpsertArgs} args - Arguments to update or create a AccessAuthSettings.
|
|
23746
23856
|
* @example
|
|
23747
|
-
* // Update or create a
|
|
23748
|
-
* const
|
|
23857
|
+
* // Update or create a AccessAuthSettings
|
|
23858
|
+
* const accessAuthSettings = await prisma.accessAuthSettings.upsert({
|
|
23749
23859
|
* create: {
|
|
23750
|
-
* // ... data to create a
|
|
23860
|
+
* // ... data to create a AccessAuthSettings
|
|
23751
23861
|
* },
|
|
23752
23862
|
* update: {
|
|
23753
23863
|
* // ... in case it already exists, update
|
|
23754
23864
|
* },
|
|
23755
23865
|
* where: {
|
|
23756
|
-
* // ... the filter for the
|
|
23866
|
+
* // ... the filter for the AccessAuthSettings we want to update
|
|
23757
23867
|
* }
|
|
23758
23868
|
* })
|
|
23759
23869
|
*/
|
|
23760
|
-
upsert<T extends
|
|
23870
|
+
upsert<T extends AccessAuthSettingsUpsertArgs>(args: SelectSubset<T, AccessAuthSettingsUpsertArgs<ExtArgs>>): Prisma__AccessAuthSettingsClient<$Result.GetResult<Prisma.$AccessAuthSettingsPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
23761
23871
|
|
|
23762
23872
|
|
|
23763
23873
|
/**
|
|
23764
|
-
* Count the number of
|
|
23874
|
+
* Count the number of AccessAuthSettings.
|
|
23765
23875
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23766
23876
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23767
|
-
* @param {
|
|
23877
|
+
* @param {AccessAuthSettingsCountArgs} args - Arguments to filter AccessAuthSettings to count.
|
|
23768
23878
|
* @example
|
|
23769
|
-
* // Count the number of
|
|
23770
|
-
* const count = await prisma.
|
|
23879
|
+
* // Count the number of AccessAuthSettings
|
|
23880
|
+
* const count = await prisma.accessAuthSettings.count({
|
|
23771
23881
|
* where: {
|
|
23772
|
-
* // ... the filter for the
|
|
23882
|
+
* // ... the filter for the AccessAuthSettings we want to count
|
|
23773
23883
|
* }
|
|
23774
23884
|
* })
|
|
23775
23885
|
**/
|
|
23776
|
-
count<T extends
|
|
23777
|
-
args?: Subset<T,
|
|
23886
|
+
count<T extends AccessAuthSettingsCountArgs>(
|
|
23887
|
+
args?: Subset<T, AccessAuthSettingsCountArgs>,
|
|
23778
23888
|
): Prisma.PrismaPromise<
|
|
23779
23889
|
T extends $Utils.Record<'select', any>
|
|
23780
23890
|
? T['select'] extends true
|
|
23781
23891
|
? number
|
|
23782
|
-
: GetScalarType<T['select'],
|
|
23892
|
+
: GetScalarType<T['select'], AccessAuthSettingsCountAggregateOutputType>
|
|
23783
23893
|
: number
|
|
23784
23894
|
>
|
|
23785
23895
|
|
|
23786
23896
|
/**
|
|
23787
|
-
* Allows you to perform aggregations operations on a
|
|
23897
|
+
* Allows you to perform aggregations operations on a AccessAuthSettings.
|
|
23788
23898
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23789
23899
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23790
|
-
* @param {
|
|
23900
|
+
* @param {AccessAuthSettingsAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
23791
23901
|
* @example
|
|
23792
23902
|
* // Ordered by age ascending
|
|
23793
23903
|
* // Where email contains prisma.io
|
|
@@ -23807,13 +23917,13 @@ export namespace Prisma {
|
|
|
23807
23917
|
* take: 10,
|
|
23808
23918
|
* })
|
|
23809
23919
|
**/
|
|
23810
|
-
aggregate<T extends
|
|
23920
|
+
aggregate<T extends AccessAuthSettingsAggregateArgs>(args: Subset<T, AccessAuthSettingsAggregateArgs>): Prisma.PrismaPromise<GetAccessAuthSettingsAggregateType<T>>
|
|
23811
23921
|
|
|
23812
23922
|
/**
|
|
23813
|
-
* Group by
|
|
23923
|
+
* Group by AccessAuthSettings.
|
|
23814
23924
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
23815
23925
|
* Read more here: https://pris.ly/d/null-undefined
|
|
23816
|
-
* @param {
|
|
23926
|
+
* @param {AccessAuthSettingsGroupByArgs} args - Group by arguments.
|
|
23817
23927
|
* @example
|
|
23818
23928
|
* // Group by city, order by createdAt, get count
|
|
23819
23929
|
* const result = await prisma.user.groupBy({
|
|
@@ -23828,14 +23938,914 @@ export namespace Prisma {
|
|
|
23828
23938
|
*
|
|
23829
23939
|
**/
|
|
23830
23940
|
groupBy<
|
|
23831
|
-
T extends
|
|
23941
|
+
T extends AccessAuthSettingsGroupByArgs,
|
|
23832
23942
|
HasSelectOrTake extends Or<
|
|
23833
23943
|
Extends<'skip', Keys<T>>,
|
|
23834
23944
|
Extends<'take', Keys<T>>
|
|
23835
23945
|
>,
|
|
23836
23946
|
OrderByArg extends True extends HasSelectOrTake
|
|
23837
|
-
? { orderBy:
|
|
23838
|
-
: { orderBy?:
|
|
23947
|
+
? { orderBy: AccessAuthSettingsGroupByArgs['orderBy'] }
|
|
23948
|
+
: { orderBy?: AccessAuthSettingsGroupByArgs['orderBy'] },
|
|
23949
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
23950
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
23951
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
23952
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
23953
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
23954
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
23955
|
+
InputErrors extends ByEmpty extends True
|
|
23956
|
+
? `Error: "by" must not be empty.`
|
|
23957
|
+
: HavingValid extends False
|
|
23958
|
+
? {
|
|
23959
|
+
[P in HavingFields]: P extends ByFields
|
|
23960
|
+
? never
|
|
23961
|
+
: P extends string
|
|
23962
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
23963
|
+
: [
|
|
23964
|
+
Error,
|
|
23965
|
+
'Field ',
|
|
23966
|
+
P,
|
|
23967
|
+
` in "having" needs to be provided in "by"`,
|
|
23968
|
+
]
|
|
23969
|
+
}[HavingFields]
|
|
23970
|
+
: 'take' extends Keys<T>
|
|
23971
|
+
? 'orderBy' extends Keys<T>
|
|
23972
|
+
? ByValid extends True
|
|
23973
|
+
? {}
|
|
23974
|
+
: {
|
|
23975
|
+
[P in OrderFields]: P extends ByFields
|
|
23976
|
+
? never
|
|
23977
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
23978
|
+
}[OrderFields]
|
|
23979
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
23980
|
+
: 'skip' extends Keys<T>
|
|
23981
|
+
? 'orderBy' extends Keys<T>
|
|
23982
|
+
? ByValid extends True
|
|
23983
|
+
? {}
|
|
23984
|
+
: {
|
|
23985
|
+
[P in OrderFields]: P extends ByFields
|
|
23986
|
+
? never
|
|
23987
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
23988
|
+
}[OrderFields]
|
|
23989
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
23990
|
+
: ByValid extends True
|
|
23991
|
+
? {}
|
|
23992
|
+
: {
|
|
23993
|
+
[P in OrderFields]: P extends ByFields
|
|
23994
|
+
? never
|
|
23995
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
23996
|
+
}[OrderFields]
|
|
23997
|
+
>(args: SubsetIntersection<T, AccessAuthSettingsGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetAccessAuthSettingsGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
23998
|
+
/**
|
|
23999
|
+
* Fields of the AccessAuthSettings model
|
|
24000
|
+
*/
|
|
24001
|
+
readonly fields: AccessAuthSettingsFieldRefs;
|
|
24002
|
+
}
|
|
24003
|
+
|
|
24004
|
+
/**
|
|
24005
|
+
* The delegate class that acts as a "Promise-like" for AccessAuthSettings.
|
|
24006
|
+
* Why is this prefixed with `Prisma__`?
|
|
24007
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
24008
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
24009
|
+
*/
|
|
24010
|
+
export interface Prisma__AccessAuthSettingsClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
24011
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
24012
|
+
/**
|
|
24013
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
24014
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
24015
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
24016
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
24017
|
+
*/
|
|
24018
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
24019
|
+
/**
|
|
24020
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
24021
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
24022
|
+
* @returns A Promise for the completion of the callback.
|
|
24023
|
+
*/
|
|
24024
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
24025
|
+
/**
|
|
24026
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
24027
|
+
* resolved value cannot be modified from the callback.
|
|
24028
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
24029
|
+
* @returns A Promise for the completion of the callback.
|
|
24030
|
+
*/
|
|
24031
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
24032
|
+
}
|
|
24033
|
+
|
|
24034
|
+
|
|
24035
|
+
|
|
24036
|
+
|
|
24037
|
+
/**
|
|
24038
|
+
* Fields of the AccessAuthSettings model
|
|
24039
|
+
*/
|
|
24040
|
+
interface AccessAuthSettingsFieldRefs {
|
|
24041
|
+
readonly id: FieldRef<"AccessAuthSettings", 'String'>
|
|
24042
|
+
readonly enabled: FieldRef<"AccessAuthSettings", 'Boolean'>
|
|
24043
|
+
readonly passwordHash: FieldRef<"AccessAuthSettings", 'String'>
|
|
24044
|
+
readonly sessionSecret: FieldRef<"AccessAuthSettings", 'String'>
|
|
24045
|
+
readonly passwordUpdatedAt: FieldRef<"AccessAuthSettings", 'DateTime'>
|
|
24046
|
+
readonly createdAt: FieldRef<"AccessAuthSettings", 'DateTime'>
|
|
24047
|
+
readonly updatedAt: FieldRef<"AccessAuthSettings", 'DateTime'>
|
|
24048
|
+
}
|
|
24049
|
+
|
|
24050
|
+
|
|
24051
|
+
// Custom InputTypes
|
|
24052
|
+
/**
|
|
24053
|
+
* AccessAuthSettings findUnique
|
|
24054
|
+
*/
|
|
24055
|
+
export type AccessAuthSettingsFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24056
|
+
/**
|
|
24057
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24058
|
+
*/
|
|
24059
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24060
|
+
/**
|
|
24061
|
+
* Filter, which AccessAuthSettings to fetch.
|
|
24062
|
+
*/
|
|
24063
|
+
where: AccessAuthSettingsWhereUniqueInput
|
|
24064
|
+
}
|
|
24065
|
+
|
|
24066
|
+
/**
|
|
24067
|
+
* AccessAuthSettings findUniqueOrThrow
|
|
24068
|
+
*/
|
|
24069
|
+
export type AccessAuthSettingsFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24070
|
+
/**
|
|
24071
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24072
|
+
*/
|
|
24073
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24074
|
+
/**
|
|
24075
|
+
* Filter, which AccessAuthSettings to fetch.
|
|
24076
|
+
*/
|
|
24077
|
+
where: AccessAuthSettingsWhereUniqueInput
|
|
24078
|
+
}
|
|
24079
|
+
|
|
24080
|
+
/**
|
|
24081
|
+
* AccessAuthSettings findFirst
|
|
24082
|
+
*/
|
|
24083
|
+
export type AccessAuthSettingsFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24084
|
+
/**
|
|
24085
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24086
|
+
*/
|
|
24087
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24088
|
+
/**
|
|
24089
|
+
* Filter, which AccessAuthSettings to fetch.
|
|
24090
|
+
*/
|
|
24091
|
+
where?: AccessAuthSettingsWhereInput
|
|
24092
|
+
/**
|
|
24093
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24094
|
+
*
|
|
24095
|
+
* Determine the order of AccessAuthSettings to fetch.
|
|
24096
|
+
*/
|
|
24097
|
+
orderBy?: AccessAuthSettingsOrderByWithRelationInput | AccessAuthSettingsOrderByWithRelationInput[]
|
|
24098
|
+
/**
|
|
24099
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24100
|
+
*
|
|
24101
|
+
* Sets the position for searching for AccessAuthSettings.
|
|
24102
|
+
*/
|
|
24103
|
+
cursor?: AccessAuthSettingsWhereUniqueInput
|
|
24104
|
+
/**
|
|
24105
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24106
|
+
*
|
|
24107
|
+
* Take `±n` AccessAuthSettings from the position of the cursor.
|
|
24108
|
+
*/
|
|
24109
|
+
take?: number
|
|
24110
|
+
/**
|
|
24111
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24112
|
+
*
|
|
24113
|
+
* Skip the first `n` AccessAuthSettings.
|
|
24114
|
+
*/
|
|
24115
|
+
skip?: number
|
|
24116
|
+
/**
|
|
24117
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
24118
|
+
*
|
|
24119
|
+
* Filter by unique combinations of AccessAuthSettings.
|
|
24120
|
+
*/
|
|
24121
|
+
distinct?: AccessAuthSettingsScalarFieldEnum | AccessAuthSettingsScalarFieldEnum[]
|
|
24122
|
+
}
|
|
24123
|
+
|
|
24124
|
+
/**
|
|
24125
|
+
* AccessAuthSettings findFirstOrThrow
|
|
24126
|
+
*/
|
|
24127
|
+
export type AccessAuthSettingsFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24128
|
+
/**
|
|
24129
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24130
|
+
*/
|
|
24131
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24132
|
+
/**
|
|
24133
|
+
* Filter, which AccessAuthSettings to fetch.
|
|
24134
|
+
*/
|
|
24135
|
+
where?: AccessAuthSettingsWhereInput
|
|
24136
|
+
/**
|
|
24137
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24138
|
+
*
|
|
24139
|
+
* Determine the order of AccessAuthSettings to fetch.
|
|
24140
|
+
*/
|
|
24141
|
+
orderBy?: AccessAuthSettingsOrderByWithRelationInput | AccessAuthSettingsOrderByWithRelationInput[]
|
|
24142
|
+
/**
|
|
24143
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24144
|
+
*
|
|
24145
|
+
* Sets the position for searching for AccessAuthSettings.
|
|
24146
|
+
*/
|
|
24147
|
+
cursor?: AccessAuthSettingsWhereUniqueInput
|
|
24148
|
+
/**
|
|
24149
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24150
|
+
*
|
|
24151
|
+
* Take `±n` AccessAuthSettings from the position of the cursor.
|
|
24152
|
+
*/
|
|
24153
|
+
take?: number
|
|
24154
|
+
/**
|
|
24155
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24156
|
+
*
|
|
24157
|
+
* Skip the first `n` AccessAuthSettings.
|
|
24158
|
+
*/
|
|
24159
|
+
skip?: number
|
|
24160
|
+
/**
|
|
24161
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
24162
|
+
*
|
|
24163
|
+
* Filter by unique combinations of AccessAuthSettings.
|
|
24164
|
+
*/
|
|
24165
|
+
distinct?: AccessAuthSettingsScalarFieldEnum | AccessAuthSettingsScalarFieldEnum[]
|
|
24166
|
+
}
|
|
24167
|
+
|
|
24168
|
+
/**
|
|
24169
|
+
* AccessAuthSettings findMany
|
|
24170
|
+
*/
|
|
24171
|
+
export type AccessAuthSettingsFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24172
|
+
/**
|
|
24173
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24174
|
+
*/
|
|
24175
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24176
|
+
/**
|
|
24177
|
+
* Filter, which AccessAuthSettings to fetch.
|
|
24178
|
+
*/
|
|
24179
|
+
where?: AccessAuthSettingsWhereInput
|
|
24180
|
+
/**
|
|
24181
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24182
|
+
*
|
|
24183
|
+
* Determine the order of AccessAuthSettings to fetch.
|
|
24184
|
+
*/
|
|
24185
|
+
orderBy?: AccessAuthSettingsOrderByWithRelationInput | AccessAuthSettingsOrderByWithRelationInput[]
|
|
24186
|
+
/**
|
|
24187
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24188
|
+
*
|
|
24189
|
+
* Sets the position for listing AccessAuthSettings.
|
|
24190
|
+
*/
|
|
24191
|
+
cursor?: AccessAuthSettingsWhereUniqueInput
|
|
24192
|
+
/**
|
|
24193
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24194
|
+
*
|
|
24195
|
+
* Take `±n` AccessAuthSettings from the position of the cursor.
|
|
24196
|
+
*/
|
|
24197
|
+
take?: number
|
|
24198
|
+
/**
|
|
24199
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24200
|
+
*
|
|
24201
|
+
* Skip the first `n` AccessAuthSettings.
|
|
24202
|
+
*/
|
|
24203
|
+
skip?: number
|
|
24204
|
+
distinct?: AccessAuthSettingsScalarFieldEnum | AccessAuthSettingsScalarFieldEnum[]
|
|
24205
|
+
}
|
|
24206
|
+
|
|
24207
|
+
/**
|
|
24208
|
+
* AccessAuthSettings create
|
|
24209
|
+
*/
|
|
24210
|
+
export type AccessAuthSettingsCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24211
|
+
/**
|
|
24212
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24213
|
+
*/
|
|
24214
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24215
|
+
/**
|
|
24216
|
+
* The data needed to create a AccessAuthSettings.
|
|
24217
|
+
*/
|
|
24218
|
+
data: XOR<AccessAuthSettingsCreateInput, AccessAuthSettingsUncheckedCreateInput>
|
|
24219
|
+
}
|
|
24220
|
+
|
|
24221
|
+
/**
|
|
24222
|
+
* AccessAuthSettings createMany
|
|
24223
|
+
*/
|
|
24224
|
+
export type AccessAuthSettingsCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24225
|
+
/**
|
|
24226
|
+
* The data used to create many AccessAuthSettings.
|
|
24227
|
+
*/
|
|
24228
|
+
data: AccessAuthSettingsCreateManyInput | AccessAuthSettingsCreateManyInput[]
|
|
24229
|
+
}
|
|
24230
|
+
|
|
24231
|
+
/**
|
|
24232
|
+
* AccessAuthSettings createManyAndReturn
|
|
24233
|
+
*/
|
|
24234
|
+
export type AccessAuthSettingsCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24235
|
+
/**
|
|
24236
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24237
|
+
*/
|
|
24238
|
+
select?: AccessAuthSettingsSelectCreateManyAndReturn<ExtArgs> | null
|
|
24239
|
+
/**
|
|
24240
|
+
* The data used to create many AccessAuthSettings.
|
|
24241
|
+
*/
|
|
24242
|
+
data: AccessAuthSettingsCreateManyInput | AccessAuthSettingsCreateManyInput[]
|
|
24243
|
+
}
|
|
24244
|
+
|
|
24245
|
+
/**
|
|
24246
|
+
* AccessAuthSettings update
|
|
24247
|
+
*/
|
|
24248
|
+
export type AccessAuthSettingsUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24249
|
+
/**
|
|
24250
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24251
|
+
*/
|
|
24252
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24253
|
+
/**
|
|
24254
|
+
* The data needed to update a AccessAuthSettings.
|
|
24255
|
+
*/
|
|
24256
|
+
data: XOR<AccessAuthSettingsUpdateInput, AccessAuthSettingsUncheckedUpdateInput>
|
|
24257
|
+
/**
|
|
24258
|
+
* Choose, which AccessAuthSettings to update.
|
|
24259
|
+
*/
|
|
24260
|
+
where: AccessAuthSettingsWhereUniqueInput
|
|
24261
|
+
}
|
|
24262
|
+
|
|
24263
|
+
/**
|
|
24264
|
+
* AccessAuthSettings updateMany
|
|
24265
|
+
*/
|
|
24266
|
+
export type AccessAuthSettingsUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24267
|
+
/**
|
|
24268
|
+
* The data used to update AccessAuthSettings.
|
|
24269
|
+
*/
|
|
24270
|
+
data: XOR<AccessAuthSettingsUpdateManyMutationInput, AccessAuthSettingsUncheckedUpdateManyInput>
|
|
24271
|
+
/**
|
|
24272
|
+
* Filter which AccessAuthSettings to update
|
|
24273
|
+
*/
|
|
24274
|
+
where?: AccessAuthSettingsWhereInput
|
|
24275
|
+
}
|
|
24276
|
+
|
|
24277
|
+
/**
|
|
24278
|
+
* AccessAuthSettings upsert
|
|
24279
|
+
*/
|
|
24280
|
+
export type AccessAuthSettingsUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24281
|
+
/**
|
|
24282
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24283
|
+
*/
|
|
24284
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24285
|
+
/**
|
|
24286
|
+
* The filter to search for the AccessAuthSettings to update in case it exists.
|
|
24287
|
+
*/
|
|
24288
|
+
where: AccessAuthSettingsWhereUniqueInput
|
|
24289
|
+
/**
|
|
24290
|
+
* In case the AccessAuthSettings found by the `where` argument doesn't exist, create a new AccessAuthSettings with this data.
|
|
24291
|
+
*/
|
|
24292
|
+
create: XOR<AccessAuthSettingsCreateInput, AccessAuthSettingsUncheckedCreateInput>
|
|
24293
|
+
/**
|
|
24294
|
+
* In case the AccessAuthSettings was found with the provided `where` argument, update it with this data.
|
|
24295
|
+
*/
|
|
24296
|
+
update: XOR<AccessAuthSettingsUpdateInput, AccessAuthSettingsUncheckedUpdateInput>
|
|
24297
|
+
}
|
|
24298
|
+
|
|
24299
|
+
/**
|
|
24300
|
+
* AccessAuthSettings delete
|
|
24301
|
+
*/
|
|
24302
|
+
export type AccessAuthSettingsDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24303
|
+
/**
|
|
24304
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24305
|
+
*/
|
|
24306
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24307
|
+
/**
|
|
24308
|
+
* Filter which AccessAuthSettings to delete.
|
|
24309
|
+
*/
|
|
24310
|
+
where: AccessAuthSettingsWhereUniqueInput
|
|
24311
|
+
}
|
|
24312
|
+
|
|
24313
|
+
/**
|
|
24314
|
+
* AccessAuthSettings deleteMany
|
|
24315
|
+
*/
|
|
24316
|
+
export type AccessAuthSettingsDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24317
|
+
/**
|
|
24318
|
+
* Filter which AccessAuthSettings to delete
|
|
24319
|
+
*/
|
|
24320
|
+
where?: AccessAuthSettingsWhereInput
|
|
24321
|
+
}
|
|
24322
|
+
|
|
24323
|
+
/**
|
|
24324
|
+
* AccessAuthSettings without action
|
|
24325
|
+
*/
|
|
24326
|
+
export type AccessAuthSettingsDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24327
|
+
/**
|
|
24328
|
+
* Select specific fields to fetch from the AccessAuthSettings
|
|
24329
|
+
*/
|
|
24330
|
+
select?: AccessAuthSettingsSelect<ExtArgs> | null
|
|
24331
|
+
}
|
|
24332
|
+
|
|
24333
|
+
|
|
24334
|
+
/**
|
|
24335
|
+
* Model NotificationSettings
|
|
24336
|
+
*/
|
|
24337
|
+
|
|
24338
|
+
export type AggregateNotificationSettings = {
|
|
24339
|
+
_count: NotificationSettingsCountAggregateOutputType | null
|
|
24340
|
+
_min: NotificationSettingsMinAggregateOutputType | null
|
|
24341
|
+
_max: NotificationSettingsMaxAggregateOutputType | null
|
|
24342
|
+
}
|
|
24343
|
+
|
|
24344
|
+
export type NotificationSettingsMinAggregateOutputType = {
|
|
24345
|
+
id: string | null
|
|
24346
|
+
osNotificationEnabled: boolean | null
|
|
24347
|
+
thirdPartyChannel: string | null
|
|
24348
|
+
feishuWebhookUrl: string | null
|
|
24349
|
+
thirdPartyBaseUrl: string | null
|
|
24350
|
+
taskInReviewTitleTemplate: string | null
|
|
24351
|
+
taskInReviewBodyTemplate: string | null
|
|
24352
|
+
}
|
|
24353
|
+
|
|
24354
|
+
export type NotificationSettingsMaxAggregateOutputType = {
|
|
24355
|
+
id: string | null
|
|
24356
|
+
osNotificationEnabled: boolean | null
|
|
24357
|
+
thirdPartyChannel: string | null
|
|
24358
|
+
feishuWebhookUrl: string | null
|
|
24359
|
+
thirdPartyBaseUrl: string | null
|
|
24360
|
+
taskInReviewTitleTemplate: string | null
|
|
24361
|
+
taskInReviewBodyTemplate: string | null
|
|
24362
|
+
}
|
|
24363
|
+
|
|
24364
|
+
export type NotificationSettingsCountAggregateOutputType = {
|
|
24365
|
+
id: number
|
|
24366
|
+
osNotificationEnabled: number
|
|
24367
|
+
thirdPartyChannel: number
|
|
24368
|
+
feishuWebhookUrl: number
|
|
24369
|
+
thirdPartyBaseUrl: number
|
|
24370
|
+
taskInReviewTitleTemplate: number
|
|
24371
|
+
taskInReviewBodyTemplate: number
|
|
24372
|
+
_all: number
|
|
24373
|
+
}
|
|
24374
|
+
|
|
24375
|
+
|
|
24376
|
+
export type NotificationSettingsMinAggregateInputType = {
|
|
24377
|
+
id?: true
|
|
24378
|
+
osNotificationEnabled?: true
|
|
24379
|
+
thirdPartyChannel?: true
|
|
24380
|
+
feishuWebhookUrl?: true
|
|
24381
|
+
thirdPartyBaseUrl?: true
|
|
24382
|
+
taskInReviewTitleTemplate?: true
|
|
24383
|
+
taskInReviewBodyTemplate?: true
|
|
24384
|
+
}
|
|
24385
|
+
|
|
24386
|
+
export type NotificationSettingsMaxAggregateInputType = {
|
|
24387
|
+
id?: true
|
|
24388
|
+
osNotificationEnabled?: true
|
|
24389
|
+
thirdPartyChannel?: true
|
|
24390
|
+
feishuWebhookUrl?: true
|
|
24391
|
+
thirdPartyBaseUrl?: true
|
|
24392
|
+
taskInReviewTitleTemplate?: true
|
|
24393
|
+
taskInReviewBodyTemplate?: true
|
|
24394
|
+
}
|
|
24395
|
+
|
|
24396
|
+
export type NotificationSettingsCountAggregateInputType = {
|
|
24397
|
+
id?: true
|
|
24398
|
+
osNotificationEnabled?: true
|
|
24399
|
+
thirdPartyChannel?: true
|
|
24400
|
+
feishuWebhookUrl?: true
|
|
24401
|
+
thirdPartyBaseUrl?: true
|
|
24402
|
+
taskInReviewTitleTemplate?: true
|
|
24403
|
+
taskInReviewBodyTemplate?: true
|
|
24404
|
+
_all?: true
|
|
24405
|
+
}
|
|
24406
|
+
|
|
24407
|
+
export type NotificationSettingsAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24408
|
+
/**
|
|
24409
|
+
* Filter which NotificationSettings to aggregate.
|
|
24410
|
+
*/
|
|
24411
|
+
where?: NotificationSettingsWhereInput
|
|
24412
|
+
/**
|
|
24413
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
24414
|
+
*
|
|
24415
|
+
* Determine the order of NotificationSettings to fetch.
|
|
24416
|
+
*/
|
|
24417
|
+
orderBy?: NotificationSettingsOrderByWithRelationInput | NotificationSettingsOrderByWithRelationInput[]
|
|
24418
|
+
/**
|
|
24419
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
24420
|
+
*
|
|
24421
|
+
* Sets the start position
|
|
24422
|
+
*/
|
|
24423
|
+
cursor?: NotificationSettingsWhereUniqueInput
|
|
24424
|
+
/**
|
|
24425
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24426
|
+
*
|
|
24427
|
+
* Take `±n` NotificationSettings from the position of the cursor.
|
|
24428
|
+
*/
|
|
24429
|
+
take?: number
|
|
24430
|
+
/**
|
|
24431
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
24432
|
+
*
|
|
24433
|
+
* Skip the first `n` NotificationSettings.
|
|
24434
|
+
*/
|
|
24435
|
+
skip?: number
|
|
24436
|
+
/**
|
|
24437
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
24438
|
+
*
|
|
24439
|
+
* Count returned NotificationSettings
|
|
24440
|
+
**/
|
|
24441
|
+
_count?: true | NotificationSettingsCountAggregateInputType
|
|
24442
|
+
/**
|
|
24443
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
24444
|
+
*
|
|
24445
|
+
* Select which fields to find the minimum value
|
|
24446
|
+
**/
|
|
24447
|
+
_min?: NotificationSettingsMinAggregateInputType
|
|
24448
|
+
/**
|
|
24449
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
24450
|
+
*
|
|
24451
|
+
* Select which fields to find the maximum value
|
|
24452
|
+
**/
|
|
24453
|
+
_max?: NotificationSettingsMaxAggregateInputType
|
|
24454
|
+
}
|
|
24455
|
+
|
|
24456
|
+
export type GetNotificationSettingsAggregateType<T extends NotificationSettingsAggregateArgs> = {
|
|
24457
|
+
[P in keyof T & keyof AggregateNotificationSettings]: P extends '_count' | 'count'
|
|
24458
|
+
? T[P] extends true
|
|
24459
|
+
? number
|
|
24460
|
+
: GetScalarType<T[P], AggregateNotificationSettings[P]>
|
|
24461
|
+
: GetScalarType<T[P], AggregateNotificationSettings[P]>
|
|
24462
|
+
}
|
|
24463
|
+
|
|
24464
|
+
|
|
24465
|
+
|
|
24466
|
+
|
|
24467
|
+
export type NotificationSettingsGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24468
|
+
where?: NotificationSettingsWhereInput
|
|
24469
|
+
orderBy?: NotificationSettingsOrderByWithAggregationInput | NotificationSettingsOrderByWithAggregationInput[]
|
|
24470
|
+
by: NotificationSettingsScalarFieldEnum[] | NotificationSettingsScalarFieldEnum
|
|
24471
|
+
having?: NotificationSettingsScalarWhereWithAggregatesInput
|
|
24472
|
+
take?: number
|
|
24473
|
+
skip?: number
|
|
24474
|
+
_count?: NotificationSettingsCountAggregateInputType | true
|
|
24475
|
+
_min?: NotificationSettingsMinAggregateInputType
|
|
24476
|
+
_max?: NotificationSettingsMaxAggregateInputType
|
|
24477
|
+
}
|
|
24478
|
+
|
|
24479
|
+
export type NotificationSettingsGroupByOutputType = {
|
|
24480
|
+
id: string
|
|
24481
|
+
osNotificationEnabled: boolean
|
|
24482
|
+
thirdPartyChannel: string
|
|
24483
|
+
feishuWebhookUrl: string | null
|
|
24484
|
+
thirdPartyBaseUrl: string | null
|
|
24485
|
+
taskInReviewTitleTemplate: string
|
|
24486
|
+
taskInReviewBodyTemplate: string
|
|
24487
|
+
_count: NotificationSettingsCountAggregateOutputType | null
|
|
24488
|
+
_min: NotificationSettingsMinAggregateOutputType | null
|
|
24489
|
+
_max: NotificationSettingsMaxAggregateOutputType | null
|
|
24490
|
+
}
|
|
24491
|
+
|
|
24492
|
+
type GetNotificationSettingsGroupByPayload<T extends NotificationSettingsGroupByArgs> = Prisma.PrismaPromise<
|
|
24493
|
+
Array<
|
|
24494
|
+
PickEnumerable<NotificationSettingsGroupByOutputType, T['by']> &
|
|
24495
|
+
{
|
|
24496
|
+
[P in ((keyof T) & (keyof NotificationSettingsGroupByOutputType))]: P extends '_count'
|
|
24497
|
+
? T[P] extends boolean
|
|
24498
|
+
? number
|
|
24499
|
+
: GetScalarType<T[P], NotificationSettingsGroupByOutputType[P]>
|
|
24500
|
+
: GetScalarType<T[P], NotificationSettingsGroupByOutputType[P]>
|
|
24501
|
+
}
|
|
24502
|
+
>
|
|
24503
|
+
>
|
|
24504
|
+
|
|
24505
|
+
|
|
24506
|
+
export type NotificationSettingsSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
24507
|
+
id?: boolean
|
|
24508
|
+
osNotificationEnabled?: boolean
|
|
24509
|
+
thirdPartyChannel?: boolean
|
|
24510
|
+
feishuWebhookUrl?: boolean
|
|
24511
|
+
thirdPartyBaseUrl?: boolean
|
|
24512
|
+
taskInReviewTitleTemplate?: boolean
|
|
24513
|
+
taskInReviewBodyTemplate?: boolean
|
|
24514
|
+
}, ExtArgs["result"]["notificationSettings"]>
|
|
24515
|
+
|
|
24516
|
+
export type NotificationSettingsSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
24517
|
+
id?: boolean
|
|
24518
|
+
osNotificationEnabled?: boolean
|
|
24519
|
+
thirdPartyChannel?: boolean
|
|
24520
|
+
feishuWebhookUrl?: boolean
|
|
24521
|
+
thirdPartyBaseUrl?: boolean
|
|
24522
|
+
taskInReviewTitleTemplate?: boolean
|
|
24523
|
+
taskInReviewBodyTemplate?: boolean
|
|
24524
|
+
}, ExtArgs["result"]["notificationSettings"]>
|
|
24525
|
+
|
|
24526
|
+
export type NotificationSettingsSelectScalar = {
|
|
24527
|
+
id?: boolean
|
|
24528
|
+
osNotificationEnabled?: boolean
|
|
24529
|
+
thirdPartyChannel?: boolean
|
|
24530
|
+
feishuWebhookUrl?: boolean
|
|
24531
|
+
thirdPartyBaseUrl?: boolean
|
|
24532
|
+
taskInReviewTitleTemplate?: boolean
|
|
24533
|
+
taskInReviewBodyTemplate?: boolean
|
|
24534
|
+
}
|
|
24535
|
+
|
|
24536
|
+
|
|
24537
|
+
export type $NotificationSettingsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24538
|
+
name: "NotificationSettings"
|
|
24539
|
+
objects: {}
|
|
24540
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
24541
|
+
id: string
|
|
24542
|
+
osNotificationEnabled: boolean
|
|
24543
|
+
thirdPartyChannel: string
|
|
24544
|
+
feishuWebhookUrl: string | null
|
|
24545
|
+
thirdPartyBaseUrl: string | null
|
|
24546
|
+
taskInReviewTitleTemplate: string
|
|
24547
|
+
taskInReviewBodyTemplate: string
|
|
24548
|
+
}, ExtArgs["result"]["notificationSettings"]>
|
|
24549
|
+
composites: {}
|
|
24550
|
+
}
|
|
24551
|
+
|
|
24552
|
+
type NotificationSettingsGetPayload<S extends boolean | null | undefined | NotificationSettingsDefaultArgs> = $Result.GetResult<Prisma.$NotificationSettingsPayload, S>
|
|
24553
|
+
|
|
24554
|
+
type NotificationSettingsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
24555
|
+
Omit<NotificationSettingsFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
24556
|
+
select?: NotificationSettingsCountAggregateInputType | true
|
|
24557
|
+
}
|
|
24558
|
+
|
|
24559
|
+
export interface NotificationSettingsDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
24560
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['NotificationSettings'], meta: { name: 'NotificationSettings' } }
|
|
24561
|
+
/**
|
|
24562
|
+
* Find zero or one NotificationSettings that matches the filter.
|
|
24563
|
+
* @param {NotificationSettingsFindUniqueArgs} args - Arguments to find a NotificationSettings
|
|
24564
|
+
* @example
|
|
24565
|
+
* // Get one NotificationSettings
|
|
24566
|
+
* const notificationSettings = await prisma.notificationSettings.findUnique({
|
|
24567
|
+
* where: {
|
|
24568
|
+
* // ... provide filter here
|
|
24569
|
+
* }
|
|
24570
|
+
* })
|
|
24571
|
+
*/
|
|
24572
|
+
findUnique<T extends NotificationSettingsFindUniqueArgs>(args: SelectSubset<T, NotificationSettingsFindUniqueArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
24573
|
+
|
|
24574
|
+
/**
|
|
24575
|
+
* Find one NotificationSettings that matches the filter or throw an error with `error.code='P2025'`
|
|
24576
|
+
* if no matches were found.
|
|
24577
|
+
* @param {NotificationSettingsFindUniqueOrThrowArgs} args - Arguments to find a NotificationSettings
|
|
24578
|
+
* @example
|
|
24579
|
+
* // Get one NotificationSettings
|
|
24580
|
+
* const notificationSettings = await prisma.notificationSettings.findUniqueOrThrow({
|
|
24581
|
+
* where: {
|
|
24582
|
+
* // ... provide filter here
|
|
24583
|
+
* }
|
|
24584
|
+
* })
|
|
24585
|
+
*/
|
|
24586
|
+
findUniqueOrThrow<T extends NotificationSettingsFindUniqueOrThrowArgs>(args: SelectSubset<T, NotificationSettingsFindUniqueOrThrowArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
24587
|
+
|
|
24588
|
+
/**
|
|
24589
|
+
* Find the first NotificationSettings that matches the filter.
|
|
24590
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24591
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24592
|
+
* @param {NotificationSettingsFindFirstArgs} args - Arguments to find a NotificationSettings
|
|
24593
|
+
* @example
|
|
24594
|
+
* // Get one NotificationSettings
|
|
24595
|
+
* const notificationSettings = await prisma.notificationSettings.findFirst({
|
|
24596
|
+
* where: {
|
|
24597
|
+
* // ... provide filter here
|
|
24598
|
+
* }
|
|
24599
|
+
* })
|
|
24600
|
+
*/
|
|
24601
|
+
findFirst<T extends NotificationSettingsFindFirstArgs>(args?: SelectSubset<T, NotificationSettingsFindFirstArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
24602
|
+
|
|
24603
|
+
/**
|
|
24604
|
+
* Find the first NotificationSettings that matches the filter or
|
|
24605
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
24606
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24607
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24608
|
+
* @param {NotificationSettingsFindFirstOrThrowArgs} args - Arguments to find a NotificationSettings
|
|
24609
|
+
* @example
|
|
24610
|
+
* // Get one NotificationSettings
|
|
24611
|
+
* const notificationSettings = await prisma.notificationSettings.findFirstOrThrow({
|
|
24612
|
+
* where: {
|
|
24613
|
+
* // ... provide filter here
|
|
24614
|
+
* }
|
|
24615
|
+
* })
|
|
24616
|
+
*/
|
|
24617
|
+
findFirstOrThrow<T extends NotificationSettingsFindFirstOrThrowArgs>(args?: SelectSubset<T, NotificationSettingsFindFirstOrThrowArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
24618
|
+
|
|
24619
|
+
/**
|
|
24620
|
+
* Find zero or more NotificationSettings that matches the filter.
|
|
24621
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24622
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24623
|
+
* @param {NotificationSettingsFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
24624
|
+
* @example
|
|
24625
|
+
* // Get all NotificationSettings
|
|
24626
|
+
* const notificationSettings = await prisma.notificationSettings.findMany()
|
|
24627
|
+
*
|
|
24628
|
+
* // Get first 10 NotificationSettings
|
|
24629
|
+
* const notificationSettings = await prisma.notificationSettings.findMany({ take: 10 })
|
|
24630
|
+
*
|
|
24631
|
+
* // Only select the `id`
|
|
24632
|
+
* const notificationSettingsWithIdOnly = await prisma.notificationSettings.findMany({ select: { id: true } })
|
|
24633
|
+
*
|
|
24634
|
+
*/
|
|
24635
|
+
findMany<T extends NotificationSettingsFindManyArgs>(args?: SelectSubset<T, NotificationSettingsFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "findMany">>
|
|
24636
|
+
|
|
24637
|
+
/**
|
|
24638
|
+
* Create a NotificationSettings.
|
|
24639
|
+
* @param {NotificationSettingsCreateArgs} args - Arguments to create a NotificationSettings.
|
|
24640
|
+
* @example
|
|
24641
|
+
* // Create one NotificationSettings
|
|
24642
|
+
* const NotificationSettings = await prisma.notificationSettings.create({
|
|
24643
|
+
* data: {
|
|
24644
|
+
* // ... data to create a NotificationSettings
|
|
24645
|
+
* }
|
|
24646
|
+
* })
|
|
24647
|
+
*
|
|
24648
|
+
*/
|
|
24649
|
+
create<T extends NotificationSettingsCreateArgs>(args: SelectSubset<T, NotificationSettingsCreateArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
24650
|
+
|
|
24651
|
+
/**
|
|
24652
|
+
* Create many NotificationSettings.
|
|
24653
|
+
* @param {NotificationSettingsCreateManyArgs} args - Arguments to create many NotificationSettings.
|
|
24654
|
+
* @example
|
|
24655
|
+
* // Create many NotificationSettings
|
|
24656
|
+
* const notificationSettings = await prisma.notificationSettings.createMany({
|
|
24657
|
+
* data: [
|
|
24658
|
+
* // ... provide data here
|
|
24659
|
+
* ]
|
|
24660
|
+
* })
|
|
24661
|
+
*
|
|
24662
|
+
*/
|
|
24663
|
+
createMany<T extends NotificationSettingsCreateManyArgs>(args?: SelectSubset<T, NotificationSettingsCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
24664
|
+
|
|
24665
|
+
/**
|
|
24666
|
+
* Create many NotificationSettings and returns the data saved in the database.
|
|
24667
|
+
* @param {NotificationSettingsCreateManyAndReturnArgs} args - Arguments to create many NotificationSettings.
|
|
24668
|
+
* @example
|
|
24669
|
+
* // Create many NotificationSettings
|
|
24670
|
+
* const notificationSettings = await prisma.notificationSettings.createManyAndReturn({
|
|
24671
|
+
* data: [
|
|
24672
|
+
* // ... provide data here
|
|
24673
|
+
* ]
|
|
24674
|
+
* })
|
|
24675
|
+
*
|
|
24676
|
+
* // Create many NotificationSettings and only return the `id`
|
|
24677
|
+
* const notificationSettingsWithIdOnly = await prisma.notificationSettings.createManyAndReturn({
|
|
24678
|
+
* select: { id: true },
|
|
24679
|
+
* data: [
|
|
24680
|
+
* // ... provide data here
|
|
24681
|
+
* ]
|
|
24682
|
+
* })
|
|
24683
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24684
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24685
|
+
*
|
|
24686
|
+
*/
|
|
24687
|
+
createManyAndReturn<T extends NotificationSettingsCreateManyAndReturnArgs>(args?: SelectSubset<T, NotificationSettingsCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
24688
|
+
|
|
24689
|
+
/**
|
|
24690
|
+
* Delete a NotificationSettings.
|
|
24691
|
+
* @param {NotificationSettingsDeleteArgs} args - Arguments to delete one NotificationSettings.
|
|
24692
|
+
* @example
|
|
24693
|
+
* // Delete one NotificationSettings
|
|
24694
|
+
* const NotificationSettings = await prisma.notificationSettings.delete({
|
|
24695
|
+
* where: {
|
|
24696
|
+
* // ... filter to delete one NotificationSettings
|
|
24697
|
+
* }
|
|
24698
|
+
* })
|
|
24699
|
+
*
|
|
24700
|
+
*/
|
|
24701
|
+
delete<T extends NotificationSettingsDeleteArgs>(args: SelectSubset<T, NotificationSettingsDeleteArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
24702
|
+
|
|
24703
|
+
/**
|
|
24704
|
+
* Update one NotificationSettings.
|
|
24705
|
+
* @param {NotificationSettingsUpdateArgs} args - Arguments to update one NotificationSettings.
|
|
24706
|
+
* @example
|
|
24707
|
+
* // Update one NotificationSettings
|
|
24708
|
+
* const notificationSettings = await prisma.notificationSettings.update({
|
|
24709
|
+
* where: {
|
|
24710
|
+
* // ... provide filter here
|
|
24711
|
+
* },
|
|
24712
|
+
* data: {
|
|
24713
|
+
* // ... provide data here
|
|
24714
|
+
* }
|
|
24715
|
+
* })
|
|
24716
|
+
*
|
|
24717
|
+
*/
|
|
24718
|
+
update<T extends NotificationSettingsUpdateArgs>(args: SelectSubset<T, NotificationSettingsUpdateArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
24719
|
+
|
|
24720
|
+
/**
|
|
24721
|
+
* Delete zero or more NotificationSettings.
|
|
24722
|
+
* @param {NotificationSettingsDeleteManyArgs} args - Arguments to filter NotificationSettings to delete.
|
|
24723
|
+
* @example
|
|
24724
|
+
* // Delete a few NotificationSettings
|
|
24725
|
+
* const { count } = await prisma.notificationSettings.deleteMany({
|
|
24726
|
+
* where: {
|
|
24727
|
+
* // ... provide filter here
|
|
24728
|
+
* }
|
|
24729
|
+
* })
|
|
24730
|
+
*
|
|
24731
|
+
*/
|
|
24732
|
+
deleteMany<T extends NotificationSettingsDeleteManyArgs>(args?: SelectSubset<T, NotificationSettingsDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
24733
|
+
|
|
24734
|
+
/**
|
|
24735
|
+
* Update zero or more NotificationSettings.
|
|
24736
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24737
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24738
|
+
* @param {NotificationSettingsUpdateManyArgs} args - Arguments to update one or more rows.
|
|
24739
|
+
* @example
|
|
24740
|
+
* // Update many NotificationSettings
|
|
24741
|
+
* const notificationSettings = await prisma.notificationSettings.updateMany({
|
|
24742
|
+
* where: {
|
|
24743
|
+
* // ... provide filter here
|
|
24744
|
+
* },
|
|
24745
|
+
* data: {
|
|
24746
|
+
* // ... provide data here
|
|
24747
|
+
* }
|
|
24748
|
+
* })
|
|
24749
|
+
*
|
|
24750
|
+
*/
|
|
24751
|
+
updateMany<T extends NotificationSettingsUpdateManyArgs>(args: SelectSubset<T, NotificationSettingsUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
24752
|
+
|
|
24753
|
+
/**
|
|
24754
|
+
* Create or update one NotificationSettings.
|
|
24755
|
+
* @param {NotificationSettingsUpsertArgs} args - Arguments to update or create a NotificationSettings.
|
|
24756
|
+
* @example
|
|
24757
|
+
* // Update or create a NotificationSettings
|
|
24758
|
+
* const notificationSettings = await prisma.notificationSettings.upsert({
|
|
24759
|
+
* create: {
|
|
24760
|
+
* // ... data to create a NotificationSettings
|
|
24761
|
+
* },
|
|
24762
|
+
* update: {
|
|
24763
|
+
* // ... in case it already exists, update
|
|
24764
|
+
* },
|
|
24765
|
+
* where: {
|
|
24766
|
+
* // ... the filter for the NotificationSettings we want to update
|
|
24767
|
+
* }
|
|
24768
|
+
* })
|
|
24769
|
+
*/
|
|
24770
|
+
upsert<T extends NotificationSettingsUpsertArgs>(args: SelectSubset<T, NotificationSettingsUpsertArgs<ExtArgs>>): Prisma__NotificationSettingsClient<$Result.GetResult<Prisma.$NotificationSettingsPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
24771
|
+
|
|
24772
|
+
|
|
24773
|
+
/**
|
|
24774
|
+
* Count the number of NotificationSettings.
|
|
24775
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24776
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24777
|
+
* @param {NotificationSettingsCountArgs} args - Arguments to filter NotificationSettings to count.
|
|
24778
|
+
* @example
|
|
24779
|
+
* // Count the number of NotificationSettings
|
|
24780
|
+
* const count = await prisma.notificationSettings.count({
|
|
24781
|
+
* where: {
|
|
24782
|
+
* // ... the filter for the NotificationSettings we want to count
|
|
24783
|
+
* }
|
|
24784
|
+
* })
|
|
24785
|
+
**/
|
|
24786
|
+
count<T extends NotificationSettingsCountArgs>(
|
|
24787
|
+
args?: Subset<T, NotificationSettingsCountArgs>,
|
|
24788
|
+
): Prisma.PrismaPromise<
|
|
24789
|
+
T extends $Utils.Record<'select', any>
|
|
24790
|
+
? T['select'] extends true
|
|
24791
|
+
? number
|
|
24792
|
+
: GetScalarType<T['select'], NotificationSettingsCountAggregateOutputType>
|
|
24793
|
+
: number
|
|
24794
|
+
>
|
|
24795
|
+
|
|
24796
|
+
/**
|
|
24797
|
+
* Allows you to perform aggregations operations on a NotificationSettings.
|
|
24798
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24799
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24800
|
+
* @param {NotificationSettingsAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
24801
|
+
* @example
|
|
24802
|
+
* // Ordered by age ascending
|
|
24803
|
+
* // Where email contains prisma.io
|
|
24804
|
+
* // Limited to the 10 users
|
|
24805
|
+
* const aggregations = await prisma.user.aggregate({
|
|
24806
|
+
* _avg: {
|
|
24807
|
+
* age: true,
|
|
24808
|
+
* },
|
|
24809
|
+
* where: {
|
|
24810
|
+
* email: {
|
|
24811
|
+
* contains: "prisma.io",
|
|
24812
|
+
* },
|
|
24813
|
+
* },
|
|
24814
|
+
* orderBy: {
|
|
24815
|
+
* age: "asc",
|
|
24816
|
+
* },
|
|
24817
|
+
* take: 10,
|
|
24818
|
+
* })
|
|
24819
|
+
**/
|
|
24820
|
+
aggregate<T extends NotificationSettingsAggregateArgs>(args: Subset<T, NotificationSettingsAggregateArgs>): Prisma.PrismaPromise<GetNotificationSettingsAggregateType<T>>
|
|
24821
|
+
|
|
24822
|
+
/**
|
|
24823
|
+
* Group by NotificationSettings.
|
|
24824
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
24825
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
24826
|
+
* @param {NotificationSettingsGroupByArgs} args - Group by arguments.
|
|
24827
|
+
* @example
|
|
24828
|
+
* // Group by city, order by createdAt, get count
|
|
24829
|
+
* const result = await prisma.user.groupBy({
|
|
24830
|
+
* by: ['city', 'createdAt'],
|
|
24831
|
+
* orderBy: {
|
|
24832
|
+
* createdAt: true
|
|
24833
|
+
* },
|
|
24834
|
+
* _count: {
|
|
24835
|
+
* _all: true
|
|
24836
|
+
* },
|
|
24837
|
+
* })
|
|
24838
|
+
*
|
|
24839
|
+
**/
|
|
24840
|
+
groupBy<
|
|
24841
|
+
T extends NotificationSettingsGroupByArgs,
|
|
24842
|
+
HasSelectOrTake extends Or<
|
|
24843
|
+
Extends<'skip', Keys<T>>,
|
|
24844
|
+
Extends<'take', Keys<T>>
|
|
24845
|
+
>,
|
|
24846
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
24847
|
+
? { orderBy: NotificationSettingsGroupByArgs['orderBy'] }
|
|
24848
|
+
: { orderBy?: NotificationSettingsGroupByArgs['orderBy'] },
|
|
23839
24849
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
23840
24850
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
23841
24851
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -24439,6 +25449,8 @@ export namespace Prisma {
|
|
|
24439
25449
|
status: 'status',
|
|
24440
25450
|
roomReplyReminderCount: 'roomReplyReminderCount',
|
|
24441
25451
|
nextRoomReplyReminderAt: 'nextRoomReplyReminderAt',
|
|
25452
|
+
lastHeartbeatAt: 'lastHeartbeatAt',
|
|
25453
|
+
firstNudgeAt: 'firstNudgeAt',
|
|
24442
25454
|
createdAt: 'createdAt',
|
|
24443
25455
|
updatedAt: 'updatedAt'
|
|
24444
25456
|
};
|
|
@@ -24562,6 +25574,19 @@ export namespace Prisma {
|
|
|
24562
25574
|
export type AppSettingsScalarFieldEnum = (typeof AppSettingsScalarFieldEnum)[keyof typeof AppSettingsScalarFieldEnum]
|
|
24563
25575
|
|
|
24564
25576
|
|
|
25577
|
+
export const AccessAuthSettingsScalarFieldEnum: {
|
|
25578
|
+
id: 'id',
|
|
25579
|
+
enabled: 'enabled',
|
|
25580
|
+
passwordHash: 'passwordHash',
|
|
25581
|
+
sessionSecret: 'sessionSecret',
|
|
25582
|
+
passwordUpdatedAt: 'passwordUpdatedAt',
|
|
25583
|
+
createdAt: 'createdAt',
|
|
25584
|
+
updatedAt: 'updatedAt'
|
|
25585
|
+
};
|
|
25586
|
+
|
|
25587
|
+
export type AccessAuthSettingsScalarFieldEnum = (typeof AccessAuthSettingsScalarFieldEnum)[keyof typeof AccessAuthSettingsScalarFieldEnum]
|
|
25588
|
+
|
|
25589
|
+
|
|
24565
25590
|
export const NotificationSettingsScalarFieldEnum: {
|
|
24566
25591
|
id: 'id',
|
|
24567
25592
|
osNotificationEnabled: 'osNotificationEnabled',
|
|
@@ -25617,6 +26642,8 @@ export namespace Prisma {
|
|
|
25617
26642
|
status?: StringFilter<"AgentInvocation"> | string
|
|
25618
26643
|
roomReplyReminderCount?: IntFilter<"AgentInvocation"> | number
|
|
25619
26644
|
nextRoomReplyReminderAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
26645
|
+
lastHeartbeatAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
26646
|
+
firstNudgeAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
25620
26647
|
createdAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
25621
26648
|
updatedAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
25622
26649
|
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
@@ -25645,6 +26672,8 @@ export namespace Prisma {
|
|
|
25645
26672
|
status?: SortOrder
|
|
25646
26673
|
roomReplyReminderCount?: SortOrder
|
|
25647
26674
|
nextRoomReplyReminderAt?: SortOrderInput | SortOrder
|
|
26675
|
+
lastHeartbeatAt?: SortOrderInput | SortOrder
|
|
26676
|
+
firstNudgeAt?: SortOrderInput | SortOrder
|
|
25648
26677
|
createdAt?: SortOrder
|
|
25649
26678
|
updatedAt?: SortOrder
|
|
25650
26679
|
teamRun?: TeamRunOrderByWithRelationInput
|
|
@@ -25676,6 +26705,8 @@ export namespace Prisma {
|
|
|
25676
26705
|
status?: StringFilter<"AgentInvocation"> | string
|
|
25677
26706
|
roomReplyReminderCount?: IntFilter<"AgentInvocation"> | number
|
|
25678
26707
|
nextRoomReplyReminderAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
26708
|
+
lastHeartbeatAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
26709
|
+
firstNudgeAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
25679
26710
|
createdAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
25680
26711
|
updatedAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
25681
26712
|
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
@@ -25704,6 +26735,8 @@ export namespace Prisma {
|
|
|
25704
26735
|
status?: SortOrder
|
|
25705
26736
|
roomReplyReminderCount?: SortOrder
|
|
25706
26737
|
nextRoomReplyReminderAt?: SortOrderInput | SortOrder
|
|
26738
|
+
lastHeartbeatAt?: SortOrderInput | SortOrder
|
|
26739
|
+
firstNudgeAt?: SortOrderInput | SortOrder
|
|
25707
26740
|
createdAt?: SortOrder
|
|
25708
26741
|
updatedAt?: SortOrder
|
|
25709
26742
|
_count?: AgentInvocationCountOrderByAggregateInput
|
|
@@ -25739,6 +26772,8 @@ export namespace Prisma {
|
|
|
25739
26772
|
status?: StringWithAggregatesFilter<"AgentInvocation"> | string
|
|
25740
26773
|
roomReplyReminderCount?: IntWithAggregatesFilter<"AgentInvocation"> | number
|
|
25741
26774
|
nextRoomReplyReminderAt?: DateTimeNullableWithAggregatesFilter<"AgentInvocation"> | Date | string | null
|
|
26775
|
+
lastHeartbeatAt?: DateTimeNullableWithAggregatesFilter<"AgentInvocation"> | Date | string | null
|
|
26776
|
+
firstNudgeAt?: DateTimeNullableWithAggregatesFilter<"AgentInvocation"> | Date | string | null
|
|
25742
26777
|
createdAt?: DateTimeWithAggregatesFilter<"AgentInvocation"> | Date | string
|
|
25743
26778
|
updatedAt?: DateTimeWithAggregatesFilter<"AgentInvocation"> | Date | string
|
|
25744
26779
|
}
|
|
@@ -26348,6 +27383,68 @@ export namespace Prisma {
|
|
|
26348
27383
|
commitMessagePrompt?: StringNullableWithAggregatesFilter<"AppSettings"> | string | null
|
|
26349
27384
|
}
|
|
26350
27385
|
|
|
27386
|
+
export type AccessAuthSettingsWhereInput = {
|
|
27387
|
+
AND?: AccessAuthSettingsWhereInput | AccessAuthSettingsWhereInput[]
|
|
27388
|
+
OR?: AccessAuthSettingsWhereInput[]
|
|
27389
|
+
NOT?: AccessAuthSettingsWhereInput | AccessAuthSettingsWhereInput[]
|
|
27390
|
+
id?: StringFilter<"AccessAuthSettings"> | string
|
|
27391
|
+
enabled?: BoolFilter<"AccessAuthSettings"> | boolean
|
|
27392
|
+
passwordHash?: StringNullableFilter<"AccessAuthSettings"> | string | null
|
|
27393
|
+
sessionSecret?: StringFilter<"AccessAuthSettings"> | string
|
|
27394
|
+
passwordUpdatedAt?: DateTimeNullableFilter<"AccessAuthSettings"> | Date | string | null
|
|
27395
|
+
createdAt?: DateTimeFilter<"AccessAuthSettings"> | Date | string
|
|
27396
|
+
updatedAt?: DateTimeFilter<"AccessAuthSettings"> | Date | string
|
|
27397
|
+
}
|
|
27398
|
+
|
|
27399
|
+
export type AccessAuthSettingsOrderByWithRelationInput = {
|
|
27400
|
+
id?: SortOrder
|
|
27401
|
+
enabled?: SortOrder
|
|
27402
|
+
passwordHash?: SortOrderInput | SortOrder
|
|
27403
|
+
sessionSecret?: SortOrder
|
|
27404
|
+
passwordUpdatedAt?: SortOrderInput | SortOrder
|
|
27405
|
+
createdAt?: SortOrder
|
|
27406
|
+
updatedAt?: SortOrder
|
|
27407
|
+
}
|
|
27408
|
+
|
|
27409
|
+
export type AccessAuthSettingsWhereUniqueInput = Prisma.AtLeast<{
|
|
27410
|
+
id?: string
|
|
27411
|
+
AND?: AccessAuthSettingsWhereInput | AccessAuthSettingsWhereInput[]
|
|
27412
|
+
OR?: AccessAuthSettingsWhereInput[]
|
|
27413
|
+
NOT?: AccessAuthSettingsWhereInput | AccessAuthSettingsWhereInput[]
|
|
27414
|
+
enabled?: BoolFilter<"AccessAuthSettings"> | boolean
|
|
27415
|
+
passwordHash?: StringNullableFilter<"AccessAuthSettings"> | string | null
|
|
27416
|
+
sessionSecret?: StringFilter<"AccessAuthSettings"> | string
|
|
27417
|
+
passwordUpdatedAt?: DateTimeNullableFilter<"AccessAuthSettings"> | Date | string | null
|
|
27418
|
+
createdAt?: DateTimeFilter<"AccessAuthSettings"> | Date | string
|
|
27419
|
+
updatedAt?: DateTimeFilter<"AccessAuthSettings"> | Date | string
|
|
27420
|
+
}, "id">
|
|
27421
|
+
|
|
27422
|
+
export type AccessAuthSettingsOrderByWithAggregationInput = {
|
|
27423
|
+
id?: SortOrder
|
|
27424
|
+
enabled?: SortOrder
|
|
27425
|
+
passwordHash?: SortOrderInput | SortOrder
|
|
27426
|
+
sessionSecret?: SortOrder
|
|
27427
|
+
passwordUpdatedAt?: SortOrderInput | SortOrder
|
|
27428
|
+
createdAt?: SortOrder
|
|
27429
|
+
updatedAt?: SortOrder
|
|
27430
|
+
_count?: AccessAuthSettingsCountOrderByAggregateInput
|
|
27431
|
+
_max?: AccessAuthSettingsMaxOrderByAggregateInput
|
|
27432
|
+
_min?: AccessAuthSettingsMinOrderByAggregateInput
|
|
27433
|
+
}
|
|
27434
|
+
|
|
27435
|
+
export type AccessAuthSettingsScalarWhereWithAggregatesInput = {
|
|
27436
|
+
AND?: AccessAuthSettingsScalarWhereWithAggregatesInput | AccessAuthSettingsScalarWhereWithAggregatesInput[]
|
|
27437
|
+
OR?: AccessAuthSettingsScalarWhereWithAggregatesInput[]
|
|
27438
|
+
NOT?: AccessAuthSettingsScalarWhereWithAggregatesInput | AccessAuthSettingsScalarWhereWithAggregatesInput[]
|
|
27439
|
+
id?: StringWithAggregatesFilter<"AccessAuthSettings"> | string
|
|
27440
|
+
enabled?: BoolWithAggregatesFilter<"AccessAuthSettings"> | boolean
|
|
27441
|
+
passwordHash?: StringNullableWithAggregatesFilter<"AccessAuthSettings"> | string | null
|
|
27442
|
+
sessionSecret?: StringWithAggregatesFilter<"AccessAuthSettings"> | string
|
|
27443
|
+
passwordUpdatedAt?: DateTimeNullableWithAggregatesFilter<"AccessAuthSettings"> | Date | string | null
|
|
27444
|
+
createdAt?: DateTimeWithAggregatesFilter<"AccessAuthSettings"> | Date | string
|
|
27445
|
+
updatedAt?: DateTimeWithAggregatesFilter<"AccessAuthSettings"> | Date | string
|
|
27446
|
+
}
|
|
27447
|
+
|
|
26351
27448
|
export type NotificationSettingsWhereInput = {
|
|
26352
27449
|
AND?: NotificationSettingsWhereInput | NotificationSettingsWhereInput[]
|
|
26353
27450
|
OR?: NotificationSettingsWhereInput[]
|
|
@@ -27528,6 +28625,8 @@ export namespace Prisma {
|
|
|
27528
28625
|
status?: string
|
|
27529
28626
|
roomReplyReminderCount?: number
|
|
27530
28627
|
nextRoomReplyReminderAt?: Date | string | null
|
|
28628
|
+
lastHeartbeatAt?: Date | string | null
|
|
28629
|
+
firstNudgeAt?: Date | string | null
|
|
27531
28630
|
createdAt?: Date | string
|
|
27532
28631
|
updatedAt?: Date | string
|
|
27533
28632
|
teamRun: TeamRunCreateNestedOneWithoutInvocationsInput
|
|
@@ -27556,6 +28655,8 @@ export namespace Prisma {
|
|
|
27556
28655
|
status?: string
|
|
27557
28656
|
roomReplyReminderCount?: number
|
|
27558
28657
|
nextRoomReplyReminderAt?: Date | string | null
|
|
28658
|
+
lastHeartbeatAt?: Date | string | null
|
|
28659
|
+
firstNudgeAt?: Date | string | null
|
|
27559
28660
|
createdAt?: Date | string
|
|
27560
28661
|
updatedAt?: Date | string
|
|
27561
28662
|
}
|
|
@@ -27582,6 +28683,8 @@ export namespace Prisma {
|
|
|
27582
28683
|
status?: StringFieldUpdateOperationsInput | string
|
|
27583
28684
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
27584
28685
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28686
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28687
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
27585
28688
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27586
28689
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27587
28690
|
teamRun?: TeamRunUpdateOneRequiredWithoutInvocationsNestedInput
|
|
@@ -27610,6 +28713,8 @@ export namespace Prisma {
|
|
|
27610
28713
|
status?: StringFieldUpdateOperationsInput | string
|
|
27611
28714
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
27612
28715
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28716
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28717
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
27613
28718
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27614
28719
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27615
28720
|
}
|
|
@@ -27637,6 +28742,8 @@ export namespace Prisma {
|
|
|
27637
28742
|
status?: string
|
|
27638
28743
|
roomReplyReminderCount?: number
|
|
27639
28744
|
nextRoomReplyReminderAt?: Date | string | null
|
|
28745
|
+
lastHeartbeatAt?: Date | string | null
|
|
28746
|
+
firstNudgeAt?: Date | string | null
|
|
27640
28747
|
createdAt?: Date | string
|
|
27641
28748
|
updatedAt?: Date | string
|
|
27642
28749
|
}
|
|
@@ -27663,6 +28770,8 @@ export namespace Prisma {
|
|
|
27663
28770
|
status?: StringFieldUpdateOperationsInput | string
|
|
27664
28771
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
27665
28772
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28773
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28774
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
27666
28775
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27667
28776
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27668
28777
|
}
|
|
@@ -27690,6 +28799,8 @@ export namespace Prisma {
|
|
|
27690
28799
|
status?: StringFieldUpdateOperationsInput | string
|
|
27691
28800
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
27692
28801
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28802
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28803
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
27693
28804
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27694
28805
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27695
28806
|
}
|
|
@@ -28354,6 +29465,76 @@ export namespace Prisma {
|
|
|
28354
29465
|
commitMessagePrompt?: NullableStringFieldUpdateOperationsInput | string | null
|
|
28355
29466
|
}
|
|
28356
29467
|
|
|
29468
|
+
export type AccessAuthSettingsCreateInput = {
|
|
29469
|
+
id?: string
|
|
29470
|
+
enabled?: boolean
|
|
29471
|
+
passwordHash?: string | null
|
|
29472
|
+
sessionSecret: string
|
|
29473
|
+
passwordUpdatedAt?: Date | string | null
|
|
29474
|
+
createdAt?: Date | string
|
|
29475
|
+
updatedAt?: Date | string
|
|
29476
|
+
}
|
|
29477
|
+
|
|
29478
|
+
export type AccessAuthSettingsUncheckedCreateInput = {
|
|
29479
|
+
id?: string
|
|
29480
|
+
enabled?: boolean
|
|
29481
|
+
passwordHash?: string | null
|
|
29482
|
+
sessionSecret: string
|
|
29483
|
+
passwordUpdatedAt?: Date | string | null
|
|
29484
|
+
createdAt?: Date | string
|
|
29485
|
+
updatedAt?: Date | string
|
|
29486
|
+
}
|
|
29487
|
+
|
|
29488
|
+
export type AccessAuthSettingsUpdateInput = {
|
|
29489
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
29490
|
+
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
29491
|
+
passwordHash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29492
|
+
sessionSecret?: StringFieldUpdateOperationsInput | string
|
|
29493
|
+
passwordUpdatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
29494
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29495
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29496
|
+
}
|
|
29497
|
+
|
|
29498
|
+
export type AccessAuthSettingsUncheckedUpdateInput = {
|
|
29499
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
29500
|
+
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
29501
|
+
passwordHash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29502
|
+
sessionSecret?: StringFieldUpdateOperationsInput | string
|
|
29503
|
+
passwordUpdatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
29504
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29505
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29506
|
+
}
|
|
29507
|
+
|
|
29508
|
+
export type AccessAuthSettingsCreateManyInput = {
|
|
29509
|
+
id?: string
|
|
29510
|
+
enabled?: boolean
|
|
29511
|
+
passwordHash?: string | null
|
|
29512
|
+
sessionSecret: string
|
|
29513
|
+
passwordUpdatedAt?: Date | string | null
|
|
29514
|
+
createdAt?: Date | string
|
|
29515
|
+
updatedAt?: Date | string
|
|
29516
|
+
}
|
|
29517
|
+
|
|
29518
|
+
export type AccessAuthSettingsUpdateManyMutationInput = {
|
|
29519
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
29520
|
+
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
29521
|
+
passwordHash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29522
|
+
sessionSecret?: StringFieldUpdateOperationsInput | string
|
|
29523
|
+
passwordUpdatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
29524
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29525
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29526
|
+
}
|
|
29527
|
+
|
|
29528
|
+
export type AccessAuthSettingsUncheckedUpdateManyInput = {
|
|
29529
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
29530
|
+
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
29531
|
+
passwordHash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29532
|
+
sessionSecret?: StringFieldUpdateOperationsInput | string
|
|
29533
|
+
passwordUpdatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
29534
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29535
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29536
|
+
}
|
|
29537
|
+
|
|
28357
29538
|
export type NotificationSettingsCreateInput = {
|
|
28358
29539
|
id?: string
|
|
28359
29540
|
osNotificationEnabled?: boolean
|
|
@@ -29229,6 +30410,8 @@ export namespace Prisma {
|
|
|
29229
30410
|
status?: SortOrder
|
|
29230
30411
|
roomReplyReminderCount?: SortOrder
|
|
29231
30412
|
nextRoomReplyReminderAt?: SortOrder
|
|
30413
|
+
lastHeartbeatAt?: SortOrder
|
|
30414
|
+
firstNudgeAt?: SortOrder
|
|
29232
30415
|
createdAt?: SortOrder
|
|
29233
30416
|
updatedAt?: SortOrder
|
|
29234
30417
|
}
|
|
@@ -29263,6 +30446,8 @@ export namespace Prisma {
|
|
|
29263
30446
|
status?: SortOrder
|
|
29264
30447
|
roomReplyReminderCount?: SortOrder
|
|
29265
30448
|
nextRoomReplyReminderAt?: SortOrder
|
|
30449
|
+
lastHeartbeatAt?: SortOrder
|
|
30450
|
+
firstNudgeAt?: SortOrder
|
|
29266
30451
|
createdAt?: SortOrder
|
|
29267
30452
|
updatedAt?: SortOrder
|
|
29268
30453
|
}
|
|
@@ -29290,6 +30475,8 @@ export namespace Prisma {
|
|
|
29290
30475
|
status?: SortOrder
|
|
29291
30476
|
roomReplyReminderCount?: SortOrder
|
|
29292
30477
|
nextRoomReplyReminderAt?: SortOrder
|
|
30478
|
+
lastHeartbeatAt?: SortOrder
|
|
30479
|
+
firstNudgeAt?: SortOrder
|
|
29293
30480
|
createdAt?: SortOrder
|
|
29294
30481
|
updatedAt?: SortOrder
|
|
29295
30482
|
}
|
|
@@ -29679,6 +30866,36 @@ export namespace Prisma {
|
|
|
29679
30866
|
commitMessagePrompt?: SortOrder
|
|
29680
30867
|
}
|
|
29681
30868
|
|
|
30869
|
+
export type AccessAuthSettingsCountOrderByAggregateInput = {
|
|
30870
|
+
id?: SortOrder
|
|
30871
|
+
enabled?: SortOrder
|
|
30872
|
+
passwordHash?: SortOrder
|
|
30873
|
+
sessionSecret?: SortOrder
|
|
30874
|
+
passwordUpdatedAt?: SortOrder
|
|
30875
|
+
createdAt?: SortOrder
|
|
30876
|
+
updatedAt?: SortOrder
|
|
30877
|
+
}
|
|
30878
|
+
|
|
30879
|
+
export type AccessAuthSettingsMaxOrderByAggregateInput = {
|
|
30880
|
+
id?: SortOrder
|
|
30881
|
+
enabled?: SortOrder
|
|
30882
|
+
passwordHash?: SortOrder
|
|
30883
|
+
sessionSecret?: SortOrder
|
|
30884
|
+
passwordUpdatedAt?: SortOrder
|
|
30885
|
+
createdAt?: SortOrder
|
|
30886
|
+
updatedAt?: SortOrder
|
|
30887
|
+
}
|
|
30888
|
+
|
|
30889
|
+
export type AccessAuthSettingsMinOrderByAggregateInput = {
|
|
30890
|
+
id?: SortOrder
|
|
30891
|
+
enabled?: SortOrder
|
|
30892
|
+
passwordHash?: SortOrder
|
|
30893
|
+
sessionSecret?: SortOrder
|
|
30894
|
+
passwordUpdatedAt?: SortOrder
|
|
30895
|
+
createdAt?: SortOrder
|
|
30896
|
+
updatedAt?: SortOrder
|
|
30897
|
+
}
|
|
30898
|
+
|
|
29682
30899
|
export type NotificationSettingsCountOrderByAggregateInput = {
|
|
29683
30900
|
id?: SortOrder
|
|
29684
30901
|
osNotificationEnabled?: SortOrder
|
|
@@ -31589,6 +32806,8 @@ export namespace Prisma {
|
|
|
31589
32806
|
status?: string
|
|
31590
32807
|
roomReplyReminderCount?: number
|
|
31591
32808
|
nextRoomReplyReminderAt?: Date | string | null
|
|
32809
|
+
lastHeartbeatAt?: Date | string | null
|
|
32810
|
+
firstNudgeAt?: Date | string | null
|
|
31592
32811
|
createdAt?: Date | string
|
|
31593
32812
|
updatedAt?: Date | string
|
|
31594
32813
|
}
|
|
@@ -31615,6 +32834,8 @@ export namespace Prisma {
|
|
|
31615
32834
|
status?: string
|
|
31616
32835
|
roomReplyReminderCount?: number
|
|
31617
32836
|
nextRoomReplyReminderAt?: Date | string | null
|
|
32837
|
+
lastHeartbeatAt?: Date | string | null
|
|
32838
|
+
firstNudgeAt?: Date | string | null
|
|
31618
32839
|
createdAt?: Date | string
|
|
31619
32840
|
updatedAt?: Date | string
|
|
31620
32841
|
}
|
|
@@ -31910,6 +33131,8 @@ export namespace Prisma {
|
|
|
31910
33131
|
status?: StringFilter<"AgentInvocation"> | string
|
|
31911
33132
|
roomReplyReminderCount?: IntFilter<"AgentInvocation"> | number
|
|
31912
33133
|
nextRoomReplyReminderAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
33134
|
+
lastHeartbeatAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
33135
|
+
firstNudgeAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
31913
33136
|
createdAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
31914
33137
|
updatedAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
31915
33138
|
}
|
|
@@ -33890,6 +35113,8 @@ export namespace Prisma {
|
|
|
33890
35113
|
status?: string
|
|
33891
35114
|
roomReplyReminderCount?: number
|
|
33892
35115
|
nextRoomReplyReminderAt?: Date | string | null
|
|
35116
|
+
lastHeartbeatAt?: Date | string | null
|
|
35117
|
+
firstNudgeAt?: Date | string | null
|
|
33893
35118
|
createdAt?: Date | string
|
|
33894
35119
|
updatedAt?: Date | string
|
|
33895
35120
|
}
|
|
@@ -34099,6 +35324,8 @@ export namespace Prisma {
|
|
|
34099
35324
|
status?: StringFieldUpdateOperationsInput | string
|
|
34100
35325
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
34101
35326
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35327
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35328
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
34102
35329
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34103
35330
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34104
35331
|
}
|
|
@@ -34125,6 +35352,8 @@ export namespace Prisma {
|
|
|
34125
35352
|
status?: StringFieldUpdateOperationsInput | string
|
|
34126
35353
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
34127
35354
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35355
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35356
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
34128
35357
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34129
35358
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34130
35359
|
}
|
|
@@ -34151,6 +35380,8 @@ export namespace Prisma {
|
|
|
34151
35380
|
status?: StringFieldUpdateOperationsInput | string
|
|
34152
35381
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
34153
35382
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35383
|
+
lastHeartbeatAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35384
|
+
firstNudgeAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
34154
35385
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34155
35386
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34156
35387
|
}
|
|
@@ -34716,6 +35947,10 @@ export namespace Prisma {
|
|
|
34716
35947
|
* @deprecated Use AppSettingsDefaultArgs instead
|
|
34717
35948
|
*/
|
|
34718
35949
|
export type AppSettingsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = AppSettingsDefaultArgs<ExtArgs>
|
|
35950
|
+
/**
|
|
35951
|
+
* @deprecated Use AccessAuthSettingsDefaultArgs instead
|
|
35952
|
+
*/
|
|
35953
|
+
export type AccessAuthSettingsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = AccessAuthSettingsDefaultArgs<ExtArgs>
|
|
34719
35954
|
/**
|
|
34720
35955
|
* @deprecated Use NotificationSettingsDefaultArgs instead
|
|
34721
35956
|
*/
|