agent-tower 0.4.16-beta.0 → 0.4.16-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.test.js +2 -0
- package/dist/app.test.js.map +1 -1
- package/dist/git/git-cli.d.ts +18 -1
- package/dist/git/git-cli.d.ts.map +1 -1
- package/dist/git/git-cli.js +17 -1
- package/dist/git/git-cli.js.map +1 -1
- package/dist/git/worktree.manager.d.ts +29 -2
- package/dist/git/worktree.manager.d.ts.map +1 -1
- package/dist/git/worktree.manager.js +137 -16
- package/dist/git/worktree.manager.js.map +1 -1
- package/dist/git/worktree.manager.test.d.ts +2 -0
- package/dist/git/worktree.manager.test.d.ts.map +1 -0
- package/dist/git/worktree.manager.test.js +104 -0
- package/dist/git/worktree.manager.test.js.map +1 -0
- package/dist/mcp/http-client.d.ts +5 -1
- package/dist/mcp/http-client.d.ts.map +1 -1
- package/dist/mcp/http-client.js +13 -3
- package/dist/mcp/http-client.js.map +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +33 -3
- package/dist/mcp/server.js.map +1 -1
- package/dist/middleware/tunnel-auth.d.ts.map +1 -1
- package/dist/middleware/tunnel-auth.js +2 -0
- package/dist/middleware/tunnel-auth.js.map +1 -1
- package/dist/output/__tests__/codex-parser.test.d.ts +2 -0
- package/dist/output/__tests__/codex-parser.test.d.ts.map +1 -0
- package/dist/output/__tests__/codex-parser.test.js +148 -0
- package/dist/output/__tests__/codex-parser.test.js.map +1 -0
- package/dist/output/codex-parser.d.ts +12 -0
- package/dist/output/codex-parser.d.ts.map +1 -1
- package/dist/output/codex-parser.js +129 -12
- package/dist/output/codex-parser.js.map +1 -1
- package/dist/routes/__tests__/attachments.test.d.ts +2 -0
- package/dist/routes/__tests__/attachments.test.d.ts.map +1 -0
- package/dist/routes/__tests__/attachments.test.js +86 -0
- package/dist/routes/__tests__/attachments.test.js.map +1 -0
- package/dist/routes/__tests__/filesystem.test.d.ts +2 -0
- package/dist/routes/__tests__/filesystem.test.d.ts.map +1 -0
- package/dist/routes/__tests__/filesystem.test.js +80 -0
- package/dist/routes/__tests__/filesystem.test.js.map +1 -0
- package/dist/routes/__tests__/previews.test.d.ts +2 -0
- package/dist/routes/__tests__/previews.test.d.ts.map +1 -0
- package/dist/routes/__tests__/previews.test.js +89 -0
- package/dist/routes/__tests__/previews.test.js.map +1 -0
- package/dist/routes/__tests__/tasks.test.d.ts +2 -0
- package/dist/routes/__tests__/tasks.test.d.ts.map +1 -0
- package/dist/routes/__tests__/tasks.test.js +72 -0
- package/dist/routes/__tests__/tasks.test.js.map +1 -0
- package/dist/routes/attachments.d.ts.map +1 -1
- package/dist/routes/attachments.js +36 -16
- package/dist/routes/attachments.js.map +1 -1
- package/dist/routes/filesystem.d.ts.map +1 -1
- package/dist/routes/filesystem.js +24 -3
- package/dist/routes/filesystem.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 +6 -0
- package/dist/routes/previews.d.ts.map +1 -0
- package/dist/routes/previews.js +413 -0
- package/dist/routes/previews.js.map +1 -0
- package/dist/routes/projects.d.ts.map +1 -1
- package/dist/routes/projects.js +1 -0
- package/dist/routes/projects.js.map +1 -1
- package/dist/routes/tasks.js +2 -2
- package/dist/routes/tasks.js.map +1 -1
- package/dist/routes/team-runs.d.ts.map +1 -1
- package/dist/routes/team-runs.js +36 -9
- package/dist/routes/team-runs.js.map +1 -1
- package/dist/routes/tunnel.d.ts.map +1 -1
- package/dist/routes/tunnel.js +20 -0
- package/dist/routes/tunnel.js.map +1 -1
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/routes/workspaces.js +15 -1
- package/dist/routes/workspaces.js.map +1 -1
- package/dist/services/__tests__/preview.service.test.d.ts +2 -0
- package/dist/services/__tests__/preview.service.test.d.ts.map +1 -0
- package/dist/services/__tests__/preview.service.test.js +29 -0
- package/dist/services/__tests__/preview.service.test.js.map +1 -0
- package/dist/services/__tests__/task.service.test.d.ts +2 -0
- package/dist/services/__tests__/task.service.test.d.ts.map +1 -0
- package/dist/services/__tests__/task.service.test.js +65 -0
- package/dist/services/__tests__/task.service.test.js.map +1 -0
- package/dist/services/__tests__/team-reconciler.service.test.js +720 -28
- package/dist/services/__tests__/team-reconciler.service.test.js.map +1 -1
- package/dist/services/__tests__/team-run.service.test.js +416 -0
- package/dist/services/__tests__/team-run.service.test.js.map +1 -1
- package/dist/services/__tests__/team-scheduler.service.test.js +680 -26
- package/dist/services/__tests__/team-scheduler.service.test.js.map +1 -1
- package/dist/services/__tests__/tunnel.service.test.d.ts +2 -0
- package/dist/services/__tests__/tunnel.service.test.d.ts.map +1 -0
- package/dist/services/__tests__/tunnel.service.test.js +138 -0
- package/dist/services/__tests__/tunnel.service.test.js.map +1 -0
- package/dist/services/__tests__/workspace.service.test.d.ts +2 -0
- package/dist/services/__tests__/workspace.service.test.d.ts.map +1 -0
- package/dist/services/__tests__/workspace.service.test.js +695 -0
- package/dist/services/__tests__/workspace.service.test.js.map +1 -0
- package/dist/services/attachment-context.d.ts +3 -0
- package/dist/services/attachment-context.d.ts.map +1 -0
- package/dist/services/attachment-context.js +34 -0
- package/dist/services/attachment-context.js.map +1 -0
- package/dist/services/preview.service.d.ts +19 -0
- package/dist/services/preview.service.d.ts.map +1 -0
- package/dist/services/preview.service.js +147 -0
- package/dist/services/preview.service.js.map +1 -0
- package/dist/services/project.service.d.ts +2 -0
- package/dist/services/project.service.d.ts.map +1 -1
- package/dist/services/project.service.js +87 -18
- package/dist/services/project.service.js.map +1 -1
- package/dist/services/session-manager.d.ts +12 -0
- package/dist/services/session-manager.d.ts.map +1 -1
- package/dist/services/task.service.d.ts +6 -0
- package/dist/services/task.service.d.ts.map +1 -1
- package/dist/services/task.service.js +15 -3
- package/dist/services/task.service.js.map +1 -1
- package/dist/services/team-lock.service.d.ts +3 -0
- package/dist/services/team-lock.service.d.ts.map +1 -1
- package/dist/services/team-lock.service.js +11 -0
- package/dist/services/team-lock.service.js.map +1 -1
- package/dist/services/team-run.service.d.ts +34 -1
- package/dist/services/team-run.service.d.ts.map +1 -1
- package/dist/services/team-run.service.js +370 -30
- package/dist/services/team-run.service.js.map +1 -1
- package/dist/services/team-scheduler.service.d.ts +22 -1
- package/dist/services/team-scheduler.service.d.ts.map +1 -1
- package/dist/services/team-scheduler.service.js +148 -33
- package/dist/services/team-scheduler.service.js.map +1 -1
- package/dist/services/tunnel.service.d.ts +31 -5
- package/dist/services/tunnel.service.d.ts.map +1 -1
- package/dist/services/tunnel.service.js +293 -32
- package/dist/services/tunnel.service.js.map +1 -1
- package/dist/services/workspace.service.d.ts +161 -7
- package/dist/services/workspace.service.d.ts.map +1 -1
- package/dist/services/workspace.service.js +396 -51
- package/dist/services/workspace.service.js.map +1 -1
- package/dist/web/assets/{AgentDemoPage-p9YI4_l4.js → AgentDemoPage-BhDnxdmh.js} +1 -1
- package/dist/web/assets/{DemoPage-B5DTSEbS.js → DemoPage-CJBc0NZf.js} +1 -1
- package/dist/web/assets/{GeneralSettingsPage-Cspr7Vol.js → GeneralSettingsPage-CEjDPmtD.js} +1 -1
- package/dist/web/assets/MemberAvatar-DxRCLAoK.js +1 -0
- package/dist/web/assets/NotificationSettingsPage-i77lmSic.js +1 -0
- package/dist/web/assets/{ProfileSettingsPage-CNugU40a.js → ProfileSettingsPage-DcGLD5O-.js} +1 -1
- package/dist/web/assets/ProjectKanbanPage-CX-NY7hx.js +89 -0
- package/dist/web/assets/ProjectSettingsPage-BBfroQPA.js +2 -0
- package/dist/web/assets/{ProviderSettingsPage-D_KWkgRM.js → ProviderSettingsPage-BdxbO1E9.js} +12 -12
- package/dist/web/assets/TeamSettingsPage-CTWGO79W.js +1 -0
- package/dist/web/assets/agent-tower-logo-COx9gy77.png +0 -0
- package/dist/web/assets/{button-B6JaSbDB.js → button-RDdre_kF.js} +1 -1
- package/dist/web/assets/{chevron-down-CACy4UFq.js → chevron-down-Cfeapk0v.js} +1 -1
- package/dist/web/assets/{chevron-right-DFWfnDJY.js → chevron-right-BE6LVCii.js} +1 -1
- package/dist/web/assets/{chevron-up-CGlf6jzw.js → chevron-up-CEEz4jJv.js} +1 -1
- package/dist/web/assets/{circle-check-DMK8auwb.js → circle-check-0imI5gEL.js} +1 -1
- package/dist/web/assets/{code-block-OCS4YCEC-Hn75KHRK.js → code-block-OCS4YCEC-D4c9zDcq.js} +1 -1
- package/dist/web/assets/{confirm-dialog-DHI2f7Ni.js → confirm-dialog--HDqEa-R.js} +1 -1
- package/dist/web/assets/folder-picker-CKfogW-o.js +1 -0
- package/dist/web/assets/index-BHmOCKAn.css +1 -0
- package/dist/web/assets/{index-BFAA3PTl.js → index-DbGCpy8E.js} +9 -9
- package/dist/web/assets/loader-circle-BAUFMewp.js +1 -0
- package/dist/web/assets/{log-adapter-CeKrvZcz.js → log-adapter-DKKM3sxS.js} +1 -1
- package/dist/web/assets/{mermaid-NOHMQCX5-DJFgrXPd.js → mermaid-NOHMQCX5-BkaKG_2K.js} +4 -4
- package/dist/web/assets/{modal-B5IRN7QI.js → modal-3rdeMVPn.js} +1 -1
- package/dist/web/assets/{pencil-CJY6Ahn7.js → pencil-CqWv0WcO.js} +1 -1
- package/dist/web/assets/{select-BPZZlla1.js → select-DHVfUr22.js} +1 -1
- package/dist/web/assets/upload-D3aqtSCY.js +1 -0
- package/dist/web/assets/{use-profiles-C2k04ICZ.js → use-profiles-BznmWvqM.js} +1 -1
- package/dist/web/assets/{use-providers-C7fIDWzP.js → use-providers-DIHUIuEZ.js} +1 -1
- package/dist/web/avatars/presets/avatar-preset-01-developer.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-02-architect.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-03-tester.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-04-devops.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-05-data-scientist.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-06-frontend.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-07-backend.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-08-security.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-09-project-manager.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-10-product-manager.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-11-scrum-master.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-12-tech-lead.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-13-coordinator.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-14-mentor.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-15-reviewer.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-16-ui-designer.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-17-ux-researcher.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-18-documenter.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-19-translator.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-20-analyst.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-21-consultant.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-22-creative-director.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-23-support.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-24-assistant.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-25-robot.png +0 -0
- package/dist/web/avatars/presets/avatar-preset-grid.png +0 -0
- package/dist/web/index.html +2 -2
- package/node_modules/@agent-tower/shared/dist/types.d.ts +13 -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 +11 -5
- package/node_modules/@prisma/client/.prisma/client/index-browser.js +6 -0
- package/node_modules/@prisma/client/.prisma/client/index.d.ts +1309 -14
- package/node_modules/@prisma/client/.prisma/client/index.js +11 -5
- package/node_modules/@prisma/client/.prisma/client/package.json +1 -1
- package/node_modules/@prisma/client/.prisma/client/schema.prisma +70 -52
- package/node_modules/@prisma/client/.prisma/client/wasm.js +6 -0
- package/package.json +1 -1
- package/prisma/migrations/20260515000000_add_workspace_preview_target/migration.sql +2 -0
- package/prisma/migrations/20260526000000_add_team_run_main_and_dedicated_workspaces/migration.sql +21 -0
- package/prisma/migrations/20260529000000_add_team_member_queue_management_policy/migration.sql +2 -0
- package/prisma/schema.prisma +29 -11
- package/dist/web/assets/NotificationSettingsPage-C9VfrRr-.js +0 -1
- package/dist/web/assets/ProjectKanbanPage-CkGNuqxq.js +0 -87
- package/dist/web/assets/ProjectSettingsPage-f1dg0XMf.js +0 -2
- package/dist/web/assets/TeamSettingsPage-B6WciZyi.js +0 -1
- package/dist/web/assets/circle-alert-BSAUEd9O.js +0 -1
- package/dist/web/assets/folder-picker-CtQkbWfa.js +0 -1
- package/dist/web/assets/index-mBCb67dB.css +0 -1
- package/dist/web/assets/loader-circle-CkDnf8ST.js +0 -1
- package/dist/web/assets/use-projects-BxuE-ulT.js +0 -1
|
@@ -2365,15 +2365,50 @@ export namespace Prisma {
|
|
|
2365
2365
|
}
|
|
2366
2366
|
|
|
2367
2367
|
|
|
2368
|
+
/**
|
|
2369
|
+
* Count Type TeamMemberCountOutputType
|
|
2370
|
+
*/
|
|
2371
|
+
|
|
2372
|
+
export type TeamMemberCountOutputType = {
|
|
2373
|
+
ownedWorkspaces: number
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
export type TeamMemberCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2377
|
+
ownedWorkspaces?: boolean | TeamMemberCountOutputTypeCountOwnedWorkspacesArgs
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
// Custom InputTypes
|
|
2381
|
+
/**
|
|
2382
|
+
* TeamMemberCountOutputType without action
|
|
2383
|
+
*/
|
|
2384
|
+
export type TeamMemberCountOutputTypeDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2385
|
+
/**
|
|
2386
|
+
* Select specific fields to fetch from the TeamMemberCountOutputType
|
|
2387
|
+
*/
|
|
2388
|
+
select?: TeamMemberCountOutputTypeSelect<ExtArgs> | null
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
/**
|
|
2392
|
+
* TeamMemberCountOutputType without action
|
|
2393
|
+
*/
|
|
2394
|
+
export type TeamMemberCountOutputTypeCountOwnedWorkspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2395
|
+
where?: WorkspaceWhereInput
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
|
|
2368
2399
|
/**
|
|
2369
2400
|
* Count Type WorkspaceCountOutputType
|
|
2370
2401
|
*/
|
|
2371
2402
|
|
|
2372
2403
|
export type WorkspaceCountOutputType = {
|
|
2404
|
+
childWorkspaces: number
|
|
2405
|
+
mainForTeamRuns: number
|
|
2373
2406
|
sessions: number
|
|
2374
2407
|
}
|
|
2375
2408
|
|
|
2376
2409
|
export type WorkspaceCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2410
|
+
childWorkspaces?: boolean | WorkspaceCountOutputTypeCountChildWorkspacesArgs
|
|
2411
|
+
mainForTeamRuns?: boolean | WorkspaceCountOutputTypeCountMainForTeamRunsArgs
|
|
2377
2412
|
sessions?: boolean | WorkspaceCountOutputTypeCountSessionsArgs
|
|
2378
2413
|
}
|
|
2379
2414
|
|
|
@@ -2388,6 +2423,20 @@ export namespace Prisma {
|
|
|
2388
2423
|
select?: WorkspaceCountOutputTypeSelect<ExtArgs> | null
|
|
2389
2424
|
}
|
|
2390
2425
|
|
|
2426
|
+
/**
|
|
2427
|
+
* WorkspaceCountOutputType without action
|
|
2428
|
+
*/
|
|
2429
|
+
export type WorkspaceCountOutputTypeCountChildWorkspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2430
|
+
where?: WorkspaceWhereInput
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* WorkspaceCountOutputType without action
|
|
2435
|
+
*/
|
|
2436
|
+
export type WorkspaceCountOutputTypeCountMainForTeamRunsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2437
|
+
where?: TeamRunWhereInput
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2391
2440
|
/**
|
|
2392
2441
|
* WorkspaceCountOutputType without action
|
|
2393
2442
|
*/
|
|
@@ -4555,6 +4604,7 @@ export namespace Prisma {
|
|
|
4555
4604
|
workspacePolicy: string | null
|
|
4556
4605
|
triggerPolicy: string | null
|
|
4557
4606
|
sessionPolicy: string | null
|
|
4607
|
+
queueManagementPolicy: string | null
|
|
4558
4608
|
avatar: string | null
|
|
4559
4609
|
createdAt: Date | null
|
|
4560
4610
|
updatedAt: Date | null
|
|
@@ -4570,6 +4620,7 @@ export namespace Prisma {
|
|
|
4570
4620
|
workspacePolicy: string | null
|
|
4571
4621
|
triggerPolicy: string | null
|
|
4572
4622
|
sessionPolicy: string | null
|
|
4623
|
+
queueManagementPolicy: string | null
|
|
4573
4624
|
avatar: string | null
|
|
4574
4625
|
createdAt: Date | null
|
|
4575
4626
|
updatedAt: Date | null
|
|
@@ -4585,6 +4636,7 @@ export namespace Prisma {
|
|
|
4585
4636
|
workspacePolicy: number
|
|
4586
4637
|
triggerPolicy: number
|
|
4587
4638
|
sessionPolicy: number
|
|
4639
|
+
queueManagementPolicy: number
|
|
4588
4640
|
avatar: number
|
|
4589
4641
|
createdAt: number
|
|
4590
4642
|
updatedAt: number
|
|
@@ -4602,6 +4654,7 @@ export namespace Prisma {
|
|
|
4602
4654
|
workspacePolicy?: true
|
|
4603
4655
|
triggerPolicy?: true
|
|
4604
4656
|
sessionPolicy?: true
|
|
4657
|
+
queueManagementPolicy?: true
|
|
4605
4658
|
avatar?: true
|
|
4606
4659
|
createdAt?: true
|
|
4607
4660
|
updatedAt?: true
|
|
@@ -4617,6 +4670,7 @@ export namespace Prisma {
|
|
|
4617
4670
|
workspacePolicy?: true
|
|
4618
4671
|
triggerPolicy?: true
|
|
4619
4672
|
sessionPolicy?: true
|
|
4673
|
+
queueManagementPolicy?: true
|
|
4620
4674
|
avatar?: true
|
|
4621
4675
|
createdAt?: true
|
|
4622
4676
|
updatedAt?: true
|
|
@@ -4632,6 +4686,7 @@ export namespace Prisma {
|
|
|
4632
4686
|
workspacePolicy?: true
|
|
4633
4687
|
triggerPolicy?: true
|
|
4634
4688
|
sessionPolicy?: true
|
|
4689
|
+
queueManagementPolicy?: true
|
|
4635
4690
|
avatar?: true
|
|
4636
4691
|
createdAt?: true
|
|
4637
4692
|
updatedAt?: true
|
|
@@ -4720,6 +4775,7 @@ export namespace Prisma {
|
|
|
4720
4775
|
workspacePolicy: string
|
|
4721
4776
|
triggerPolicy: string
|
|
4722
4777
|
sessionPolicy: string
|
|
4778
|
+
queueManagementPolicy: string
|
|
4723
4779
|
avatar: string | null
|
|
4724
4780
|
createdAt: Date
|
|
4725
4781
|
updatedAt: Date
|
|
@@ -4752,6 +4808,7 @@ export namespace Prisma {
|
|
|
4752
4808
|
workspacePolicy?: boolean
|
|
4753
4809
|
triggerPolicy?: boolean
|
|
4754
4810
|
sessionPolicy?: boolean
|
|
4811
|
+
queueManagementPolicy?: boolean
|
|
4755
4812
|
avatar?: boolean
|
|
4756
4813
|
createdAt?: boolean
|
|
4757
4814
|
updatedAt?: boolean
|
|
@@ -4767,6 +4824,7 @@ export namespace Prisma {
|
|
|
4767
4824
|
workspacePolicy?: boolean
|
|
4768
4825
|
triggerPolicy?: boolean
|
|
4769
4826
|
sessionPolicy?: boolean
|
|
4827
|
+
queueManagementPolicy?: boolean
|
|
4770
4828
|
avatar?: boolean
|
|
4771
4829
|
createdAt?: boolean
|
|
4772
4830
|
updatedAt?: boolean
|
|
@@ -4782,6 +4840,7 @@ export namespace Prisma {
|
|
|
4782
4840
|
workspacePolicy?: boolean
|
|
4783
4841
|
triggerPolicy?: boolean
|
|
4784
4842
|
sessionPolicy?: boolean
|
|
4843
|
+
queueManagementPolicy?: boolean
|
|
4785
4844
|
avatar?: boolean
|
|
4786
4845
|
createdAt?: boolean
|
|
4787
4846
|
updatedAt?: boolean
|
|
@@ -4801,6 +4860,7 @@ export namespace Prisma {
|
|
|
4801
4860
|
workspacePolicy: string
|
|
4802
4861
|
triggerPolicy: string
|
|
4803
4862
|
sessionPolicy: string
|
|
4863
|
+
queueManagementPolicy: string
|
|
4804
4864
|
avatar: string | null
|
|
4805
4865
|
createdAt: Date
|
|
4806
4866
|
updatedAt: Date
|
|
@@ -5206,6 +5266,7 @@ export namespace Prisma {
|
|
|
5206
5266
|
readonly workspacePolicy: FieldRef<"MemberPreset", 'String'>
|
|
5207
5267
|
readonly triggerPolicy: FieldRef<"MemberPreset", 'String'>
|
|
5208
5268
|
readonly sessionPolicy: FieldRef<"MemberPreset", 'String'>
|
|
5269
|
+
readonly queueManagementPolicy: FieldRef<"MemberPreset", 'String'>
|
|
5209
5270
|
readonly avatar: FieldRef<"MemberPreset", 'String'>
|
|
5210
5271
|
readonly createdAt: FieldRef<"MemberPreset", 'DateTime'>
|
|
5211
5272
|
readonly updatedAt: FieldRef<"MemberPreset", 'DateTime'>
|
|
@@ -7395,6 +7456,7 @@ export namespace Prisma {
|
|
|
7395
7456
|
export type TeamRunMinAggregateOutputType = {
|
|
7396
7457
|
id: string | null
|
|
7397
7458
|
taskId: string | null
|
|
7459
|
+
mainWorkspaceId: string | null
|
|
7398
7460
|
mode: string | null
|
|
7399
7461
|
reviewReason: string | null
|
|
7400
7462
|
createdAt: Date | null
|
|
@@ -7404,6 +7466,7 @@ export namespace Prisma {
|
|
|
7404
7466
|
export type TeamRunMaxAggregateOutputType = {
|
|
7405
7467
|
id: string | null
|
|
7406
7468
|
taskId: string | null
|
|
7469
|
+
mainWorkspaceId: string | null
|
|
7407
7470
|
mode: string | null
|
|
7408
7471
|
reviewReason: string | null
|
|
7409
7472
|
createdAt: Date | null
|
|
@@ -7413,6 +7476,7 @@ export namespace Prisma {
|
|
|
7413
7476
|
export type TeamRunCountAggregateOutputType = {
|
|
7414
7477
|
id: number
|
|
7415
7478
|
taskId: number
|
|
7479
|
+
mainWorkspaceId: number
|
|
7416
7480
|
mode: number
|
|
7417
7481
|
reviewReason: number
|
|
7418
7482
|
createdAt: number
|
|
@@ -7424,6 +7488,7 @@ export namespace Prisma {
|
|
|
7424
7488
|
export type TeamRunMinAggregateInputType = {
|
|
7425
7489
|
id?: true
|
|
7426
7490
|
taskId?: true
|
|
7491
|
+
mainWorkspaceId?: true
|
|
7427
7492
|
mode?: true
|
|
7428
7493
|
reviewReason?: true
|
|
7429
7494
|
createdAt?: true
|
|
@@ -7433,6 +7498,7 @@ export namespace Prisma {
|
|
|
7433
7498
|
export type TeamRunMaxAggregateInputType = {
|
|
7434
7499
|
id?: true
|
|
7435
7500
|
taskId?: true
|
|
7501
|
+
mainWorkspaceId?: true
|
|
7436
7502
|
mode?: true
|
|
7437
7503
|
reviewReason?: true
|
|
7438
7504
|
createdAt?: true
|
|
@@ -7442,6 +7508,7 @@ export namespace Prisma {
|
|
|
7442
7508
|
export type TeamRunCountAggregateInputType = {
|
|
7443
7509
|
id?: true
|
|
7444
7510
|
taskId?: true
|
|
7511
|
+
mainWorkspaceId?: true
|
|
7445
7512
|
mode?: true
|
|
7446
7513
|
reviewReason?: true
|
|
7447
7514
|
createdAt?: true
|
|
@@ -7524,6 +7591,7 @@ export namespace Prisma {
|
|
|
7524
7591
|
export type TeamRunGroupByOutputType = {
|
|
7525
7592
|
id: string
|
|
7526
7593
|
taskId: string
|
|
7594
|
+
mainWorkspaceId: string | null
|
|
7527
7595
|
mode: string
|
|
7528
7596
|
reviewReason: string | null
|
|
7529
7597
|
createdAt: Date
|
|
@@ -7550,11 +7618,13 @@ export namespace Prisma {
|
|
|
7550
7618
|
export type TeamRunSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7551
7619
|
id?: boolean
|
|
7552
7620
|
taskId?: boolean
|
|
7621
|
+
mainWorkspaceId?: boolean
|
|
7553
7622
|
mode?: boolean
|
|
7554
7623
|
reviewReason?: boolean
|
|
7555
7624
|
createdAt?: boolean
|
|
7556
7625
|
updatedAt?: boolean
|
|
7557
7626
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7627
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7558
7628
|
members?: boolean | TeamRun$membersArgs<ExtArgs>
|
|
7559
7629
|
messages?: boolean | TeamRun$messagesArgs<ExtArgs>
|
|
7560
7630
|
workRequests?: boolean | TeamRun$workRequestsArgs<ExtArgs>
|
|
@@ -7565,16 +7635,19 @@ export namespace Prisma {
|
|
|
7565
7635
|
export type TeamRunSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7566
7636
|
id?: boolean
|
|
7567
7637
|
taskId?: boolean
|
|
7638
|
+
mainWorkspaceId?: boolean
|
|
7568
7639
|
mode?: boolean
|
|
7569
7640
|
reviewReason?: boolean
|
|
7570
7641
|
createdAt?: boolean
|
|
7571
7642
|
updatedAt?: boolean
|
|
7572
7643
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7644
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7573
7645
|
}, ExtArgs["result"]["teamRun"]>
|
|
7574
7646
|
|
|
7575
7647
|
export type TeamRunSelectScalar = {
|
|
7576
7648
|
id?: boolean
|
|
7577
7649
|
taskId?: boolean
|
|
7650
|
+
mainWorkspaceId?: boolean
|
|
7578
7651
|
mode?: boolean
|
|
7579
7652
|
reviewReason?: boolean
|
|
7580
7653
|
createdAt?: boolean
|
|
@@ -7583,6 +7656,7 @@ export namespace Prisma {
|
|
|
7583
7656
|
|
|
7584
7657
|
export type TeamRunInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7585
7658
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7659
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7586
7660
|
members?: boolean | TeamRun$membersArgs<ExtArgs>
|
|
7587
7661
|
messages?: boolean | TeamRun$messagesArgs<ExtArgs>
|
|
7588
7662
|
workRequests?: boolean | TeamRun$workRequestsArgs<ExtArgs>
|
|
@@ -7591,12 +7665,14 @@ export namespace Prisma {
|
|
|
7591
7665
|
}
|
|
7592
7666
|
export type TeamRunIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7593
7667
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7668
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7594
7669
|
}
|
|
7595
7670
|
|
|
7596
7671
|
export type $TeamRunPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7597
7672
|
name: "TeamRun"
|
|
7598
7673
|
objects: {
|
|
7599
7674
|
task: Prisma.$TaskPayload<ExtArgs>
|
|
7675
|
+
mainWorkspace: Prisma.$WorkspacePayload<ExtArgs> | null
|
|
7600
7676
|
members: Prisma.$TeamMemberPayload<ExtArgs>[]
|
|
7601
7677
|
messages: Prisma.$RoomMessagePayload<ExtArgs>[]
|
|
7602
7678
|
workRequests: Prisma.$WorkRequestPayload<ExtArgs>[]
|
|
@@ -7605,6 +7681,7 @@ export namespace Prisma {
|
|
|
7605
7681
|
scalars: $Extensions.GetPayloadResult<{
|
|
7606
7682
|
id: string
|
|
7607
7683
|
taskId: string
|
|
7684
|
+
mainWorkspaceId: string | null
|
|
7608
7685
|
mode: string
|
|
7609
7686
|
reviewReason: string | null
|
|
7610
7687
|
createdAt: Date
|
|
@@ -7974,6 +8051,7 @@ export namespace Prisma {
|
|
|
7974
8051
|
export interface Prisma__TeamRunClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
7975
8052
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
7976
8053
|
task<T extends TaskDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TaskDefaultArgs<ExtArgs>>): Prisma__TaskClient<$Result.GetResult<Prisma.$TaskPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
8054
|
+
mainWorkspace<T extends TeamRun$mainWorkspaceArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$mainWorkspaceArgs<ExtArgs>>): Prisma__WorkspaceClient<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
7977
8055
|
members<T extends TeamRun$membersArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$membersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TeamMemberPayload<ExtArgs>, T, "findMany"> | Null>
|
|
7978
8056
|
messages<T extends TeamRun$messagesArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoomMessagePayload<ExtArgs>, T, "findMany"> | Null>
|
|
7979
8057
|
workRequests<T extends TeamRun$workRequestsArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$workRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkRequestPayload<ExtArgs>, T, "findMany"> | Null>
|
|
@@ -8009,6 +8087,7 @@ export namespace Prisma {
|
|
|
8009
8087
|
interface TeamRunFieldRefs {
|
|
8010
8088
|
readonly id: FieldRef<"TeamRun", 'String'>
|
|
8011
8089
|
readonly taskId: FieldRef<"TeamRun", 'String'>
|
|
8090
|
+
readonly mainWorkspaceId: FieldRef<"TeamRun", 'String'>
|
|
8012
8091
|
readonly mode: FieldRef<"TeamRun", 'String'>
|
|
8013
8092
|
readonly reviewReason: FieldRef<"TeamRun", 'String'>
|
|
8014
8093
|
readonly createdAt: FieldRef<"TeamRun", 'DateTime'>
|
|
@@ -8328,6 +8407,21 @@ export namespace Prisma {
|
|
|
8328
8407
|
where?: TeamRunWhereInput
|
|
8329
8408
|
}
|
|
8330
8409
|
|
|
8410
|
+
/**
|
|
8411
|
+
* TeamRun.mainWorkspace
|
|
8412
|
+
*/
|
|
8413
|
+
export type TeamRun$mainWorkspaceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8414
|
+
/**
|
|
8415
|
+
* Select specific fields to fetch from the Workspace
|
|
8416
|
+
*/
|
|
8417
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
8418
|
+
/**
|
|
8419
|
+
* Choose, which related nodes to fetch as well
|
|
8420
|
+
*/
|
|
8421
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
8422
|
+
where?: WorkspaceWhereInput
|
|
8423
|
+
}
|
|
8424
|
+
|
|
8331
8425
|
/**
|
|
8332
8426
|
* TeamRun.members
|
|
8333
8427
|
*/
|
|
@@ -8445,6 +8539,7 @@ export namespace Prisma {
|
|
|
8445
8539
|
workspacePolicy: string | null
|
|
8446
8540
|
triggerPolicy: string | null
|
|
8447
8541
|
sessionPolicy: string | null
|
|
8542
|
+
queueManagementPolicy: string | null
|
|
8448
8543
|
avatar: string | null
|
|
8449
8544
|
status: string | null
|
|
8450
8545
|
createdAt: Date | null
|
|
@@ -8463,6 +8558,7 @@ export namespace Prisma {
|
|
|
8463
8558
|
workspacePolicy: string | null
|
|
8464
8559
|
triggerPolicy: string | null
|
|
8465
8560
|
sessionPolicy: string | null
|
|
8561
|
+
queueManagementPolicy: string | null
|
|
8466
8562
|
avatar: string | null
|
|
8467
8563
|
status: string | null
|
|
8468
8564
|
createdAt: Date | null
|
|
@@ -8481,6 +8577,7 @@ export namespace Prisma {
|
|
|
8481
8577
|
workspacePolicy: number
|
|
8482
8578
|
triggerPolicy: number
|
|
8483
8579
|
sessionPolicy: number
|
|
8580
|
+
queueManagementPolicy: number
|
|
8484
8581
|
avatar: number
|
|
8485
8582
|
status: number
|
|
8486
8583
|
createdAt: number
|
|
@@ -8501,6 +8598,7 @@ export namespace Prisma {
|
|
|
8501
8598
|
workspacePolicy?: true
|
|
8502
8599
|
triggerPolicy?: true
|
|
8503
8600
|
sessionPolicy?: true
|
|
8601
|
+
queueManagementPolicy?: true
|
|
8504
8602
|
avatar?: true
|
|
8505
8603
|
status?: true
|
|
8506
8604
|
createdAt?: true
|
|
@@ -8519,6 +8617,7 @@ export namespace Prisma {
|
|
|
8519
8617
|
workspacePolicy?: true
|
|
8520
8618
|
triggerPolicy?: true
|
|
8521
8619
|
sessionPolicy?: true
|
|
8620
|
+
queueManagementPolicy?: true
|
|
8522
8621
|
avatar?: true
|
|
8523
8622
|
status?: true
|
|
8524
8623
|
createdAt?: true
|
|
@@ -8537,6 +8636,7 @@ export namespace Prisma {
|
|
|
8537
8636
|
workspacePolicy?: true
|
|
8538
8637
|
triggerPolicy?: true
|
|
8539
8638
|
sessionPolicy?: true
|
|
8639
|
+
queueManagementPolicy?: true
|
|
8540
8640
|
avatar?: true
|
|
8541
8641
|
status?: true
|
|
8542
8642
|
createdAt?: true
|
|
@@ -8628,6 +8728,7 @@ export namespace Prisma {
|
|
|
8628
8728
|
workspacePolicy: string
|
|
8629
8729
|
triggerPolicy: string
|
|
8630
8730
|
sessionPolicy: string
|
|
8731
|
+
queueManagementPolicy: string
|
|
8631
8732
|
avatar: string | null
|
|
8632
8733
|
status: string
|
|
8633
8734
|
createdAt: Date
|
|
@@ -8663,11 +8764,14 @@ export namespace Prisma {
|
|
|
8663
8764
|
workspacePolicy?: boolean
|
|
8664
8765
|
triggerPolicy?: boolean
|
|
8665
8766
|
sessionPolicy?: boolean
|
|
8767
|
+
queueManagementPolicy?: boolean
|
|
8666
8768
|
avatar?: boolean
|
|
8667
8769
|
status?: boolean
|
|
8668
8770
|
createdAt?: boolean
|
|
8669
8771
|
updatedAt?: boolean
|
|
8670
8772
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
8773
|
+
ownedWorkspaces?: boolean | TeamMember$ownedWorkspacesArgs<ExtArgs>
|
|
8774
|
+
_count?: boolean | TeamMemberCountOutputTypeDefaultArgs<ExtArgs>
|
|
8671
8775
|
}, ExtArgs["result"]["teamMember"]>
|
|
8672
8776
|
|
|
8673
8777
|
export type TeamMemberSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -8682,6 +8786,7 @@ export namespace Prisma {
|
|
|
8682
8786
|
workspacePolicy?: boolean
|
|
8683
8787
|
triggerPolicy?: boolean
|
|
8684
8788
|
sessionPolicy?: boolean
|
|
8789
|
+
queueManagementPolicy?: boolean
|
|
8685
8790
|
avatar?: boolean
|
|
8686
8791
|
status?: boolean
|
|
8687
8792
|
createdAt?: boolean
|
|
@@ -8701,6 +8806,7 @@ export namespace Prisma {
|
|
|
8701
8806
|
workspacePolicy?: boolean
|
|
8702
8807
|
triggerPolicy?: boolean
|
|
8703
8808
|
sessionPolicy?: boolean
|
|
8809
|
+
queueManagementPolicy?: boolean
|
|
8704
8810
|
avatar?: boolean
|
|
8705
8811
|
status?: boolean
|
|
8706
8812
|
createdAt?: boolean
|
|
@@ -8709,6 +8815,8 @@ export namespace Prisma {
|
|
|
8709
8815
|
|
|
8710
8816
|
export type TeamMemberInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8711
8817
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
8818
|
+
ownedWorkspaces?: boolean | TeamMember$ownedWorkspacesArgs<ExtArgs>
|
|
8819
|
+
_count?: boolean | TeamMemberCountOutputTypeDefaultArgs<ExtArgs>
|
|
8712
8820
|
}
|
|
8713
8821
|
export type TeamMemberIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8714
8822
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
@@ -8718,6 +8826,7 @@ export namespace Prisma {
|
|
|
8718
8826
|
name: "TeamMember"
|
|
8719
8827
|
objects: {
|
|
8720
8828
|
teamRun: Prisma.$TeamRunPayload<ExtArgs>
|
|
8829
|
+
ownedWorkspaces: Prisma.$WorkspacePayload<ExtArgs>[]
|
|
8721
8830
|
}
|
|
8722
8831
|
scalars: $Extensions.GetPayloadResult<{
|
|
8723
8832
|
id: string
|
|
@@ -8731,6 +8840,7 @@ export namespace Prisma {
|
|
|
8731
8840
|
workspacePolicy: string
|
|
8732
8841
|
triggerPolicy: string
|
|
8733
8842
|
sessionPolicy: string
|
|
8843
|
+
queueManagementPolicy: string
|
|
8734
8844
|
avatar: string | null
|
|
8735
8845
|
status: string
|
|
8736
8846
|
createdAt: Date
|
|
@@ -9100,6 +9210,7 @@ export namespace Prisma {
|
|
|
9100
9210
|
export interface Prisma__TeamMemberClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
9101
9211
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
9102
9212
|
teamRun<T extends TeamRunDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TeamRunDefaultArgs<ExtArgs>>): Prisma__TeamRunClient<$Result.GetResult<Prisma.$TeamRunPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
9213
|
+
ownedWorkspaces<T extends TeamMember$ownedWorkspacesArgs<ExtArgs> = {}>(args?: Subset<T, TeamMember$ownedWorkspacesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findMany"> | Null>
|
|
9103
9214
|
/**
|
|
9104
9215
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9105
9216
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9140,6 +9251,7 @@ export namespace Prisma {
|
|
|
9140
9251
|
readonly workspacePolicy: FieldRef<"TeamMember", 'String'>
|
|
9141
9252
|
readonly triggerPolicy: FieldRef<"TeamMember", 'String'>
|
|
9142
9253
|
readonly sessionPolicy: FieldRef<"TeamMember", 'String'>
|
|
9254
|
+
readonly queueManagementPolicy: FieldRef<"TeamMember", 'String'>
|
|
9143
9255
|
readonly avatar: FieldRef<"TeamMember", 'String'>
|
|
9144
9256
|
readonly status: FieldRef<"TeamMember", 'String'>
|
|
9145
9257
|
readonly createdAt: FieldRef<"TeamMember", 'DateTime'>
|
|
@@ -9459,6 +9571,26 @@ export namespace Prisma {
|
|
|
9459
9571
|
where?: TeamMemberWhereInput
|
|
9460
9572
|
}
|
|
9461
9573
|
|
|
9574
|
+
/**
|
|
9575
|
+
* TeamMember.ownedWorkspaces
|
|
9576
|
+
*/
|
|
9577
|
+
export type TeamMember$ownedWorkspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9578
|
+
/**
|
|
9579
|
+
* Select specific fields to fetch from the Workspace
|
|
9580
|
+
*/
|
|
9581
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
9582
|
+
/**
|
|
9583
|
+
* Choose, which related nodes to fetch as well
|
|
9584
|
+
*/
|
|
9585
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
9586
|
+
where?: WorkspaceWhereInput
|
|
9587
|
+
orderBy?: WorkspaceOrderByWithRelationInput | WorkspaceOrderByWithRelationInput[]
|
|
9588
|
+
cursor?: WorkspaceWhereUniqueInput
|
|
9589
|
+
take?: number
|
|
9590
|
+
skip?: number
|
|
9591
|
+
distinct?: WorkspaceScalarFieldEnum | WorkspaceScalarFieldEnum[]
|
|
9592
|
+
}
|
|
9593
|
+
|
|
9462
9594
|
/**
|
|
9463
9595
|
* TeamMember without action
|
|
9464
9596
|
*/
|
|
@@ -12554,11 +12686,14 @@ export namespace Prisma {
|
|
|
12554
12686
|
export type WorkspaceMinAggregateOutputType = {
|
|
12555
12687
|
id: string | null
|
|
12556
12688
|
taskId: string | null
|
|
12689
|
+
parentWorkspaceId: string | null
|
|
12690
|
+
ownerMemberId: string | null
|
|
12557
12691
|
branchName: string | null
|
|
12558
12692
|
baseBranch: string | null
|
|
12559
12693
|
worktreePath: string | null
|
|
12560
12694
|
status: string | null
|
|
12561
12695
|
commitMessage: string | null
|
|
12696
|
+
previewTarget: string | null
|
|
12562
12697
|
hibernatedAt: Date | null
|
|
12563
12698
|
createdAt: Date | null
|
|
12564
12699
|
updatedAt: Date | null
|
|
@@ -12567,11 +12702,14 @@ export namespace Prisma {
|
|
|
12567
12702
|
export type WorkspaceMaxAggregateOutputType = {
|
|
12568
12703
|
id: string | null
|
|
12569
12704
|
taskId: string | null
|
|
12705
|
+
parentWorkspaceId: string | null
|
|
12706
|
+
ownerMemberId: string | null
|
|
12570
12707
|
branchName: string | null
|
|
12571
12708
|
baseBranch: string | null
|
|
12572
12709
|
worktreePath: string | null
|
|
12573
12710
|
status: string | null
|
|
12574
12711
|
commitMessage: string | null
|
|
12712
|
+
previewTarget: string | null
|
|
12575
12713
|
hibernatedAt: Date | null
|
|
12576
12714
|
createdAt: Date | null
|
|
12577
12715
|
updatedAt: Date | null
|
|
@@ -12580,11 +12718,14 @@ export namespace Prisma {
|
|
|
12580
12718
|
export type WorkspaceCountAggregateOutputType = {
|
|
12581
12719
|
id: number
|
|
12582
12720
|
taskId: number
|
|
12721
|
+
parentWorkspaceId: number
|
|
12722
|
+
ownerMemberId: number
|
|
12583
12723
|
branchName: number
|
|
12584
12724
|
baseBranch: number
|
|
12585
12725
|
worktreePath: number
|
|
12586
12726
|
status: number
|
|
12587
12727
|
commitMessage: number
|
|
12728
|
+
previewTarget: number
|
|
12588
12729
|
hibernatedAt: number
|
|
12589
12730
|
createdAt: number
|
|
12590
12731
|
updatedAt: number
|
|
@@ -12595,11 +12736,14 @@ export namespace Prisma {
|
|
|
12595
12736
|
export type WorkspaceMinAggregateInputType = {
|
|
12596
12737
|
id?: true
|
|
12597
12738
|
taskId?: true
|
|
12739
|
+
parentWorkspaceId?: true
|
|
12740
|
+
ownerMemberId?: true
|
|
12598
12741
|
branchName?: true
|
|
12599
12742
|
baseBranch?: true
|
|
12600
12743
|
worktreePath?: true
|
|
12601
12744
|
status?: true
|
|
12602
12745
|
commitMessage?: true
|
|
12746
|
+
previewTarget?: true
|
|
12603
12747
|
hibernatedAt?: true
|
|
12604
12748
|
createdAt?: true
|
|
12605
12749
|
updatedAt?: true
|
|
@@ -12608,11 +12752,14 @@ export namespace Prisma {
|
|
|
12608
12752
|
export type WorkspaceMaxAggregateInputType = {
|
|
12609
12753
|
id?: true
|
|
12610
12754
|
taskId?: true
|
|
12755
|
+
parentWorkspaceId?: true
|
|
12756
|
+
ownerMemberId?: true
|
|
12611
12757
|
branchName?: true
|
|
12612
12758
|
baseBranch?: true
|
|
12613
12759
|
worktreePath?: true
|
|
12614
12760
|
status?: true
|
|
12615
12761
|
commitMessage?: true
|
|
12762
|
+
previewTarget?: true
|
|
12616
12763
|
hibernatedAt?: true
|
|
12617
12764
|
createdAt?: true
|
|
12618
12765
|
updatedAt?: true
|
|
@@ -12621,11 +12768,14 @@ export namespace Prisma {
|
|
|
12621
12768
|
export type WorkspaceCountAggregateInputType = {
|
|
12622
12769
|
id?: true
|
|
12623
12770
|
taskId?: true
|
|
12771
|
+
parentWorkspaceId?: true
|
|
12772
|
+
ownerMemberId?: true
|
|
12624
12773
|
branchName?: true
|
|
12625
12774
|
baseBranch?: true
|
|
12626
12775
|
worktreePath?: true
|
|
12627
12776
|
status?: true
|
|
12628
12777
|
commitMessage?: true
|
|
12778
|
+
previewTarget?: true
|
|
12629
12779
|
hibernatedAt?: true
|
|
12630
12780
|
createdAt?: true
|
|
12631
12781
|
updatedAt?: true
|
|
@@ -12707,11 +12857,14 @@ export namespace Prisma {
|
|
|
12707
12857
|
export type WorkspaceGroupByOutputType = {
|
|
12708
12858
|
id: string
|
|
12709
12859
|
taskId: string
|
|
12860
|
+
parentWorkspaceId: string | null
|
|
12861
|
+
ownerMemberId: string | null
|
|
12710
12862
|
branchName: string
|
|
12711
12863
|
baseBranch: string | null
|
|
12712
12864
|
worktreePath: string
|
|
12713
12865
|
status: string
|
|
12714
12866
|
commitMessage: string | null
|
|
12867
|
+
previewTarget: string | null
|
|
12715
12868
|
hibernatedAt: Date | null
|
|
12716
12869
|
createdAt: Date
|
|
12717
12870
|
updatedAt: Date
|
|
@@ -12737,15 +12890,22 @@ export namespace Prisma {
|
|
|
12737
12890
|
export type WorkspaceSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
12738
12891
|
id?: boolean
|
|
12739
12892
|
taskId?: boolean
|
|
12893
|
+
parentWorkspaceId?: boolean
|
|
12894
|
+
ownerMemberId?: boolean
|
|
12740
12895
|
branchName?: boolean
|
|
12741
12896
|
baseBranch?: boolean
|
|
12742
12897
|
worktreePath?: boolean
|
|
12743
12898
|
status?: boolean
|
|
12744
12899
|
commitMessage?: boolean
|
|
12900
|
+
previewTarget?: boolean
|
|
12745
12901
|
hibernatedAt?: boolean
|
|
12746
12902
|
createdAt?: boolean
|
|
12747
12903
|
updatedAt?: boolean
|
|
12748
12904
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12905
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12906
|
+
childWorkspaces?: boolean | Workspace$childWorkspacesArgs<ExtArgs>
|
|
12907
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12908
|
+
mainForTeamRuns?: boolean | Workspace$mainForTeamRunsArgs<ExtArgs>
|
|
12749
12909
|
sessions?: boolean | Workspace$sessionsArgs<ExtArgs>
|
|
12750
12910
|
_count?: boolean | WorkspaceCountOutputTypeDefaultArgs<ExtArgs>
|
|
12751
12911
|
}, ExtArgs["result"]["workspace"]>
|
|
@@ -12753,25 +12913,33 @@ export namespace Prisma {
|
|
|
12753
12913
|
export type WorkspaceSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
12754
12914
|
id?: boolean
|
|
12755
12915
|
taskId?: boolean
|
|
12916
|
+
parentWorkspaceId?: boolean
|
|
12917
|
+
ownerMemberId?: boolean
|
|
12756
12918
|
branchName?: boolean
|
|
12757
12919
|
baseBranch?: boolean
|
|
12758
12920
|
worktreePath?: boolean
|
|
12759
12921
|
status?: boolean
|
|
12760
12922
|
commitMessage?: boolean
|
|
12923
|
+
previewTarget?: boolean
|
|
12761
12924
|
hibernatedAt?: boolean
|
|
12762
12925
|
createdAt?: boolean
|
|
12763
12926
|
updatedAt?: boolean
|
|
12764
12927
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12928
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12929
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12765
12930
|
}, ExtArgs["result"]["workspace"]>
|
|
12766
12931
|
|
|
12767
12932
|
export type WorkspaceSelectScalar = {
|
|
12768
12933
|
id?: boolean
|
|
12769
12934
|
taskId?: boolean
|
|
12935
|
+
parentWorkspaceId?: boolean
|
|
12936
|
+
ownerMemberId?: boolean
|
|
12770
12937
|
branchName?: boolean
|
|
12771
12938
|
baseBranch?: boolean
|
|
12772
12939
|
worktreePath?: boolean
|
|
12773
12940
|
status?: boolean
|
|
12774
12941
|
commitMessage?: boolean
|
|
12942
|
+
previewTarget?: boolean
|
|
12775
12943
|
hibernatedAt?: boolean
|
|
12776
12944
|
createdAt?: boolean
|
|
12777
12945
|
updatedAt?: boolean
|
|
@@ -12779,27 +12947,40 @@ export namespace Prisma {
|
|
|
12779
12947
|
|
|
12780
12948
|
export type WorkspaceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12781
12949
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12950
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12951
|
+
childWorkspaces?: boolean | Workspace$childWorkspacesArgs<ExtArgs>
|
|
12952
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12953
|
+
mainForTeamRuns?: boolean | Workspace$mainForTeamRunsArgs<ExtArgs>
|
|
12782
12954
|
sessions?: boolean | Workspace$sessionsArgs<ExtArgs>
|
|
12783
12955
|
_count?: boolean | WorkspaceCountOutputTypeDefaultArgs<ExtArgs>
|
|
12784
12956
|
}
|
|
12785
12957
|
export type WorkspaceIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12786
12958
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12959
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12960
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12787
12961
|
}
|
|
12788
12962
|
|
|
12789
12963
|
export type $WorkspacePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12790
12964
|
name: "Workspace"
|
|
12791
12965
|
objects: {
|
|
12792
12966
|
task: Prisma.$TaskPayload<ExtArgs>
|
|
12967
|
+
parentWorkspace: Prisma.$WorkspacePayload<ExtArgs> | null
|
|
12968
|
+
childWorkspaces: Prisma.$WorkspacePayload<ExtArgs>[]
|
|
12969
|
+
ownerMember: Prisma.$TeamMemberPayload<ExtArgs> | null
|
|
12970
|
+
mainForTeamRuns: Prisma.$TeamRunPayload<ExtArgs>[]
|
|
12793
12971
|
sessions: Prisma.$SessionPayload<ExtArgs>[]
|
|
12794
12972
|
}
|
|
12795
12973
|
scalars: $Extensions.GetPayloadResult<{
|
|
12796
12974
|
id: string
|
|
12797
12975
|
taskId: string
|
|
12976
|
+
parentWorkspaceId: string | null
|
|
12977
|
+
ownerMemberId: string | null
|
|
12798
12978
|
branchName: string
|
|
12799
12979
|
baseBranch: string | null
|
|
12800
12980
|
worktreePath: string
|
|
12801
12981
|
status: string
|
|
12802
12982
|
commitMessage: string | null
|
|
12983
|
+
previewTarget: string | null
|
|
12803
12984
|
hibernatedAt: Date | null
|
|
12804
12985
|
createdAt: Date
|
|
12805
12986
|
updatedAt: Date
|
|
@@ -13168,6 +13349,10 @@ export namespace Prisma {
|
|
|
13168
13349
|
export interface Prisma__WorkspaceClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
13169
13350
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
13170
13351
|
task<T extends TaskDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TaskDefaultArgs<ExtArgs>>): Prisma__TaskClient<$Result.GetResult<Prisma.$TaskPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
13352
|
+
parentWorkspace<T extends Workspace$parentWorkspaceArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$parentWorkspaceArgs<ExtArgs>>): Prisma__WorkspaceClient<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
13353
|
+
childWorkspaces<T extends Workspace$childWorkspacesArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$childWorkspacesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findMany"> | Null>
|
|
13354
|
+
ownerMember<T extends Workspace$ownerMemberArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$ownerMemberArgs<ExtArgs>>): Prisma__TeamMemberClient<$Result.GetResult<Prisma.$TeamMemberPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
13355
|
+
mainForTeamRuns<T extends Workspace$mainForTeamRunsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$mainForTeamRunsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TeamRunPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13171
13356
|
sessions<T extends Workspace$sessionsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SessionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13172
13357
|
/**
|
|
13173
13358
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -13200,11 +13385,14 @@ export namespace Prisma {
|
|
|
13200
13385
|
interface WorkspaceFieldRefs {
|
|
13201
13386
|
readonly id: FieldRef<"Workspace", 'String'>
|
|
13202
13387
|
readonly taskId: FieldRef<"Workspace", 'String'>
|
|
13388
|
+
readonly parentWorkspaceId: FieldRef<"Workspace", 'String'>
|
|
13389
|
+
readonly ownerMemberId: FieldRef<"Workspace", 'String'>
|
|
13203
13390
|
readonly branchName: FieldRef<"Workspace", 'String'>
|
|
13204
13391
|
readonly baseBranch: FieldRef<"Workspace", 'String'>
|
|
13205
13392
|
readonly worktreePath: FieldRef<"Workspace", 'String'>
|
|
13206
13393
|
readonly status: FieldRef<"Workspace", 'String'>
|
|
13207
13394
|
readonly commitMessage: FieldRef<"Workspace", 'String'>
|
|
13395
|
+
readonly previewTarget: FieldRef<"Workspace", 'String'>
|
|
13208
13396
|
readonly hibernatedAt: FieldRef<"Workspace", 'DateTime'>
|
|
13209
13397
|
readonly createdAt: FieldRef<"Workspace", 'DateTime'>
|
|
13210
13398
|
readonly updatedAt: FieldRef<"Workspace", 'DateTime'>
|
|
@@ -13523,6 +13711,76 @@ export namespace Prisma {
|
|
|
13523
13711
|
where?: WorkspaceWhereInput
|
|
13524
13712
|
}
|
|
13525
13713
|
|
|
13714
|
+
/**
|
|
13715
|
+
* Workspace.parentWorkspace
|
|
13716
|
+
*/
|
|
13717
|
+
export type Workspace$parentWorkspaceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13718
|
+
/**
|
|
13719
|
+
* Select specific fields to fetch from the Workspace
|
|
13720
|
+
*/
|
|
13721
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
13722
|
+
/**
|
|
13723
|
+
* Choose, which related nodes to fetch as well
|
|
13724
|
+
*/
|
|
13725
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
13726
|
+
where?: WorkspaceWhereInput
|
|
13727
|
+
}
|
|
13728
|
+
|
|
13729
|
+
/**
|
|
13730
|
+
* Workspace.childWorkspaces
|
|
13731
|
+
*/
|
|
13732
|
+
export type Workspace$childWorkspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13733
|
+
/**
|
|
13734
|
+
* Select specific fields to fetch from the Workspace
|
|
13735
|
+
*/
|
|
13736
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
13737
|
+
/**
|
|
13738
|
+
* Choose, which related nodes to fetch as well
|
|
13739
|
+
*/
|
|
13740
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
13741
|
+
where?: WorkspaceWhereInput
|
|
13742
|
+
orderBy?: WorkspaceOrderByWithRelationInput | WorkspaceOrderByWithRelationInput[]
|
|
13743
|
+
cursor?: WorkspaceWhereUniqueInput
|
|
13744
|
+
take?: number
|
|
13745
|
+
skip?: number
|
|
13746
|
+
distinct?: WorkspaceScalarFieldEnum | WorkspaceScalarFieldEnum[]
|
|
13747
|
+
}
|
|
13748
|
+
|
|
13749
|
+
/**
|
|
13750
|
+
* Workspace.ownerMember
|
|
13751
|
+
*/
|
|
13752
|
+
export type Workspace$ownerMemberArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13753
|
+
/**
|
|
13754
|
+
* Select specific fields to fetch from the TeamMember
|
|
13755
|
+
*/
|
|
13756
|
+
select?: TeamMemberSelect<ExtArgs> | null
|
|
13757
|
+
/**
|
|
13758
|
+
* Choose, which related nodes to fetch as well
|
|
13759
|
+
*/
|
|
13760
|
+
include?: TeamMemberInclude<ExtArgs> | null
|
|
13761
|
+
where?: TeamMemberWhereInput
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
/**
|
|
13765
|
+
* Workspace.mainForTeamRuns
|
|
13766
|
+
*/
|
|
13767
|
+
export type Workspace$mainForTeamRunsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13768
|
+
/**
|
|
13769
|
+
* Select specific fields to fetch from the TeamRun
|
|
13770
|
+
*/
|
|
13771
|
+
select?: TeamRunSelect<ExtArgs> | null
|
|
13772
|
+
/**
|
|
13773
|
+
* Choose, which related nodes to fetch as well
|
|
13774
|
+
*/
|
|
13775
|
+
include?: TeamRunInclude<ExtArgs> | null
|
|
13776
|
+
where?: TeamRunWhereInput
|
|
13777
|
+
orderBy?: TeamRunOrderByWithRelationInput | TeamRunOrderByWithRelationInput[]
|
|
13778
|
+
cursor?: TeamRunWhereUniqueInput
|
|
13779
|
+
take?: number
|
|
13780
|
+
skip?: number
|
|
13781
|
+
distinct?: TeamRunScalarFieldEnum | TeamRunScalarFieldEnum[]
|
|
13782
|
+
}
|
|
13783
|
+
|
|
13526
13784
|
/**
|
|
13527
13785
|
* Workspace.sessions
|
|
13528
13786
|
*/
|
|
@@ -19197,6 +19455,7 @@ export namespace Prisma {
|
|
|
19197
19455
|
workspacePolicy: 'workspacePolicy',
|
|
19198
19456
|
triggerPolicy: 'triggerPolicy',
|
|
19199
19457
|
sessionPolicy: 'sessionPolicy',
|
|
19458
|
+
queueManagementPolicy: 'queueManagementPolicy',
|
|
19200
19459
|
avatar: 'avatar',
|
|
19201
19460
|
createdAt: 'createdAt',
|
|
19202
19461
|
updatedAt: 'updatedAt'
|
|
@@ -19228,6 +19487,7 @@ export namespace Prisma {
|
|
|
19228
19487
|
export const TeamRunScalarFieldEnum: {
|
|
19229
19488
|
id: 'id',
|
|
19230
19489
|
taskId: 'taskId',
|
|
19490
|
+
mainWorkspaceId: 'mainWorkspaceId',
|
|
19231
19491
|
mode: 'mode',
|
|
19232
19492
|
reviewReason: 'reviewReason',
|
|
19233
19493
|
createdAt: 'createdAt',
|
|
@@ -19249,6 +19509,7 @@ export namespace Prisma {
|
|
|
19249
19509
|
workspacePolicy: 'workspacePolicy',
|
|
19250
19510
|
triggerPolicy: 'triggerPolicy',
|
|
19251
19511
|
sessionPolicy: 'sessionPolicy',
|
|
19512
|
+
queueManagementPolicy: 'queueManagementPolicy',
|
|
19252
19513
|
avatar: 'avatar',
|
|
19253
19514
|
status: 'status',
|
|
19254
19515
|
createdAt: 'createdAt',
|
|
@@ -19314,11 +19575,14 @@ export namespace Prisma {
|
|
|
19314
19575
|
export const WorkspaceScalarFieldEnum: {
|
|
19315
19576
|
id: 'id',
|
|
19316
19577
|
taskId: 'taskId',
|
|
19578
|
+
parentWorkspaceId: 'parentWorkspaceId',
|
|
19579
|
+
ownerMemberId: 'ownerMemberId',
|
|
19317
19580
|
branchName: 'branchName',
|
|
19318
19581
|
baseBranch: 'baseBranch',
|
|
19319
19582
|
worktreePath: 'worktreePath',
|
|
19320
19583
|
status: 'status',
|
|
19321
19584
|
commitMessage: 'commitMessage',
|
|
19585
|
+
previewTarget: 'previewTarget',
|
|
19322
19586
|
hibernatedAt: 'hibernatedAt',
|
|
19323
19587
|
createdAt: 'createdAt',
|
|
19324
19588
|
updatedAt: 'updatedAt'
|
|
@@ -19653,6 +19917,7 @@ export namespace Prisma {
|
|
|
19653
19917
|
workspacePolicy?: StringFilter<"MemberPreset"> | string
|
|
19654
19918
|
triggerPolicy?: StringFilter<"MemberPreset"> | string
|
|
19655
19919
|
sessionPolicy?: StringFilter<"MemberPreset"> | string
|
|
19920
|
+
queueManagementPolicy?: StringFilter<"MemberPreset"> | string
|
|
19656
19921
|
avatar?: StringNullableFilter<"MemberPreset"> | string | null
|
|
19657
19922
|
createdAt?: DateTimeFilter<"MemberPreset"> | Date | string
|
|
19658
19923
|
updatedAt?: DateTimeFilter<"MemberPreset"> | Date | string
|
|
@@ -19668,6 +19933,7 @@ export namespace Prisma {
|
|
|
19668
19933
|
workspacePolicy?: SortOrder
|
|
19669
19934
|
triggerPolicy?: SortOrder
|
|
19670
19935
|
sessionPolicy?: SortOrder
|
|
19936
|
+
queueManagementPolicy?: SortOrder
|
|
19671
19937
|
avatar?: SortOrderInput | SortOrder
|
|
19672
19938
|
createdAt?: SortOrder
|
|
19673
19939
|
updatedAt?: SortOrder
|
|
@@ -19686,6 +19952,7 @@ export namespace Prisma {
|
|
|
19686
19952
|
workspacePolicy?: StringFilter<"MemberPreset"> | string
|
|
19687
19953
|
triggerPolicy?: StringFilter<"MemberPreset"> | string
|
|
19688
19954
|
sessionPolicy?: StringFilter<"MemberPreset"> | string
|
|
19955
|
+
queueManagementPolicy?: StringFilter<"MemberPreset"> | string
|
|
19689
19956
|
avatar?: StringNullableFilter<"MemberPreset"> | string | null
|
|
19690
19957
|
createdAt?: DateTimeFilter<"MemberPreset"> | Date | string
|
|
19691
19958
|
updatedAt?: DateTimeFilter<"MemberPreset"> | Date | string
|
|
@@ -19701,6 +19968,7 @@ export namespace Prisma {
|
|
|
19701
19968
|
workspacePolicy?: SortOrder
|
|
19702
19969
|
triggerPolicy?: SortOrder
|
|
19703
19970
|
sessionPolicy?: SortOrder
|
|
19971
|
+
queueManagementPolicy?: SortOrder
|
|
19704
19972
|
avatar?: SortOrderInput | SortOrder
|
|
19705
19973
|
createdAt?: SortOrder
|
|
19706
19974
|
updatedAt?: SortOrder
|
|
@@ -19722,6 +19990,7 @@ export namespace Prisma {
|
|
|
19722
19990
|
workspacePolicy?: StringWithAggregatesFilter<"MemberPreset"> | string
|
|
19723
19991
|
triggerPolicy?: StringWithAggregatesFilter<"MemberPreset"> | string
|
|
19724
19992
|
sessionPolicy?: StringWithAggregatesFilter<"MemberPreset"> | string
|
|
19993
|
+
queueManagementPolicy?: StringWithAggregatesFilter<"MemberPreset"> | string
|
|
19725
19994
|
avatar?: StringNullableWithAggregatesFilter<"MemberPreset"> | string | null
|
|
19726
19995
|
createdAt?: DateTimeWithAggregatesFilter<"MemberPreset"> | Date | string
|
|
19727
19996
|
updatedAt?: DateTimeWithAggregatesFilter<"MemberPreset"> | Date | string
|
|
@@ -19835,11 +20104,13 @@ export namespace Prisma {
|
|
|
19835
20104
|
NOT?: TeamRunWhereInput | TeamRunWhereInput[]
|
|
19836
20105
|
id?: StringFilter<"TeamRun"> | string
|
|
19837
20106
|
taskId?: StringFilter<"TeamRun"> | string
|
|
20107
|
+
mainWorkspaceId?: StringNullableFilter<"TeamRun"> | string | null
|
|
19838
20108
|
mode?: StringFilter<"TeamRun"> | string
|
|
19839
20109
|
reviewReason?: StringNullableFilter<"TeamRun"> | string | null
|
|
19840
20110
|
createdAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19841
20111
|
updatedAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19842
20112
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20113
|
+
mainWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
19843
20114
|
members?: TeamMemberListRelationFilter
|
|
19844
20115
|
messages?: RoomMessageListRelationFilter
|
|
19845
20116
|
workRequests?: WorkRequestListRelationFilter
|
|
@@ -19849,11 +20120,13 @@ export namespace Prisma {
|
|
|
19849
20120
|
export type TeamRunOrderByWithRelationInput = {
|
|
19850
20121
|
id?: SortOrder
|
|
19851
20122
|
taskId?: SortOrder
|
|
20123
|
+
mainWorkspaceId?: SortOrderInput | SortOrder
|
|
19852
20124
|
mode?: SortOrder
|
|
19853
20125
|
reviewReason?: SortOrderInput | SortOrder
|
|
19854
20126
|
createdAt?: SortOrder
|
|
19855
20127
|
updatedAt?: SortOrder
|
|
19856
20128
|
task?: TaskOrderByWithRelationInput
|
|
20129
|
+
mainWorkspace?: WorkspaceOrderByWithRelationInput
|
|
19857
20130
|
members?: TeamMemberOrderByRelationAggregateInput
|
|
19858
20131
|
messages?: RoomMessageOrderByRelationAggregateInput
|
|
19859
20132
|
workRequests?: WorkRequestOrderByRelationAggregateInput
|
|
@@ -19866,11 +20139,13 @@ export namespace Prisma {
|
|
|
19866
20139
|
AND?: TeamRunWhereInput | TeamRunWhereInput[]
|
|
19867
20140
|
OR?: TeamRunWhereInput[]
|
|
19868
20141
|
NOT?: TeamRunWhereInput | TeamRunWhereInput[]
|
|
20142
|
+
mainWorkspaceId?: StringNullableFilter<"TeamRun"> | string | null
|
|
19869
20143
|
mode?: StringFilter<"TeamRun"> | string
|
|
19870
20144
|
reviewReason?: StringNullableFilter<"TeamRun"> | string | null
|
|
19871
20145
|
createdAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19872
20146
|
updatedAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19873
20147
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20148
|
+
mainWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
19874
20149
|
members?: TeamMemberListRelationFilter
|
|
19875
20150
|
messages?: RoomMessageListRelationFilter
|
|
19876
20151
|
workRequests?: WorkRequestListRelationFilter
|
|
@@ -19880,6 +20155,7 @@ export namespace Prisma {
|
|
|
19880
20155
|
export type TeamRunOrderByWithAggregationInput = {
|
|
19881
20156
|
id?: SortOrder
|
|
19882
20157
|
taskId?: SortOrder
|
|
20158
|
+
mainWorkspaceId?: SortOrderInput | SortOrder
|
|
19883
20159
|
mode?: SortOrder
|
|
19884
20160
|
reviewReason?: SortOrderInput | SortOrder
|
|
19885
20161
|
createdAt?: SortOrder
|
|
@@ -19895,6 +20171,7 @@ export namespace Prisma {
|
|
|
19895
20171
|
NOT?: TeamRunScalarWhereWithAggregatesInput | TeamRunScalarWhereWithAggregatesInput[]
|
|
19896
20172
|
id?: StringWithAggregatesFilter<"TeamRun"> | string
|
|
19897
20173
|
taskId?: StringWithAggregatesFilter<"TeamRun"> | string
|
|
20174
|
+
mainWorkspaceId?: StringNullableWithAggregatesFilter<"TeamRun"> | string | null
|
|
19898
20175
|
mode?: StringWithAggregatesFilter<"TeamRun"> | string
|
|
19899
20176
|
reviewReason?: StringNullableWithAggregatesFilter<"TeamRun"> | string | null
|
|
19900
20177
|
createdAt?: DateTimeWithAggregatesFilter<"TeamRun"> | Date | string
|
|
@@ -19916,11 +20193,13 @@ export namespace Prisma {
|
|
|
19916
20193
|
workspacePolicy?: StringFilter<"TeamMember"> | string
|
|
19917
20194
|
triggerPolicy?: StringFilter<"TeamMember"> | string
|
|
19918
20195
|
sessionPolicy?: StringFilter<"TeamMember"> | string
|
|
20196
|
+
queueManagementPolicy?: StringFilter<"TeamMember"> | string
|
|
19919
20197
|
avatar?: StringNullableFilter<"TeamMember"> | string | null
|
|
19920
20198
|
status?: StringFilter<"TeamMember"> | string
|
|
19921
20199
|
createdAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19922
20200
|
updatedAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19923
20201
|
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
20202
|
+
ownedWorkspaces?: WorkspaceListRelationFilter
|
|
19924
20203
|
}
|
|
19925
20204
|
|
|
19926
20205
|
export type TeamMemberOrderByWithRelationInput = {
|
|
@@ -19935,11 +20214,13 @@ export namespace Prisma {
|
|
|
19935
20214
|
workspacePolicy?: SortOrder
|
|
19936
20215
|
triggerPolicy?: SortOrder
|
|
19937
20216
|
sessionPolicy?: SortOrder
|
|
20217
|
+
queueManagementPolicy?: SortOrder
|
|
19938
20218
|
avatar?: SortOrderInput | SortOrder
|
|
19939
20219
|
status?: SortOrder
|
|
19940
20220
|
createdAt?: SortOrder
|
|
19941
20221
|
updatedAt?: SortOrder
|
|
19942
20222
|
teamRun?: TeamRunOrderByWithRelationInput
|
|
20223
|
+
ownedWorkspaces?: WorkspaceOrderByRelationAggregateInput
|
|
19943
20224
|
}
|
|
19944
20225
|
|
|
19945
20226
|
export type TeamMemberWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -19957,11 +20238,13 @@ export namespace Prisma {
|
|
|
19957
20238
|
workspacePolicy?: StringFilter<"TeamMember"> | string
|
|
19958
20239
|
triggerPolicy?: StringFilter<"TeamMember"> | string
|
|
19959
20240
|
sessionPolicy?: StringFilter<"TeamMember"> | string
|
|
20241
|
+
queueManagementPolicy?: StringFilter<"TeamMember"> | string
|
|
19960
20242
|
avatar?: StringNullableFilter<"TeamMember"> | string | null
|
|
19961
20243
|
status?: StringFilter<"TeamMember"> | string
|
|
19962
20244
|
createdAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19963
20245
|
updatedAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19964
20246
|
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
20247
|
+
ownedWorkspaces?: WorkspaceListRelationFilter
|
|
19965
20248
|
}, "id">
|
|
19966
20249
|
|
|
19967
20250
|
export type TeamMemberOrderByWithAggregationInput = {
|
|
@@ -19976,6 +20259,7 @@ export namespace Prisma {
|
|
|
19976
20259
|
workspacePolicy?: SortOrder
|
|
19977
20260
|
triggerPolicy?: SortOrder
|
|
19978
20261
|
sessionPolicy?: SortOrder
|
|
20262
|
+
queueManagementPolicy?: SortOrder
|
|
19979
20263
|
avatar?: SortOrderInput | SortOrder
|
|
19980
20264
|
status?: SortOrder
|
|
19981
20265
|
createdAt?: SortOrder
|
|
@@ -20000,6 +20284,7 @@ export namespace Prisma {
|
|
|
20000
20284
|
workspacePolicy?: StringWithAggregatesFilter<"TeamMember"> | string
|
|
20001
20285
|
triggerPolicy?: StringWithAggregatesFilter<"TeamMember"> | string
|
|
20002
20286
|
sessionPolicy?: StringWithAggregatesFilter<"TeamMember"> | string
|
|
20287
|
+
queueManagementPolicy?: StringWithAggregatesFilter<"TeamMember"> | string
|
|
20003
20288
|
avatar?: StringNullableWithAggregatesFilter<"TeamMember"> | string | null
|
|
20004
20289
|
status?: StringWithAggregatesFilter<"TeamMember"> | string
|
|
20005
20290
|
createdAt?: DateTimeWithAggregatesFilter<"TeamMember"> | Date | string
|
|
@@ -20279,59 +20564,84 @@ export namespace Prisma {
|
|
|
20279
20564
|
NOT?: WorkspaceWhereInput | WorkspaceWhereInput[]
|
|
20280
20565
|
id?: StringFilter<"Workspace"> | string
|
|
20281
20566
|
taskId?: StringFilter<"Workspace"> | string
|
|
20567
|
+
parentWorkspaceId?: StringNullableFilter<"Workspace"> | string | null
|
|
20568
|
+
ownerMemberId?: StringNullableFilter<"Workspace"> | string | null
|
|
20282
20569
|
branchName?: StringFilter<"Workspace"> | string
|
|
20283
20570
|
baseBranch?: StringNullableFilter<"Workspace"> | string | null
|
|
20284
20571
|
worktreePath?: StringFilter<"Workspace"> | string
|
|
20285
20572
|
status?: StringFilter<"Workspace"> | string
|
|
20286
20573
|
commitMessage?: StringNullableFilter<"Workspace"> | string | null
|
|
20574
|
+
previewTarget?: StringNullableFilter<"Workspace"> | string | null
|
|
20287
20575
|
hibernatedAt?: DateTimeNullableFilter<"Workspace"> | Date | string | null
|
|
20288
20576
|
createdAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20289
20577
|
updatedAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20290
20578
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20579
|
+
parentWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
20580
|
+
childWorkspaces?: WorkspaceListRelationFilter
|
|
20581
|
+
ownerMember?: XOR<TeamMemberNullableRelationFilter, TeamMemberWhereInput> | null
|
|
20582
|
+
mainForTeamRuns?: TeamRunListRelationFilter
|
|
20291
20583
|
sessions?: SessionListRelationFilter
|
|
20292
20584
|
}
|
|
20293
20585
|
|
|
20294
20586
|
export type WorkspaceOrderByWithRelationInput = {
|
|
20295
20587
|
id?: SortOrder
|
|
20296
20588
|
taskId?: SortOrder
|
|
20589
|
+
parentWorkspaceId?: SortOrderInput | SortOrder
|
|
20590
|
+
ownerMemberId?: SortOrderInput | SortOrder
|
|
20297
20591
|
branchName?: SortOrder
|
|
20298
20592
|
baseBranch?: SortOrderInput | SortOrder
|
|
20299
20593
|
worktreePath?: SortOrder
|
|
20300
20594
|
status?: SortOrder
|
|
20301
20595
|
commitMessage?: SortOrderInput | SortOrder
|
|
20596
|
+
previewTarget?: SortOrderInput | SortOrder
|
|
20302
20597
|
hibernatedAt?: SortOrderInput | SortOrder
|
|
20303
20598
|
createdAt?: SortOrder
|
|
20304
20599
|
updatedAt?: SortOrder
|
|
20305
20600
|
task?: TaskOrderByWithRelationInput
|
|
20601
|
+
parentWorkspace?: WorkspaceOrderByWithRelationInput
|
|
20602
|
+
childWorkspaces?: WorkspaceOrderByRelationAggregateInput
|
|
20603
|
+
ownerMember?: TeamMemberOrderByWithRelationInput
|
|
20604
|
+
mainForTeamRuns?: TeamRunOrderByRelationAggregateInput
|
|
20306
20605
|
sessions?: SessionOrderByRelationAggregateInput
|
|
20307
20606
|
}
|
|
20308
20607
|
|
|
20309
20608
|
export type WorkspaceWhereUniqueInput = Prisma.AtLeast<{
|
|
20310
20609
|
id?: string
|
|
20610
|
+
parentWorkspaceId_ownerMemberId?: WorkspaceParentWorkspaceIdOwnerMemberIdCompoundUniqueInput
|
|
20311
20611
|
AND?: WorkspaceWhereInput | WorkspaceWhereInput[]
|
|
20312
20612
|
OR?: WorkspaceWhereInput[]
|
|
20313
20613
|
NOT?: WorkspaceWhereInput | WorkspaceWhereInput[]
|
|
20314
20614
|
taskId?: StringFilter<"Workspace"> | string
|
|
20615
|
+
parentWorkspaceId?: StringNullableFilter<"Workspace"> | string | null
|
|
20616
|
+
ownerMemberId?: StringNullableFilter<"Workspace"> | string | null
|
|
20315
20617
|
branchName?: StringFilter<"Workspace"> | string
|
|
20316
20618
|
baseBranch?: StringNullableFilter<"Workspace"> | string | null
|
|
20317
20619
|
worktreePath?: StringFilter<"Workspace"> | string
|
|
20318
20620
|
status?: StringFilter<"Workspace"> | string
|
|
20319
20621
|
commitMessage?: StringNullableFilter<"Workspace"> | string | null
|
|
20622
|
+
previewTarget?: StringNullableFilter<"Workspace"> | string | null
|
|
20320
20623
|
hibernatedAt?: DateTimeNullableFilter<"Workspace"> | Date | string | null
|
|
20321
20624
|
createdAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20322
20625
|
updatedAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20323
20626
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20627
|
+
parentWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
20628
|
+
childWorkspaces?: WorkspaceListRelationFilter
|
|
20629
|
+
ownerMember?: XOR<TeamMemberNullableRelationFilter, TeamMemberWhereInput> | null
|
|
20630
|
+
mainForTeamRuns?: TeamRunListRelationFilter
|
|
20324
20631
|
sessions?: SessionListRelationFilter
|
|
20325
|
-
}, "id">
|
|
20632
|
+
}, "id" | "parentWorkspaceId_ownerMemberId">
|
|
20326
20633
|
|
|
20327
20634
|
export type WorkspaceOrderByWithAggregationInput = {
|
|
20328
20635
|
id?: SortOrder
|
|
20329
20636
|
taskId?: SortOrder
|
|
20637
|
+
parentWorkspaceId?: SortOrderInput | SortOrder
|
|
20638
|
+
ownerMemberId?: SortOrderInput | SortOrder
|
|
20330
20639
|
branchName?: SortOrder
|
|
20331
20640
|
baseBranch?: SortOrderInput | SortOrder
|
|
20332
20641
|
worktreePath?: SortOrder
|
|
20333
20642
|
status?: SortOrder
|
|
20334
20643
|
commitMessage?: SortOrderInput | SortOrder
|
|
20644
|
+
previewTarget?: SortOrderInput | SortOrder
|
|
20335
20645
|
hibernatedAt?: SortOrderInput | SortOrder
|
|
20336
20646
|
createdAt?: SortOrder
|
|
20337
20647
|
updatedAt?: SortOrder
|
|
@@ -20346,11 +20656,14 @@ export namespace Prisma {
|
|
|
20346
20656
|
NOT?: WorkspaceScalarWhereWithAggregatesInput | WorkspaceScalarWhereWithAggregatesInput[]
|
|
20347
20657
|
id?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20348
20658
|
taskId?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20659
|
+
parentWorkspaceId?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20660
|
+
ownerMemberId?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20349
20661
|
branchName?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20350
20662
|
baseBranch?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20351
20663
|
worktreePath?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20352
20664
|
status?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20353
20665
|
commitMessage?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20666
|
+
previewTarget?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20354
20667
|
hibernatedAt?: DateTimeNullableWithAggregatesFilter<"Workspace"> | Date | string | null
|
|
20355
20668
|
createdAt?: DateTimeWithAggregatesFilter<"Workspace"> | Date | string
|
|
20356
20669
|
updatedAt?: DateTimeWithAggregatesFilter<"Workspace"> | Date | string
|
|
@@ -20948,6 +21261,7 @@ export namespace Prisma {
|
|
|
20948
21261
|
workspacePolicy: string
|
|
20949
21262
|
triggerPolicy: string
|
|
20950
21263
|
sessionPolicy?: string
|
|
21264
|
+
queueManagementPolicy?: string
|
|
20951
21265
|
avatar?: string | null
|
|
20952
21266
|
createdAt?: Date | string
|
|
20953
21267
|
updatedAt?: Date | string
|
|
@@ -20963,6 +21277,7 @@ export namespace Prisma {
|
|
|
20963
21277
|
workspacePolicy: string
|
|
20964
21278
|
triggerPolicy: string
|
|
20965
21279
|
sessionPolicy?: string
|
|
21280
|
+
queueManagementPolicy?: string
|
|
20966
21281
|
avatar?: string | null
|
|
20967
21282
|
createdAt?: Date | string
|
|
20968
21283
|
updatedAt?: Date | string
|
|
@@ -20978,6 +21293,7 @@ export namespace Prisma {
|
|
|
20978
21293
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
20979
21294
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
20980
21295
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21296
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
20981
21297
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20982
21298
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
20983
21299
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -20993,6 +21309,7 @@ export namespace Prisma {
|
|
|
20993
21309
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
20994
21310
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
20995
21311
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21312
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
20996
21313
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20997
21314
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
20998
21315
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21008,6 +21325,7 @@ export namespace Prisma {
|
|
|
21008
21325
|
workspacePolicy: string
|
|
21009
21326
|
triggerPolicy: string
|
|
21010
21327
|
sessionPolicy?: string
|
|
21328
|
+
queueManagementPolicy?: string
|
|
21011
21329
|
avatar?: string | null
|
|
21012
21330
|
createdAt?: Date | string
|
|
21013
21331
|
updatedAt?: Date | string
|
|
@@ -21023,6 +21341,7 @@ export namespace Prisma {
|
|
|
21023
21341
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
21024
21342
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
21025
21343
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21344
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
21026
21345
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21027
21346
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21028
21347
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21038,6 +21357,7 @@ export namespace Prisma {
|
|
|
21038
21357
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
21039
21358
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
21040
21359
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21360
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
21041
21361
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21042
21362
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21043
21363
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21151,6 +21471,7 @@ export namespace Prisma {
|
|
|
21151
21471
|
createdAt?: Date | string
|
|
21152
21472
|
updatedAt?: Date | string
|
|
21153
21473
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
21474
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
21154
21475
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
21155
21476
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
21156
21477
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
@@ -21160,6 +21481,7 @@ export namespace Prisma {
|
|
|
21160
21481
|
export type TeamRunUncheckedCreateInput = {
|
|
21161
21482
|
id?: string
|
|
21162
21483
|
taskId: string
|
|
21484
|
+
mainWorkspaceId?: string | null
|
|
21163
21485
|
mode: string
|
|
21164
21486
|
reviewReason?: string | null
|
|
21165
21487
|
createdAt?: Date | string
|
|
@@ -21177,6 +21499,7 @@ export namespace Prisma {
|
|
|
21177
21499
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21178
21500
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21179
21501
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
21502
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
21180
21503
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
21181
21504
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
21182
21505
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
@@ -21186,6 +21509,7 @@ export namespace Prisma {
|
|
|
21186
21509
|
export type TeamRunUncheckedUpdateInput = {
|
|
21187
21510
|
id?: StringFieldUpdateOperationsInput | string
|
|
21188
21511
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
21512
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21189
21513
|
mode?: StringFieldUpdateOperationsInput | string
|
|
21190
21514
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21191
21515
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21199,6 +21523,7 @@ export namespace Prisma {
|
|
|
21199
21523
|
export type TeamRunCreateManyInput = {
|
|
21200
21524
|
id?: string
|
|
21201
21525
|
taskId: string
|
|
21526
|
+
mainWorkspaceId?: string | null
|
|
21202
21527
|
mode: string
|
|
21203
21528
|
reviewReason?: string | null
|
|
21204
21529
|
createdAt?: Date | string
|
|
@@ -21216,6 +21541,7 @@ export namespace Prisma {
|
|
|
21216
21541
|
export type TeamRunUncheckedUpdateManyInput = {
|
|
21217
21542
|
id?: StringFieldUpdateOperationsInput | string
|
|
21218
21543
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
21544
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21219
21545
|
mode?: StringFieldUpdateOperationsInput | string
|
|
21220
21546
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21221
21547
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21233,11 +21559,13 @@ export namespace Prisma {
|
|
|
21233
21559
|
workspacePolicy: string
|
|
21234
21560
|
triggerPolicy: string
|
|
21235
21561
|
sessionPolicy?: string
|
|
21562
|
+
queueManagementPolicy?: string
|
|
21236
21563
|
avatar?: string | null
|
|
21237
21564
|
status?: string
|
|
21238
21565
|
createdAt?: Date | string
|
|
21239
21566
|
updatedAt?: Date | string
|
|
21240
21567
|
teamRun: TeamRunCreateNestedOneWithoutMembersInput
|
|
21568
|
+
ownedWorkspaces?: WorkspaceCreateNestedManyWithoutOwnerMemberInput
|
|
21241
21569
|
}
|
|
21242
21570
|
|
|
21243
21571
|
export type TeamMemberUncheckedCreateInput = {
|
|
@@ -21252,10 +21580,12 @@ export namespace Prisma {
|
|
|
21252
21580
|
workspacePolicy: string
|
|
21253
21581
|
triggerPolicy: string
|
|
21254
21582
|
sessionPolicy?: string
|
|
21583
|
+
queueManagementPolicy?: string
|
|
21255
21584
|
avatar?: string | null
|
|
21256
21585
|
status?: string
|
|
21257
21586
|
createdAt?: Date | string
|
|
21258
21587
|
updatedAt?: Date | string
|
|
21588
|
+
ownedWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutOwnerMemberInput
|
|
21259
21589
|
}
|
|
21260
21590
|
|
|
21261
21591
|
export type TeamMemberUpdateInput = {
|
|
@@ -21269,11 +21599,13 @@ export namespace Prisma {
|
|
|
21269
21599
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
21270
21600
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
21271
21601
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21602
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
21272
21603
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21273
21604
|
status?: StringFieldUpdateOperationsInput | string
|
|
21274
21605
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21275
21606
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21276
21607
|
teamRun?: TeamRunUpdateOneRequiredWithoutMembersNestedInput
|
|
21608
|
+
ownedWorkspaces?: WorkspaceUpdateManyWithoutOwnerMemberNestedInput
|
|
21277
21609
|
}
|
|
21278
21610
|
|
|
21279
21611
|
export type TeamMemberUncheckedUpdateInput = {
|
|
@@ -21288,10 +21620,12 @@ export namespace Prisma {
|
|
|
21288
21620
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
21289
21621
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
21290
21622
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21623
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
21291
21624
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21292
21625
|
status?: StringFieldUpdateOperationsInput | string
|
|
21293
21626
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21294
21627
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21628
|
+
ownedWorkspaces?: WorkspaceUncheckedUpdateManyWithoutOwnerMemberNestedInput
|
|
21295
21629
|
}
|
|
21296
21630
|
|
|
21297
21631
|
export type TeamMemberCreateManyInput = {
|
|
@@ -21306,6 +21640,7 @@ export namespace Prisma {
|
|
|
21306
21640
|
workspacePolicy: string
|
|
21307
21641
|
triggerPolicy: string
|
|
21308
21642
|
sessionPolicy?: string
|
|
21643
|
+
queueManagementPolicy?: string
|
|
21309
21644
|
avatar?: string | null
|
|
21310
21645
|
status?: string
|
|
21311
21646
|
createdAt?: Date | string
|
|
@@ -21323,6 +21658,7 @@ export namespace Prisma {
|
|
|
21323
21658
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
21324
21659
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
21325
21660
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21661
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
21326
21662
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21327
21663
|
status?: StringFieldUpdateOperationsInput | string
|
|
21328
21664
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21341,6 +21677,7 @@ export namespace Prisma {
|
|
|
21341
21677
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
21342
21678
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
21343
21679
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
21680
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
21344
21681
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21345
21682
|
status?: StringFieldUpdateOperationsInput | string
|
|
21346
21683
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21659,24 +21996,34 @@ export namespace Prisma {
|
|
|
21659
21996
|
worktreePath: string
|
|
21660
21997
|
status?: string
|
|
21661
21998
|
commitMessage?: string | null
|
|
21999
|
+
previewTarget?: string | null
|
|
21662
22000
|
hibernatedAt?: Date | string | null
|
|
21663
22001
|
createdAt?: Date | string
|
|
21664
22002
|
updatedAt?: Date | string
|
|
21665
22003
|
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
22004
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
22005
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
22006
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
22007
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
21666
22008
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
21667
22009
|
}
|
|
21668
22010
|
|
|
21669
22011
|
export type WorkspaceUncheckedCreateInput = {
|
|
21670
22012
|
id?: string
|
|
21671
22013
|
taskId: string
|
|
22014
|
+
parentWorkspaceId?: string | null
|
|
22015
|
+
ownerMemberId?: string | null
|
|
21672
22016
|
branchName: string
|
|
21673
22017
|
baseBranch?: string | null
|
|
21674
22018
|
worktreePath: string
|
|
21675
22019
|
status?: string
|
|
21676
22020
|
commitMessage?: string | null
|
|
22021
|
+
previewTarget?: string | null
|
|
21677
22022
|
hibernatedAt?: Date | string | null
|
|
21678
22023
|
createdAt?: Date | string
|
|
21679
22024
|
updatedAt?: Date | string
|
|
22025
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
22026
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
21680
22027
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
21681
22028
|
}
|
|
21682
22029
|
|
|
@@ -21687,35 +22034,48 @@ export namespace Prisma {
|
|
|
21687
22034
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21688
22035
|
status?: StringFieldUpdateOperationsInput | string
|
|
21689
22036
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22037
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21690
22038
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21691
22039
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21692
22040
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21693
22041
|
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
22042
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
22043
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
22044
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
22045
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
21694
22046
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
21695
22047
|
}
|
|
21696
22048
|
|
|
21697
22049
|
export type WorkspaceUncheckedUpdateInput = {
|
|
21698
22050
|
id?: StringFieldUpdateOperationsInput | string
|
|
21699
22051
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
22052
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22053
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21700
22054
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
21701
22055
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21702
22056
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21703
22057
|
status?: StringFieldUpdateOperationsInput | string
|
|
21704
22058
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22059
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21705
22060
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21706
22061
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21707
22062
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22063
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
22064
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
21708
22065
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
21709
22066
|
}
|
|
21710
22067
|
|
|
21711
22068
|
export type WorkspaceCreateManyInput = {
|
|
21712
22069
|
id?: string
|
|
21713
22070
|
taskId: string
|
|
22071
|
+
parentWorkspaceId?: string | null
|
|
22072
|
+
ownerMemberId?: string | null
|
|
21714
22073
|
branchName: string
|
|
21715
22074
|
baseBranch?: string | null
|
|
21716
22075
|
worktreePath: string
|
|
21717
22076
|
status?: string
|
|
21718
22077
|
commitMessage?: string | null
|
|
22078
|
+
previewTarget?: string | null
|
|
21719
22079
|
hibernatedAt?: Date | string | null
|
|
21720
22080
|
createdAt?: Date | string
|
|
21721
22081
|
updatedAt?: Date | string
|
|
@@ -21728,6 +22088,7 @@ export namespace Prisma {
|
|
|
21728
22088
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21729
22089
|
status?: StringFieldUpdateOperationsInput | string
|
|
21730
22090
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22091
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21731
22092
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21732
22093
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21733
22094
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21736,11 +22097,14 @@ export namespace Prisma {
|
|
|
21736
22097
|
export type WorkspaceUncheckedUpdateManyInput = {
|
|
21737
22098
|
id?: StringFieldUpdateOperationsInput | string
|
|
21738
22099
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
22100
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22101
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21739
22102
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
21740
22103
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21741
22104
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21742
22105
|
status?: StringFieldUpdateOperationsInput | string
|
|
21743
22106
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22107
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21744
22108
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21745
22109
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21746
22110
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -22432,6 +22796,7 @@ export namespace Prisma {
|
|
|
22432
22796
|
workspacePolicy?: SortOrder
|
|
22433
22797
|
triggerPolicy?: SortOrder
|
|
22434
22798
|
sessionPolicy?: SortOrder
|
|
22799
|
+
queueManagementPolicy?: SortOrder
|
|
22435
22800
|
avatar?: SortOrder
|
|
22436
22801
|
createdAt?: SortOrder
|
|
22437
22802
|
updatedAt?: SortOrder
|
|
@@ -22447,6 +22812,7 @@ export namespace Prisma {
|
|
|
22447
22812
|
workspacePolicy?: SortOrder
|
|
22448
22813
|
triggerPolicy?: SortOrder
|
|
22449
22814
|
sessionPolicy?: SortOrder
|
|
22815
|
+
queueManagementPolicy?: SortOrder
|
|
22450
22816
|
avatar?: SortOrder
|
|
22451
22817
|
createdAt?: SortOrder
|
|
22452
22818
|
updatedAt?: SortOrder
|
|
@@ -22462,6 +22828,7 @@ export namespace Prisma {
|
|
|
22462
22828
|
workspacePolicy?: SortOrder
|
|
22463
22829
|
triggerPolicy?: SortOrder
|
|
22464
22830
|
sessionPolicy?: SortOrder
|
|
22831
|
+
queueManagementPolicy?: SortOrder
|
|
22465
22832
|
avatar?: SortOrder
|
|
22466
22833
|
createdAt?: SortOrder
|
|
22467
22834
|
updatedAt?: SortOrder
|
|
@@ -22537,6 +22904,11 @@ export namespace Prisma {
|
|
|
22537
22904
|
isNot?: TaskWhereInput
|
|
22538
22905
|
}
|
|
22539
22906
|
|
|
22907
|
+
export type WorkspaceNullableRelationFilter = {
|
|
22908
|
+
is?: WorkspaceWhereInput | null
|
|
22909
|
+
isNot?: WorkspaceWhereInput | null
|
|
22910
|
+
}
|
|
22911
|
+
|
|
22540
22912
|
export type TeamMemberListRelationFilter = {
|
|
22541
22913
|
every?: TeamMemberWhereInput
|
|
22542
22914
|
some?: TeamMemberWhereInput
|
|
@@ -22580,6 +22952,7 @@ export namespace Prisma {
|
|
|
22580
22952
|
export type TeamRunCountOrderByAggregateInput = {
|
|
22581
22953
|
id?: SortOrder
|
|
22582
22954
|
taskId?: SortOrder
|
|
22955
|
+
mainWorkspaceId?: SortOrder
|
|
22583
22956
|
mode?: SortOrder
|
|
22584
22957
|
reviewReason?: SortOrder
|
|
22585
22958
|
createdAt?: SortOrder
|
|
@@ -22589,6 +22962,7 @@ export namespace Prisma {
|
|
|
22589
22962
|
export type TeamRunMaxOrderByAggregateInput = {
|
|
22590
22963
|
id?: SortOrder
|
|
22591
22964
|
taskId?: SortOrder
|
|
22965
|
+
mainWorkspaceId?: SortOrder
|
|
22592
22966
|
mode?: SortOrder
|
|
22593
22967
|
reviewReason?: SortOrder
|
|
22594
22968
|
createdAt?: SortOrder
|
|
@@ -22598,6 +22972,7 @@ export namespace Prisma {
|
|
|
22598
22972
|
export type TeamRunMinOrderByAggregateInput = {
|
|
22599
22973
|
id?: SortOrder
|
|
22600
22974
|
taskId?: SortOrder
|
|
22975
|
+
mainWorkspaceId?: SortOrder
|
|
22601
22976
|
mode?: SortOrder
|
|
22602
22977
|
reviewReason?: SortOrder
|
|
22603
22978
|
createdAt?: SortOrder
|
|
@@ -22621,6 +22996,7 @@ export namespace Prisma {
|
|
|
22621
22996
|
workspacePolicy?: SortOrder
|
|
22622
22997
|
triggerPolicy?: SortOrder
|
|
22623
22998
|
sessionPolicy?: SortOrder
|
|
22999
|
+
queueManagementPolicy?: SortOrder
|
|
22624
23000
|
avatar?: SortOrder
|
|
22625
23001
|
status?: SortOrder
|
|
22626
23002
|
createdAt?: SortOrder
|
|
@@ -22639,6 +23015,7 @@ export namespace Prisma {
|
|
|
22639
23015
|
workspacePolicy?: SortOrder
|
|
22640
23016
|
triggerPolicy?: SortOrder
|
|
22641
23017
|
sessionPolicy?: SortOrder
|
|
23018
|
+
queueManagementPolicy?: SortOrder
|
|
22642
23019
|
avatar?: SortOrder
|
|
22643
23020
|
status?: SortOrder
|
|
22644
23021
|
createdAt?: SortOrder
|
|
@@ -22657,6 +23034,7 @@ export namespace Prisma {
|
|
|
22657
23034
|
workspacePolicy?: SortOrder
|
|
22658
23035
|
triggerPolicy?: SortOrder
|
|
22659
23036
|
sessionPolicy?: SortOrder
|
|
23037
|
+
queueManagementPolicy?: SortOrder
|
|
22660
23038
|
avatar?: SortOrder
|
|
22661
23039
|
status?: SortOrder
|
|
22662
23040
|
createdAt?: SortOrder
|
|
@@ -22816,24 +23194,47 @@ export namespace Prisma {
|
|
|
22816
23194
|
roomReplyReminderCount?: SortOrder
|
|
22817
23195
|
}
|
|
22818
23196
|
|
|
23197
|
+
export type TeamMemberNullableRelationFilter = {
|
|
23198
|
+
is?: TeamMemberWhereInput | null
|
|
23199
|
+
isNot?: TeamMemberWhereInput | null
|
|
23200
|
+
}
|
|
23201
|
+
|
|
23202
|
+
export type TeamRunListRelationFilter = {
|
|
23203
|
+
every?: TeamRunWhereInput
|
|
23204
|
+
some?: TeamRunWhereInput
|
|
23205
|
+
none?: TeamRunWhereInput
|
|
23206
|
+
}
|
|
23207
|
+
|
|
22819
23208
|
export type SessionListRelationFilter = {
|
|
22820
23209
|
every?: SessionWhereInput
|
|
22821
23210
|
some?: SessionWhereInput
|
|
22822
23211
|
none?: SessionWhereInput
|
|
22823
23212
|
}
|
|
22824
23213
|
|
|
23214
|
+
export type TeamRunOrderByRelationAggregateInput = {
|
|
23215
|
+
_count?: SortOrder
|
|
23216
|
+
}
|
|
23217
|
+
|
|
22825
23218
|
export type SessionOrderByRelationAggregateInput = {
|
|
22826
23219
|
_count?: SortOrder
|
|
22827
23220
|
}
|
|
22828
23221
|
|
|
23222
|
+
export type WorkspaceParentWorkspaceIdOwnerMemberIdCompoundUniqueInput = {
|
|
23223
|
+
parentWorkspaceId: string
|
|
23224
|
+
ownerMemberId: string
|
|
23225
|
+
}
|
|
23226
|
+
|
|
22829
23227
|
export type WorkspaceCountOrderByAggregateInput = {
|
|
22830
23228
|
id?: SortOrder
|
|
22831
23229
|
taskId?: SortOrder
|
|
23230
|
+
parentWorkspaceId?: SortOrder
|
|
23231
|
+
ownerMemberId?: SortOrder
|
|
22832
23232
|
branchName?: SortOrder
|
|
22833
23233
|
baseBranch?: SortOrder
|
|
22834
23234
|
worktreePath?: SortOrder
|
|
22835
23235
|
status?: SortOrder
|
|
22836
23236
|
commitMessage?: SortOrder
|
|
23237
|
+
previewTarget?: SortOrder
|
|
22837
23238
|
hibernatedAt?: SortOrder
|
|
22838
23239
|
createdAt?: SortOrder
|
|
22839
23240
|
updatedAt?: SortOrder
|
|
@@ -22842,11 +23243,14 @@ export namespace Prisma {
|
|
|
22842
23243
|
export type WorkspaceMaxOrderByAggregateInput = {
|
|
22843
23244
|
id?: SortOrder
|
|
22844
23245
|
taskId?: SortOrder
|
|
23246
|
+
parentWorkspaceId?: SortOrder
|
|
23247
|
+
ownerMemberId?: SortOrder
|
|
22845
23248
|
branchName?: SortOrder
|
|
22846
23249
|
baseBranch?: SortOrder
|
|
22847
23250
|
worktreePath?: SortOrder
|
|
22848
23251
|
status?: SortOrder
|
|
22849
23252
|
commitMessage?: SortOrder
|
|
23253
|
+
previewTarget?: SortOrder
|
|
22850
23254
|
hibernatedAt?: SortOrder
|
|
22851
23255
|
createdAt?: SortOrder
|
|
22852
23256
|
updatedAt?: SortOrder
|
|
@@ -22855,11 +23259,14 @@ export namespace Prisma {
|
|
|
22855
23259
|
export type WorkspaceMinOrderByAggregateInput = {
|
|
22856
23260
|
id?: SortOrder
|
|
22857
23261
|
taskId?: SortOrder
|
|
23262
|
+
parentWorkspaceId?: SortOrder
|
|
23263
|
+
ownerMemberId?: SortOrder
|
|
22858
23264
|
branchName?: SortOrder
|
|
22859
23265
|
baseBranch?: SortOrder
|
|
22860
23266
|
worktreePath?: SortOrder
|
|
22861
23267
|
status?: SortOrder
|
|
22862
23268
|
commitMessage?: SortOrder
|
|
23269
|
+
previewTarget?: SortOrder
|
|
22863
23270
|
hibernatedAt?: SortOrder
|
|
22864
23271
|
createdAt?: SortOrder
|
|
22865
23272
|
updatedAt?: SortOrder
|
|
@@ -23320,6 +23727,12 @@ export namespace Prisma {
|
|
|
23320
23727
|
connect?: TaskWhereUniqueInput
|
|
23321
23728
|
}
|
|
23322
23729
|
|
|
23730
|
+
export type WorkspaceCreateNestedOneWithoutMainForTeamRunsInput = {
|
|
23731
|
+
create?: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
23732
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutMainForTeamRunsInput
|
|
23733
|
+
connect?: WorkspaceWhereUniqueInput
|
|
23734
|
+
}
|
|
23735
|
+
|
|
23323
23736
|
export type TeamMemberCreateNestedManyWithoutTeamRunInput = {
|
|
23324
23737
|
create?: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput> | TeamMemberCreateWithoutTeamRunInput[] | TeamMemberUncheckedCreateWithoutTeamRunInput[]
|
|
23325
23738
|
connectOrCreate?: TeamMemberCreateOrConnectWithoutTeamRunInput | TeamMemberCreateOrConnectWithoutTeamRunInput[]
|
|
@@ -23384,6 +23797,16 @@ export namespace Prisma {
|
|
|
23384
23797
|
update?: XOR<XOR<TaskUpdateToOneWithWhereWithoutTeamRunInput, TaskUpdateWithoutTeamRunInput>, TaskUncheckedUpdateWithoutTeamRunInput>
|
|
23385
23798
|
}
|
|
23386
23799
|
|
|
23800
|
+
export type WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput = {
|
|
23801
|
+
create?: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
23802
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutMainForTeamRunsInput
|
|
23803
|
+
upsert?: WorkspaceUpsertWithoutMainForTeamRunsInput
|
|
23804
|
+
disconnect?: WorkspaceWhereInput | boolean
|
|
23805
|
+
delete?: WorkspaceWhereInput | boolean
|
|
23806
|
+
connect?: WorkspaceWhereUniqueInput
|
|
23807
|
+
update?: XOR<XOR<WorkspaceUpdateToOneWithWhereWithoutMainForTeamRunsInput, WorkspaceUpdateWithoutMainForTeamRunsInput>, WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput>
|
|
23808
|
+
}
|
|
23809
|
+
|
|
23387
23810
|
export type TeamMemberUpdateManyWithoutTeamRunNestedInput = {
|
|
23388
23811
|
create?: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput> | TeamMemberCreateWithoutTeamRunInput[] | TeamMemberUncheckedCreateWithoutTeamRunInput[]
|
|
23389
23812
|
connectOrCreate?: TeamMemberCreateOrConnectWithoutTeamRunInput | TeamMemberCreateOrConnectWithoutTeamRunInput[]
|
|
@@ -23502,6 +23925,20 @@ export namespace Prisma {
|
|
|
23502
23925
|
connect?: TeamRunWhereUniqueInput
|
|
23503
23926
|
}
|
|
23504
23927
|
|
|
23928
|
+
export type WorkspaceCreateNestedManyWithoutOwnerMemberInput = {
|
|
23929
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23930
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23931
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23932
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23933
|
+
}
|
|
23934
|
+
|
|
23935
|
+
export type WorkspaceUncheckedCreateNestedManyWithoutOwnerMemberInput = {
|
|
23936
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23937
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23938
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23939
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23940
|
+
}
|
|
23941
|
+
|
|
23505
23942
|
export type TeamRunUpdateOneRequiredWithoutMembersNestedInput = {
|
|
23506
23943
|
create?: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
23507
23944
|
connectOrCreate?: TeamRunCreateOrConnectWithoutMembersInput
|
|
@@ -23510,6 +23947,34 @@ export namespace Prisma {
|
|
|
23510
23947
|
update?: XOR<XOR<TeamRunUpdateToOneWithWhereWithoutMembersInput, TeamRunUpdateWithoutMembersInput>, TeamRunUncheckedUpdateWithoutMembersInput>
|
|
23511
23948
|
}
|
|
23512
23949
|
|
|
23950
|
+
export type WorkspaceUpdateManyWithoutOwnerMemberNestedInput = {
|
|
23951
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23952
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23953
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23954
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23955
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23956
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23957
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23958
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23959
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23960
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput | WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput[]
|
|
23961
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
23962
|
+
}
|
|
23963
|
+
|
|
23964
|
+
export type WorkspaceUncheckedUpdateManyWithoutOwnerMemberNestedInput = {
|
|
23965
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23966
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23967
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23968
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23969
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23970
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23971
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23972
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23973
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23974
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput | WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput[]
|
|
23975
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
23976
|
+
}
|
|
23977
|
+
|
|
23513
23978
|
export type TeamRunCreateNestedOneWithoutMessagesInput = {
|
|
23514
23979
|
create?: XOR<TeamRunCreateWithoutMessagesInput, TeamRunUncheckedCreateWithoutMessagesInput>
|
|
23515
23980
|
connectOrCreate?: TeamRunCreateOrConnectWithoutMessagesInput
|
|
@@ -23562,6 +24027,32 @@ export namespace Prisma {
|
|
|
23562
24027
|
connect?: TaskWhereUniqueInput
|
|
23563
24028
|
}
|
|
23564
24029
|
|
|
24030
|
+
export type WorkspaceCreateNestedOneWithoutChildWorkspacesInput = {
|
|
24031
|
+
create?: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
24032
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutChildWorkspacesInput
|
|
24033
|
+
connect?: WorkspaceWhereUniqueInput
|
|
24034
|
+
}
|
|
24035
|
+
|
|
24036
|
+
export type WorkspaceCreateNestedManyWithoutParentWorkspaceInput = {
|
|
24037
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24038
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24039
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24040
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24041
|
+
}
|
|
24042
|
+
|
|
24043
|
+
export type TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput = {
|
|
24044
|
+
create?: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
24045
|
+
connectOrCreate?: TeamMemberCreateOrConnectWithoutOwnedWorkspacesInput
|
|
24046
|
+
connect?: TeamMemberWhereUniqueInput
|
|
24047
|
+
}
|
|
24048
|
+
|
|
24049
|
+
export type TeamRunCreateNestedManyWithoutMainWorkspaceInput = {
|
|
24050
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24051
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24052
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24053
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24054
|
+
}
|
|
24055
|
+
|
|
23565
24056
|
export type SessionCreateNestedManyWithoutWorkspaceInput = {
|
|
23566
24057
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23567
24058
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -23569,6 +24060,20 @@ export namespace Prisma {
|
|
|
23569
24060
|
connect?: SessionWhereUniqueInput | SessionWhereUniqueInput[]
|
|
23570
24061
|
}
|
|
23571
24062
|
|
|
24063
|
+
export type WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput = {
|
|
24064
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24065
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24066
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24067
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24068
|
+
}
|
|
24069
|
+
|
|
24070
|
+
export type TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput = {
|
|
24071
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24072
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24073
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24074
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24075
|
+
}
|
|
24076
|
+
|
|
23572
24077
|
export type SessionUncheckedCreateNestedManyWithoutWorkspaceInput = {
|
|
23573
24078
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23574
24079
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -23584,6 +24089,54 @@ export namespace Prisma {
|
|
|
23584
24089
|
update?: XOR<XOR<TaskUpdateToOneWithWhereWithoutWorkspacesInput, TaskUpdateWithoutWorkspacesInput>, TaskUncheckedUpdateWithoutWorkspacesInput>
|
|
23585
24090
|
}
|
|
23586
24091
|
|
|
24092
|
+
export type WorkspaceUpdateOneWithoutChildWorkspacesNestedInput = {
|
|
24093
|
+
create?: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
24094
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutChildWorkspacesInput
|
|
24095
|
+
upsert?: WorkspaceUpsertWithoutChildWorkspacesInput
|
|
24096
|
+
disconnect?: WorkspaceWhereInput | boolean
|
|
24097
|
+
delete?: WorkspaceWhereInput | boolean
|
|
24098
|
+
connect?: WorkspaceWhereUniqueInput
|
|
24099
|
+
update?: XOR<XOR<WorkspaceUpdateToOneWithWhereWithoutChildWorkspacesInput, WorkspaceUpdateWithoutChildWorkspacesInput>, WorkspaceUncheckedUpdateWithoutChildWorkspacesInput>
|
|
24100
|
+
}
|
|
24101
|
+
|
|
24102
|
+
export type WorkspaceUpdateManyWithoutParentWorkspaceNestedInput = {
|
|
24103
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24104
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24105
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24106
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24107
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24108
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24109
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24110
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24111
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24112
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput | WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput[]
|
|
24113
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
24114
|
+
}
|
|
24115
|
+
|
|
24116
|
+
export type TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput = {
|
|
24117
|
+
create?: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
24118
|
+
connectOrCreate?: TeamMemberCreateOrConnectWithoutOwnedWorkspacesInput
|
|
24119
|
+
upsert?: TeamMemberUpsertWithoutOwnedWorkspacesInput
|
|
24120
|
+
disconnect?: TeamMemberWhereInput | boolean
|
|
24121
|
+
delete?: TeamMemberWhereInput | boolean
|
|
24122
|
+
connect?: TeamMemberWhereUniqueInput
|
|
24123
|
+
update?: XOR<XOR<TeamMemberUpdateToOneWithWhereWithoutOwnedWorkspacesInput, TeamMemberUpdateWithoutOwnedWorkspacesInput>, TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput>
|
|
24124
|
+
}
|
|
24125
|
+
|
|
24126
|
+
export type TeamRunUpdateManyWithoutMainWorkspaceNestedInput = {
|
|
24127
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24128
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24129
|
+
upsert?: TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24130
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24131
|
+
set?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24132
|
+
disconnect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24133
|
+
delete?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24134
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24135
|
+
update?: TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24136
|
+
updateMany?: TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput | TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput[]
|
|
24137
|
+
deleteMany?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
24138
|
+
}
|
|
24139
|
+
|
|
23587
24140
|
export type SessionUpdateManyWithoutWorkspaceNestedInput = {
|
|
23588
24141
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23589
24142
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -23598,6 +24151,34 @@ export namespace Prisma {
|
|
|
23598
24151
|
deleteMany?: SessionScalarWhereInput | SessionScalarWhereInput[]
|
|
23599
24152
|
}
|
|
23600
24153
|
|
|
24154
|
+
export type WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput = {
|
|
24155
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24156
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24157
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24158
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24159
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24160
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24161
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24162
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24163
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24164
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput | WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput[]
|
|
24165
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
24166
|
+
}
|
|
24167
|
+
|
|
24168
|
+
export type TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput = {
|
|
24169
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24170
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24171
|
+
upsert?: TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24172
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24173
|
+
set?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24174
|
+
disconnect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24175
|
+
delete?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24176
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24177
|
+
update?: TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24178
|
+
updateMany?: TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput | TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput[]
|
|
24179
|
+
deleteMany?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
24180
|
+
}
|
|
24181
|
+
|
|
23601
24182
|
export type SessionUncheckedUpdateManyWithoutWorkspaceNestedInput = {
|
|
23602
24183
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23603
24184
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -24001,22 +24582,32 @@ export namespace Prisma {
|
|
|
24001
24582
|
worktreePath: string
|
|
24002
24583
|
status?: string
|
|
24003
24584
|
commitMessage?: string | null
|
|
24585
|
+
previewTarget?: string | null
|
|
24004
24586
|
hibernatedAt?: Date | string | null
|
|
24005
24587
|
createdAt?: Date | string
|
|
24006
24588
|
updatedAt?: Date | string
|
|
24589
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
24590
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
24591
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
24592
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
24007
24593
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
24008
24594
|
}
|
|
24009
24595
|
|
|
24010
24596
|
export type WorkspaceUncheckedCreateWithoutTaskInput = {
|
|
24011
24597
|
id?: string
|
|
24598
|
+
parentWorkspaceId?: string | null
|
|
24599
|
+
ownerMemberId?: string | null
|
|
24012
24600
|
branchName: string
|
|
24013
24601
|
baseBranch?: string | null
|
|
24014
24602
|
worktreePath: string
|
|
24015
24603
|
status?: string
|
|
24016
24604
|
commitMessage?: string | null
|
|
24605
|
+
previewTarget?: string | null
|
|
24017
24606
|
hibernatedAt?: Date | string | null
|
|
24018
24607
|
createdAt?: Date | string
|
|
24019
24608
|
updatedAt?: Date | string
|
|
24609
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
24610
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
24020
24611
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
24021
24612
|
}
|
|
24022
24613
|
|
|
@@ -24035,6 +24626,7 @@ export namespace Prisma {
|
|
|
24035
24626
|
reviewReason?: string | null
|
|
24036
24627
|
createdAt?: Date | string
|
|
24037
24628
|
updatedAt?: Date | string
|
|
24629
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24038
24630
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24039
24631
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24040
24632
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
@@ -24043,6 +24635,7 @@ export namespace Prisma {
|
|
|
24043
24635
|
|
|
24044
24636
|
export type TeamRunUncheckedCreateWithoutTaskInput = {
|
|
24045
24637
|
id?: string
|
|
24638
|
+
mainWorkspaceId?: string | null
|
|
24046
24639
|
mode: string
|
|
24047
24640
|
reviewReason?: string | null
|
|
24048
24641
|
createdAt?: Date | string
|
|
@@ -24123,11 +24716,14 @@ export namespace Prisma {
|
|
|
24123
24716
|
NOT?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
24124
24717
|
id?: StringFilter<"Workspace"> | string
|
|
24125
24718
|
taskId?: StringFilter<"Workspace"> | string
|
|
24719
|
+
parentWorkspaceId?: StringNullableFilter<"Workspace"> | string | null
|
|
24720
|
+
ownerMemberId?: StringNullableFilter<"Workspace"> | string | null
|
|
24126
24721
|
branchName?: StringFilter<"Workspace"> | string
|
|
24127
24722
|
baseBranch?: StringNullableFilter<"Workspace"> | string | null
|
|
24128
24723
|
worktreePath?: StringFilter<"Workspace"> | string
|
|
24129
24724
|
status?: StringFilter<"Workspace"> | string
|
|
24130
24725
|
commitMessage?: StringNullableFilter<"Workspace"> | string | null
|
|
24726
|
+
previewTarget?: StringNullableFilter<"Workspace"> | string | null
|
|
24131
24727
|
hibernatedAt?: DateTimeNullableFilter<"Workspace"> | Date | string | null
|
|
24132
24728
|
createdAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
24133
24729
|
updatedAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
@@ -24150,6 +24746,7 @@ export namespace Prisma {
|
|
|
24150
24746
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24151
24747
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24152
24748
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24749
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24153
24750
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24154
24751
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24155
24752
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24158,6 +24755,7 @@ export namespace Prisma {
|
|
|
24158
24755
|
|
|
24159
24756
|
export type TeamRunUncheckedUpdateWithoutTaskInput = {
|
|
24160
24757
|
id?: StringFieldUpdateOperationsInput | string
|
|
24758
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24161
24759
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24162
24760
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24163
24761
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24290,6 +24888,47 @@ export namespace Prisma {
|
|
|
24290
24888
|
create: XOR<TaskCreateWithoutTeamRunInput, TaskUncheckedCreateWithoutTeamRunInput>
|
|
24291
24889
|
}
|
|
24292
24890
|
|
|
24891
|
+
export type WorkspaceCreateWithoutMainForTeamRunsInput = {
|
|
24892
|
+
id?: string
|
|
24893
|
+
branchName: string
|
|
24894
|
+
baseBranch?: string | null
|
|
24895
|
+
worktreePath: string
|
|
24896
|
+
status?: string
|
|
24897
|
+
commitMessage?: string | null
|
|
24898
|
+
previewTarget?: string | null
|
|
24899
|
+
hibernatedAt?: Date | string | null
|
|
24900
|
+
createdAt?: Date | string
|
|
24901
|
+
updatedAt?: Date | string
|
|
24902
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
24903
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
24904
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
24905
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
24906
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
24907
|
+
}
|
|
24908
|
+
|
|
24909
|
+
export type WorkspaceUncheckedCreateWithoutMainForTeamRunsInput = {
|
|
24910
|
+
id?: string
|
|
24911
|
+
taskId: string
|
|
24912
|
+
parentWorkspaceId?: string | null
|
|
24913
|
+
ownerMemberId?: string | null
|
|
24914
|
+
branchName: string
|
|
24915
|
+
baseBranch?: string | null
|
|
24916
|
+
worktreePath: string
|
|
24917
|
+
status?: string
|
|
24918
|
+
commitMessage?: string | null
|
|
24919
|
+
previewTarget?: string | null
|
|
24920
|
+
hibernatedAt?: Date | string | null
|
|
24921
|
+
createdAt?: Date | string
|
|
24922
|
+
updatedAt?: Date | string
|
|
24923
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
24924
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
24925
|
+
}
|
|
24926
|
+
|
|
24927
|
+
export type WorkspaceCreateOrConnectWithoutMainForTeamRunsInput = {
|
|
24928
|
+
where: WorkspaceWhereUniqueInput
|
|
24929
|
+
create: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
24930
|
+
}
|
|
24931
|
+
|
|
24293
24932
|
export type TeamMemberCreateWithoutTeamRunInput = {
|
|
24294
24933
|
id?: string
|
|
24295
24934
|
presetId?: string | null
|
|
@@ -24301,10 +24940,12 @@ export namespace Prisma {
|
|
|
24301
24940
|
workspacePolicy: string
|
|
24302
24941
|
triggerPolicy: string
|
|
24303
24942
|
sessionPolicy?: string
|
|
24943
|
+
queueManagementPolicy?: string
|
|
24304
24944
|
avatar?: string | null
|
|
24305
24945
|
status?: string
|
|
24306
24946
|
createdAt?: Date | string
|
|
24307
24947
|
updatedAt?: Date | string
|
|
24948
|
+
ownedWorkspaces?: WorkspaceCreateNestedManyWithoutOwnerMemberInput
|
|
24308
24949
|
}
|
|
24309
24950
|
|
|
24310
24951
|
export type TeamMemberUncheckedCreateWithoutTeamRunInput = {
|
|
@@ -24318,10 +24959,12 @@ export namespace Prisma {
|
|
|
24318
24959
|
workspacePolicy: string
|
|
24319
24960
|
triggerPolicy: string
|
|
24320
24961
|
sessionPolicy?: string
|
|
24962
|
+
queueManagementPolicy?: string
|
|
24321
24963
|
avatar?: string | null
|
|
24322
24964
|
status?: string
|
|
24323
24965
|
createdAt?: Date | string
|
|
24324
24966
|
updatedAt?: Date | string
|
|
24967
|
+
ownedWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutOwnerMemberInput
|
|
24325
24968
|
}
|
|
24326
24969
|
|
|
24327
24970
|
export type TeamMemberCreateOrConnectWithoutTeamRunInput = {
|
|
@@ -24479,25 +25122,72 @@ export namespace Prisma {
|
|
|
24479
25122
|
workspaces?: WorkspaceUncheckedUpdateManyWithoutTaskNestedInput
|
|
24480
25123
|
}
|
|
24481
25124
|
|
|
24482
|
-
export type
|
|
24483
|
-
|
|
24484
|
-
|
|
24485
|
-
|
|
25125
|
+
export type WorkspaceUpsertWithoutMainForTeamRunsInput = {
|
|
25126
|
+
update: XOR<WorkspaceUpdateWithoutMainForTeamRunsInput, WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput>
|
|
25127
|
+
create: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
25128
|
+
where?: WorkspaceWhereInput
|
|
24486
25129
|
}
|
|
24487
25130
|
|
|
24488
|
-
export type
|
|
24489
|
-
where
|
|
24490
|
-
data: XOR<
|
|
25131
|
+
export type WorkspaceUpdateToOneWithWhereWithoutMainForTeamRunsInput = {
|
|
25132
|
+
where?: WorkspaceWhereInput
|
|
25133
|
+
data: XOR<WorkspaceUpdateWithoutMainForTeamRunsInput, WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput>
|
|
24491
25134
|
}
|
|
24492
25135
|
|
|
24493
|
-
export type
|
|
24494
|
-
|
|
24495
|
-
|
|
25136
|
+
export type WorkspaceUpdateWithoutMainForTeamRunsInput = {
|
|
25137
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25138
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25139
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25140
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25141
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25142
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25143
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25144
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25145
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25146
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25147
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
25148
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
25149
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
25150
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
25151
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
24496
25152
|
}
|
|
24497
25153
|
|
|
24498
|
-
export type
|
|
24499
|
-
|
|
24500
|
-
|
|
25154
|
+
export type WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput = {
|
|
25155
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25156
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
25157
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25158
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25159
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25160
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25161
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25162
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25163
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25164
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25165
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25166
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25167
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25168
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
25169
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25170
|
+
}
|
|
25171
|
+
|
|
25172
|
+
export type TeamMemberUpsertWithWhereUniqueWithoutTeamRunInput = {
|
|
25173
|
+
where: TeamMemberWhereUniqueInput
|
|
25174
|
+
update: XOR<TeamMemberUpdateWithoutTeamRunInput, TeamMemberUncheckedUpdateWithoutTeamRunInput>
|
|
25175
|
+
create: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput>
|
|
25176
|
+
}
|
|
25177
|
+
|
|
25178
|
+
export type TeamMemberUpdateWithWhereUniqueWithoutTeamRunInput = {
|
|
25179
|
+
where: TeamMemberWhereUniqueInput
|
|
25180
|
+
data: XOR<TeamMemberUpdateWithoutTeamRunInput, TeamMemberUncheckedUpdateWithoutTeamRunInput>
|
|
25181
|
+
}
|
|
25182
|
+
|
|
25183
|
+
export type TeamMemberUpdateManyWithWhereWithoutTeamRunInput = {
|
|
25184
|
+
where: TeamMemberScalarWhereInput
|
|
25185
|
+
data: XOR<TeamMemberUpdateManyMutationInput, TeamMemberUncheckedUpdateManyWithoutTeamRunInput>
|
|
25186
|
+
}
|
|
25187
|
+
|
|
25188
|
+
export type TeamMemberScalarWhereInput = {
|
|
25189
|
+
AND?: TeamMemberScalarWhereInput | TeamMemberScalarWhereInput[]
|
|
25190
|
+
OR?: TeamMemberScalarWhereInput[]
|
|
24501
25191
|
NOT?: TeamMemberScalarWhereInput | TeamMemberScalarWhereInput[]
|
|
24502
25192
|
id?: StringFilter<"TeamMember"> | string
|
|
24503
25193
|
teamRunId?: StringFilter<"TeamMember"> | string
|
|
@@ -24510,6 +25200,7 @@ export namespace Prisma {
|
|
|
24510
25200
|
workspacePolicy?: StringFilter<"TeamMember"> | string
|
|
24511
25201
|
triggerPolicy?: StringFilter<"TeamMember"> | string
|
|
24512
25202
|
sessionPolicy?: StringFilter<"TeamMember"> | string
|
|
25203
|
+
queueManagementPolicy?: StringFilter<"TeamMember"> | string
|
|
24513
25204
|
avatar?: StringNullableFilter<"TeamMember"> | string | null
|
|
24514
25205
|
status?: StringFilter<"TeamMember"> | string
|
|
24515
25206
|
createdAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
@@ -24624,6 +25315,7 @@ export namespace Prisma {
|
|
|
24624
25315
|
createdAt?: Date | string
|
|
24625
25316
|
updatedAt?: Date | string
|
|
24626
25317
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25318
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24627
25319
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24628
25320
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
24629
25321
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
@@ -24632,6 +25324,7 @@ export namespace Prisma {
|
|
|
24632
25324
|
export type TeamRunUncheckedCreateWithoutMembersInput = {
|
|
24633
25325
|
id?: string
|
|
24634
25326
|
taskId: string
|
|
25327
|
+
mainWorkspaceId?: string | null
|
|
24635
25328
|
mode: string
|
|
24636
25329
|
reviewReason?: string | null
|
|
24637
25330
|
createdAt?: Date | string
|
|
@@ -24646,6 +25339,51 @@ export namespace Prisma {
|
|
|
24646
25339
|
create: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
24647
25340
|
}
|
|
24648
25341
|
|
|
25342
|
+
export type WorkspaceCreateWithoutOwnerMemberInput = {
|
|
25343
|
+
id?: string
|
|
25344
|
+
branchName: string
|
|
25345
|
+
baseBranch?: string | null
|
|
25346
|
+
worktreePath: string
|
|
25347
|
+
status?: string
|
|
25348
|
+
commitMessage?: string | null
|
|
25349
|
+
previewTarget?: string | null
|
|
25350
|
+
hibernatedAt?: Date | string | null
|
|
25351
|
+
createdAt?: Date | string
|
|
25352
|
+
updatedAt?: Date | string
|
|
25353
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
25354
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
25355
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
25356
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25357
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
25358
|
+
}
|
|
25359
|
+
|
|
25360
|
+
export type WorkspaceUncheckedCreateWithoutOwnerMemberInput = {
|
|
25361
|
+
id?: string
|
|
25362
|
+
taskId: string
|
|
25363
|
+
parentWorkspaceId?: string | null
|
|
25364
|
+
branchName: string
|
|
25365
|
+
baseBranch?: string | null
|
|
25366
|
+
worktreePath: string
|
|
25367
|
+
status?: string
|
|
25368
|
+
commitMessage?: string | null
|
|
25369
|
+
previewTarget?: string | null
|
|
25370
|
+
hibernatedAt?: Date | string | null
|
|
25371
|
+
createdAt?: Date | string
|
|
25372
|
+
updatedAt?: Date | string
|
|
25373
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
25374
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25375
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25376
|
+
}
|
|
25377
|
+
|
|
25378
|
+
export type WorkspaceCreateOrConnectWithoutOwnerMemberInput = {
|
|
25379
|
+
where: WorkspaceWhereUniqueInput
|
|
25380
|
+
create: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput>
|
|
25381
|
+
}
|
|
25382
|
+
|
|
25383
|
+
export type WorkspaceCreateManyOwnerMemberInputEnvelope = {
|
|
25384
|
+
data: WorkspaceCreateManyOwnerMemberInput | WorkspaceCreateManyOwnerMemberInput[]
|
|
25385
|
+
}
|
|
25386
|
+
|
|
24649
25387
|
export type TeamRunUpsertWithoutMembersInput = {
|
|
24650
25388
|
update: XOR<TeamRunUpdateWithoutMembersInput, TeamRunUncheckedUpdateWithoutMembersInput>
|
|
24651
25389
|
create: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
@@ -24664,6 +25402,7 @@ export namespace Prisma {
|
|
|
24664
25402
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24665
25403
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24666
25404
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25405
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24667
25406
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24668
25407
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
24669
25408
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24672,6 +25411,7 @@ export namespace Prisma {
|
|
|
24672
25411
|
export type TeamRunUncheckedUpdateWithoutMembersInput = {
|
|
24673
25412
|
id?: StringFieldUpdateOperationsInput | string
|
|
24674
25413
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25414
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24675
25415
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24676
25416
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24677
25417
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24681,6 +25421,22 @@ export namespace Prisma {
|
|
|
24681
25421
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
24682
25422
|
}
|
|
24683
25423
|
|
|
25424
|
+
export type WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput = {
|
|
25425
|
+
where: WorkspaceWhereUniqueInput
|
|
25426
|
+
update: XOR<WorkspaceUpdateWithoutOwnerMemberInput, WorkspaceUncheckedUpdateWithoutOwnerMemberInput>
|
|
25427
|
+
create: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput>
|
|
25428
|
+
}
|
|
25429
|
+
|
|
25430
|
+
export type WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput = {
|
|
25431
|
+
where: WorkspaceWhereUniqueInput
|
|
25432
|
+
data: XOR<WorkspaceUpdateWithoutOwnerMemberInput, WorkspaceUncheckedUpdateWithoutOwnerMemberInput>
|
|
25433
|
+
}
|
|
25434
|
+
|
|
25435
|
+
export type WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput = {
|
|
25436
|
+
where: WorkspaceScalarWhereInput
|
|
25437
|
+
data: XOR<WorkspaceUpdateManyMutationInput, WorkspaceUncheckedUpdateManyWithoutOwnerMemberInput>
|
|
25438
|
+
}
|
|
25439
|
+
|
|
24684
25440
|
export type TeamRunCreateWithoutMessagesInput = {
|
|
24685
25441
|
id?: string
|
|
24686
25442
|
mode: string
|
|
@@ -24688,6 +25444,7 @@ export namespace Prisma {
|
|
|
24688
25444
|
createdAt?: Date | string
|
|
24689
25445
|
updatedAt?: Date | string
|
|
24690
25446
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25447
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24691
25448
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24692
25449
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
24693
25450
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
@@ -24696,6 +25453,7 @@ export namespace Prisma {
|
|
|
24696
25453
|
export type TeamRunUncheckedCreateWithoutMessagesInput = {
|
|
24697
25454
|
id?: string
|
|
24698
25455
|
taskId: string
|
|
25456
|
+
mainWorkspaceId?: string | null
|
|
24699
25457
|
mode: string
|
|
24700
25458
|
reviewReason?: string | null
|
|
24701
25459
|
createdAt?: Date | string
|
|
@@ -24728,6 +25486,7 @@ export namespace Prisma {
|
|
|
24728
25486
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24729
25487
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24730
25488
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25489
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24731
25490
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24732
25491
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
24733
25492
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24736,6 +25495,7 @@ export namespace Prisma {
|
|
|
24736
25495
|
export type TeamRunUncheckedUpdateWithoutMessagesInput = {
|
|
24737
25496
|
id?: StringFieldUpdateOperationsInput | string
|
|
24738
25497
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25498
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24739
25499
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24740
25500
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24741
25501
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24752,6 +25512,7 @@ export namespace Prisma {
|
|
|
24752
25512
|
createdAt?: Date | string
|
|
24753
25513
|
updatedAt?: Date | string
|
|
24754
25514
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25515
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24755
25516
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24756
25517
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24757
25518
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
@@ -24760,6 +25521,7 @@ export namespace Prisma {
|
|
|
24760
25521
|
export type TeamRunUncheckedCreateWithoutWorkRequestsInput = {
|
|
24761
25522
|
id?: string
|
|
24762
25523
|
taskId: string
|
|
25524
|
+
mainWorkspaceId?: string | null
|
|
24763
25525
|
mode: string
|
|
24764
25526
|
reviewReason?: string | null
|
|
24765
25527
|
createdAt?: Date | string
|
|
@@ -24792,6 +25554,7 @@ export namespace Prisma {
|
|
|
24792
25554
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24793
25555
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24794
25556
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25557
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24795
25558
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24796
25559
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24797
25560
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24800,6 +25563,7 @@ export namespace Prisma {
|
|
|
24800
25563
|
export type TeamRunUncheckedUpdateWithoutWorkRequestsInput = {
|
|
24801
25564
|
id?: StringFieldUpdateOperationsInput | string
|
|
24802
25565
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25566
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24803
25567
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24804
25568
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24805
25569
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24816,6 +25580,7 @@ export namespace Prisma {
|
|
|
24816
25580
|
createdAt?: Date | string
|
|
24817
25581
|
updatedAt?: Date | string
|
|
24818
25582
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25583
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24819
25584
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24820
25585
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24821
25586
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
@@ -24824,6 +25589,7 @@ export namespace Prisma {
|
|
|
24824
25589
|
export type TeamRunUncheckedCreateWithoutInvocationsInput = {
|
|
24825
25590
|
id?: string
|
|
24826
25591
|
taskId: string
|
|
25592
|
+
mainWorkspaceId?: string | null
|
|
24827
25593
|
mode: string
|
|
24828
25594
|
reviewReason?: string | null
|
|
24829
25595
|
createdAt?: Date | string
|
|
@@ -24856,6 +25622,7 @@ export namespace Prisma {
|
|
|
24856
25622
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24857
25623
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24858
25624
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25625
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24859
25626
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24860
25627
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24861
25628
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24864,6 +25631,7 @@ export namespace Prisma {
|
|
|
24864
25631
|
export type TeamRunUncheckedUpdateWithoutInvocationsInput = {
|
|
24865
25632
|
id?: StringFieldUpdateOperationsInput | string
|
|
24866
25633
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25634
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24867
25635
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24868
25636
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24869
25637
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24904,6 +25672,170 @@ export namespace Prisma {
|
|
|
24904
25672
|
create: XOR<TaskCreateWithoutWorkspacesInput, TaskUncheckedCreateWithoutWorkspacesInput>
|
|
24905
25673
|
}
|
|
24906
25674
|
|
|
25675
|
+
export type WorkspaceCreateWithoutChildWorkspacesInput = {
|
|
25676
|
+
id?: string
|
|
25677
|
+
branchName: string
|
|
25678
|
+
baseBranch?: string | null
|
|
25679
|
+
worktreePath: string
|
|
25680
|
+
status?: string
|
|
25681
|
+
commitMessage?: string | null
|
|
25682
|
+
previewTarget?: string | null
|
|
25683
|
+
hibernatedAt?: Date | string | null
|
|
25684
|
+
createdAt?: Date | string
|
|
25685
|
+
updatedAt?: Date | string
|
|
25686
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
25687
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
25688
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
25689
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25690
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
25691
|
+
}
|
|
25692
|
+
|
|
25693
|
+
export type WorkspaceUncheckedCreateWithoutChildWorkspacesInput = {
|
|
25694
|
+
id?: string
|
|
25695
|
+
taskId: string
|
|
25696
|
+
parentWorkspaceId?: string | null
|
|
25697
|
+
ownerMemberId?: string | null
|
|
25698
|
+
branchName: string
|
|
25699
|
+
baseBranch?: string | null
|
|
25700
|
+
worktreePath: string
|
|
25701
|
+
status?: string
|
|
25702
|
+
commitMessage?: string | null
|
|
25703
|
+
previewTarget?: string | null
|
|
25704
|
+
hibernatedAt?: Date | string | null
|
|
25705
|
+
createdAt?: Date | string
|
|
25706
|
+
updatedAt?: Date | string
|
|
25707
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25708
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25709
|
+
}
|
|
25710
|
+
|
|
25711
|
+
export type WorkspaceCreateOrConnectWithoutChildWorkspacesInput = {
|
|
25712
|
+
where: WorkspaceWhereUniqueInput
|
|
25713
|
+
create: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
25714
|
+
}
|
|
25715
|
+
|
|
25716
|
+
export type WorkspaceCreateWithoutParentWorkspaceInput = {
|
|
25717
|
+
id?: string
|
|
25718
|
+
branchName: string
|
|
25719
|
+
baseBranch?: string | null
|
|
25720
|
+
worktreePath: string
|
|
25721
|
+
status?: string
|
|
25722
|
+
commitMessage?: string | null
|
|
25723
|
+
previewTarget?: string | null
|
|
25724
|
+
hibernatedAt?: Date | string | null
|
|
25725
|
+
createdAt?: Date | string
|
|
25726
|
+
updatedAt?: Date | string
|
|
25727
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
25728
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
25729
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
25730
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25731
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
25732
|
+
}
|
|
25733
|
+
|
|
25734
|
+
export type WorkspaceUncheckedCreateWithoutParentWorkspaceInput = {
|
|
25735
|
+
id?: string
|
|
25736
|
+
taskId: string
|
|
25737
|
+
ownerMemberId?: string | null
|
|
25738
|
+
branchName: string
|
|
25739
|
+
baseBranch?: string | null
|
|
25740
|
+
worktreePath: string
|
|
25741
|
+
status?: string
|
|
25742
|
+
commitMessage?: string | null
|
|
25743
|
+
previewTarget?: string | null
|
|
25744
|
+
hibernatedAt?: Date | string | null
|
|
25745
|
+
createdAt?: Date | string
|
|
25746
|
+
updatedAt?: Date | string
|
|
25747
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
25748
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25749
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25750
|
+
}
|
|
25751
|
+
|
|
25752
|
+
export type WorkspaceCreateOrConnectWithoutParentWorkspaceInput = {
|
|
25753
|
+
where: WorkspaceWhereUniqueInput
|
|
25754
|
+
create: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput>
|
|
25755
|
+
}
|
|
25756
|
+
|
|
25757
|
+
export type WorkspaceCreateManyParentWorkspaceInputEnvelope = {
|
|
25758
|
+
data: WorkspaceCreateManyParentWorkspaceInput | WorkspaceCreateManyParentWorkspaceInput[]
|
|
25759
|
+
}
|
|
25760
|
+
|
|
25761
|
+
export type TeamMemberCreateWithoutOwnedWorkspacesInput = {
|
|
25762
|
+
id?: string
|
|
25763
|
+
presetId?: string | null
|
|
25764
|
+
name: string
|
|
25765
|
+
aliases: string
|
|
25766
|
+
providerId: string
|
|
25767
|
+
rolePrompt: string
|
|
25768
|
+
capabilities: string
|
|
25769
|
+
workspacePolicy: string
|
|
25770
|
+
triggerPolicy: string
|
|
25771
|
+
sessionPolicy?: string
|
|
25772
|
+
queueManagementPolicy?: string
|
|
25773
|
+
avatar?: string | null
|
|
25774
|
+
status?: string
|
|
25775
|
+
createdAt?: Date | string
|
|
25776
|
+
updatedAt?: Date | string
|
|
25777
|
+
teamRun: TeamRunCreateNestedOneWithoutMembersInput
|
|
25778
|
+
}
|
|
25779
|
+
|
|
25780
|
+
export type TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
25781
|
+
id?: string
|
|
25782
|
+
teamRunId: string
|
|
25783
|
+
presetId?: string | null
|
|
25784
|
+
name: string
|
|
25785
|
+
aliases: string
|
|
25786
|
+
providerId: string
|
|
25787
|
+
rolePrompt: string
|
|
25788
|
+
capabilities: string
|
|
25789
|
+
workspacePolicy: string
|
|
25790
|
+
triggerPolicy: string
|
|
25791
|
+
sessionPolicy?: string
|
|
25792
|
+
queueManagementPolicy?: string
|
|
25793
|
+
avatar?: string | null
|
|
25794
|
+
status?: string
|
|
25795
|
+
createdAt?: Date | string
|
|
25796
|
+
updatedAt?: Date | string
|
|
25797
|
+
}
|
|
25798
|
+
|
|
25799
|
+
export type TeamMemberCreateOrConnectWithoutOwnedWorkspacesInput = {
|
|
25800
|
+
where: TeamMemberWhereUniqueInput
|
|
25801
|
+
create: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
25802
|
+
}
|
|
25803
|
+
|
|
25804
|
+
export type TeamRunCreateWithoutMainWorkspaceInput = {
|
|
25805
|
+
id?: string
|
|
25806
|
+
mode: string
|
|
25807
|
+
reviewReason?: string | null
|
|
25808
|
+
createdAt?: Date | string
|
|
25809
|
+
updatedAt?: Date | string
|
|
25810
|
+
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25811
|
+
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
25812
|
+
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
25813
|
+
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
25814
|
+
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
25815
|
+
}
|
|
25816
|
+
|
|
25817
|
+
export type TeamRunUncheckedCreateWithoutMainWorkspaceInput = {
|
|
25818
|
+
id?: string
|
|
25819
|
+
taskId: string
|
|
25820
|
+
mode: string
|
|
25821
|
+
reviewReason?: string | null
|
|
25822
|
+
createdAt?: Date | string
|
|
25823
|
+
updatedAt?: Date | string
|
|
25824
|
+
members?: TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25825
|
+
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25826
|
+
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25827
|
+
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25828
|
+
}
|
|
25829
|
+
|
|
25830
|
+
export type TeamRunCreateOrConnectWithoutMainWorkspaceInput = {
|
|
25831
|
+
where: TeamRunWhereUniqueInput
|
|
25832
|
+
create: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput>
|
|
25833
|
+
}
|
|
25834
|
+
|
|
25835
|
+
export type TeamRunCreateManyMainWorkspaceInputEnvelope = {
|
|
25836
|
+
data: TeamRunCreateManyMainWorkspaceInput | TeamRunCreateManyMainWorkspaceInput[]
|
|
25837
|
+
}
|
|
25838
|
+
|
|
24907
25839
|
export type SessionCreateWithoutWorkspaceInput = {
|
|
24908
25840
|
id?: string
|
|
24909
25841
|
agentType: string
|
|
@@ -24980,6 +25912,147 @@ export namespace Prisma {
|
|
|
24980
25912
|
teamRun?: TeamRunUncheckedUpdateOneWithoutTaskNestedInput
|
|
24981
25913
|
}
|
|
24982
25914
|
|
|
25915
|
+
export type WorkspaceUpsertWithoutChildWorkspacesInput = {
|
|
25916
|
+
update: XOR<WorkspaceUpdateWithoutChildWorkspacesInput, WorkspaceUncheckedUpdateWithoutChildWorkspacesInput>
|
|
25917
|
+
create: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
25918
|
+
where?: WorkspaceWhereInput
|
|
25919
|
+
}
|
|
25920
|
+
|
|
25921
|
+
export type WorkspaceUpdateToOneWithWhereWithoutChildWorkspacesInput = {
|
|
25922
|
+
where?: WorkspaceWhereInput
|
|
25923
|
+
data: XOR<WorkspaceUpdateWithoutChildWorkspacesInput, WorkspaceUncheckedUpdateWithoutChildWorkspacesInput>
|
|
25924
|
+
}
|
|
25925
|
+
|
|
25926
|
+
export type WorkspaceUpdateWithoutChildWorkspacesInput = {
|
|
25927
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25928
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25929
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25930
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25931
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25932
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25933
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25934
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25935
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25936
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25937
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
25938
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
25939
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
25940
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25941
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
25942
|
+
}
|
|
25943
|
+
|
|
25944
|
+
export type WorkspaceUncheckedUpdateWithoutChildWorkspacesInput = {
|
|
25945
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25946
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
25947
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25948
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25949
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25950
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25951
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25952
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25953
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25954
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25955
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25956
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25957
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25958
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25959
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25960
|
+
}
|
|
25961
|
+
|
|
25962
|
+
export type WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput = {
|
|
25963
|
+
where: WorkspaceWhereUniqueInput
|
|
25964
|
+
update: XOR<WorkspaceUpdateWithoutParentWorkspaceInput, WorkspaceUncheckedUpdateWithoutParentWorkspaceInput>
|
|
25965
|
+
create: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput>
|
|
25966
|
+
}
|
|
25967
|
+
|
|
25968
|
+
export type WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput = {
|
|
25969
|
+
where: WorkspaceWhereUniqueInput
|
|
25970
|
+
data: XOR<WorkspaceUpdateWithoutParentWorkspaceInput, WorkspaceUncheckedUpdateWithoutParentWorkspaceInput>
|
|
25971
|
+
}
|
|
25972
|
+
|
|
25973
|
+
export type WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput = {
|
|
25974
|
+
where: WorkspaceScalarWhereInput
|
|
25975
|
+
data: XOR<WorkspaceUpdateManyMutationInput, WorkspaceUncheckedUpdateManyWithoutParentWorkspaceInput>
|
|
25976
|
+
}
|
|
25977
|
+
|
|
25978
|
+
export type TeamMemberUpsertWithoutOwnedWorkspacesInput = {
|
|
25979
|
+
update: XOR<TeamMemberUpdateWithoutOwnedWorkspacesInput, TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput>
|
|
25980
|
+
create: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
25981
|
+
where?: TeamMemberWhereInput
|
|
25982
|
+
}
|
|
25983
|
+
|
|
25984
|
+
export type TeamMemberUpdateToOneWithWhereWithoutOwnedWorkspacesInput = {
|
|
25985
|
+
where?: TeamMemberWhereInput
|
|
25986
|
+
data: XOR<TeamMemberUpdateWithoutOwnedWorkspacesInput, TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput>
|
|
25987
|
+
}
|
|
25988
|
+
|
|
25989
|
+
export type TeamMemberUpdateWithoutOwnedWorkspacesInput = {
|
|
25990
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25991
|
+
presetId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25992
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
25993
|
+
aliases?: StringFieldUpdateOperationsInput | string
|
|
25994
|
+
providerId?: StringFieldUpdateOperationsInput | string
|
|
25995
|
+
rolePrompt?: StringFieldUpdateOperationsInput | string
|
|
25996
|
+
capabilities?: StringFieldUpdateOperationsInput | string
|
|
25997
|
+
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
25998
|
+
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
25999
|
+
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
26000
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
26001
|
+
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26002
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26003
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26004
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26005
|
+
teamRun?: TeamRunUpdateOneRequiredWithoutMembersNestedInput
|
|
26006
|
+
}
|
|
26007
|
+
|
|
26008
|
+
export type TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
26009
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26010
|
+
teamRunId?: StringFieldUpdateOperationsInput | string
|
|
26011
|
+
presetId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26012
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
26013
|
+
aliases?: StringFieldUpdateOperationsInput | string
|
|
26014
|
+
providerId?: StringFieldUpdateOperationsInput | string
|
|
26015
|
+
rolePrompt?: StringFieldUpdateOperationsInput | string
|
|
26016
|
+
capabilities?: StringFieldUpdateOperationsInput | string
|
|
26017
|
+
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
26018
|
+
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
26019
|
+
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
26020
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
26021
|
+
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26022
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26023
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26024
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26025
|
+
}
|
|
26026
|
+
|
|
26027
|
+
export type TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput = {
|
|
26028
|
+
where: TeamRunWhereUniqueInput
|
|
26029
|
+
update: XOR<TeamRunUpdateWithoutMainWorkspaceInput, TeamRunUncheckedUpdateWithoutMainWorkspaceInput>
|
|
26030
|
+
create: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput>
|
|
26031
|
+
}
|
|
26032
|
+
|
|
26033
|
+
export type TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput = {
|
|
26034
|
+
where: TeamRunWhereUniqueInput
|
|
26035
|
+
data: XOR<TeamRunUpdateWithoutMainWorkspaceInput, TeamRunUncheckedUpdateWithoutMainWorkspaceInput>
|
|
26036
|
+
}
|
|
26037
|
+
|
|
26038
|
+
export type TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput = {
|
|
26039
|
+
where: TeamRunScalarWhereInput
|
|
26040
|
+
data: XOR<TeamRunUpdateManyMutationInput, TeamRunUncheckedUpdateManyWithoutMainWorkspaceInput>
|
|
26041
|
+
}
|
|
26042
|
+
|
|
26043
|
+
export type TeamRunScalarWhereInput = {
|
|
26044
|
+
AND?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
26045
|
+
OR?: TeamRunScalarWhereInput[]
|
|
26046
|
+
NOT?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
26047
|
+
id?: StringFilter<"TeamRun"> | string
|
|
26048
|
+
taskId?: StringFilter<"TeamRun"> | string
|
|
26049
|
+
mainWorkspaceId?: StringNullableFilter<"TeamRun"> | string | null
|
|
26050
|
+
mode?: StringFilter<"TeamRun"> | string
|
|
26051
|
+
reviewReason?: StringNullableFilter<"TeamRun"> | string | null
|
|
26052
|
+
createdAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
26053
|
+
updatedAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
26054
|
+
}
|
|
26055
|
+
|
|
24983
26056
|
export type SessionUpsertWithWhereUniqueWithoutWorkspaceInput = {
|
|
24984
26057
|
where: SessionWhereUniqueInput
|
|
24985
26058
|
update: XOR<SessionUpdateWithoutWorkspaceInput, SessionUncheckedUpdateWithoutWorkspaceInput>
|
|
@@ -25021,23 +26094,33 @@ export namespace Prisma {
|
|
|
25021
26094
|
worktreePath: string
|
|
25022
26095
|
status?: string
|
|
25023
26096
|
commitMessage?: string | null
|
|
26097
|
+
previewTarget?: string | null
|
|
25024
26098
|
hibernatedAt?: Date | string | null
|
|
25025
26099
|
createdAt?: Date | string
|
|
25026
26100
|
updatedAt?: Date | string
|
|
25027
26101
|
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
26102
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
26103
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
26104
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
26105
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25028
26106
|
}
|
|
25029
26107
|
|
|
25030
26108
|
export type WorkspaceUncheckedCreateWithoutSessionsInput = {
|
|
25031
26109
|
id?: string
|
|
25032
26110
|
taskId: string
|
|
26111
|
+
parentWorkspaceId?: string | null
|
|
26112
|
+
ownerMemberId?: string | null
|
|
25033
26113
|
branchName: string
|
|
25034
26114
|
baseBranch?: string | null
|
|
25035
26115
|
worktreePath: string
|
|
25036
26116
|
status?: string
|
|
25037
26117
|
commitMessage?: string | null
|
|
26118
|
+
previewTarget?: string | null
|
|
25038
26119
|
hibernatedAt?: Date | string | null
|
|
25039
26120
|
createdAt?: Date | string
|
|
25040
26121
|
updatedAt?: Date | string
|
|
26122
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
26123
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25041
26124
|
}
|
|
25042
26125
|
|
|
25043
26126
|
export type WorkspaceCreateOrConnectWithoutSessionsInput = {
|
|
@@ -25088,23 +26171,33 @@ export namespace Prisma {
|
|
|
25088
26171
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25089
26172
|
status?: StringFieldUpdateOperationsInput | string
|
|
25090
26173
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26174
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25091
26175
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25092
26176
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25093
26177
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25094
26178
|
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
26179
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
26180
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26181
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
26182
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25095
26183
|
}
|
|
25096
26184
|
|
|
25097
26185
|
export type WorkspaceUncheckedUpdateWithoutSessionsInput = {
|
|
25098
26186
|
id?: StringFieldUpdateOperationsInput | string
|
|
25099
26187
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
26188
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26189
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25100
26190
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
25101
26191
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25102
26192
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25103
26193
|
status?: StringFieldUpdateOperationsInput | string
|
|
25104
26194
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26195
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25105
26196
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25106
26197
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25107
26198
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26199
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26200
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25108
26201
|
}
|
|
25109
26202
|
|
|
25110
26203
|
export type ExecutionProcessUpsertWithWhereUniqueWithoutSessionInput = {
|
|
@@ -25261,11 +26354,14 @@ export namespace Prisma {
|
|
|
25261
26354
|
|
|
25262
26355
|
export type WorkspaceCreateManyTaskInput = {
|
|
25263
26356
|
id?: string
|
|
26357
|
+
parentWorkspaceId?: string | null
|
|
26358
|
+
ownerMemberId?: string | null
|
|
25264
26359
|
branchName: string
|
|
25265
26360
|
baseBranch?: string | null
|
|
25266
26361
|
worktreePath: string
|
|
25267
26362
|
status?: string
|
|
25268
26363
|
commitMessage?: string | null
|
|
26364
|
+
previewTarget?: string | null
|
|
25269
26365
|
hibernatedAt?: Date | string | null
|
|
25270
26366
|
createdAt?: Date | string
|
|
25271
26367
|
updatedAt?: Date | string
|
|
@@ -25278,32 +26374,45 @@ export namespace Prisma {
|
|
|
25278
26374
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25279
26375
|
status?: StringFieldUpdateOperationsInput | string
|
|
25280
26376
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26377
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25281
26378
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25282
26379
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25283
26380
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26381
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
26382
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26383
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
26384
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25284
26385
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
25285
26386
|
}
|
|
25286
26387
|
|
|
25287
26388
|
export type WorkspaceUncheckedUpdateWithoutTaskInput = {
|
|
25288
26389
|
id?: StringFieldUpdateOperationsInput | string
|
|
26390
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26391
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25289
26392
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
25290
26393
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25291
26394
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25292
26395
|
status?: StringFieldUpdateOperationsInput | string
|
|
25293
26396
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26397
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25294
26398
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25295
26399
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25296
26400
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26401
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26402
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25297
26403
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25298
26404
|
}
|
|
25299
26405
|
|
|
25300
26406
|
export type WorkspaceUncheckedUpdateManyWithoutTaskInput = {
|
|
25301
26407
|
id?: StringFieldUpdateOperationsInput | string
|
|
26408
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26409
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25302
26410
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
25303
26411
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25304
26412
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25305
26413
|
status?: StringFieldUpdateOperationsInput | string
|
|
25306
26414
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26415
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25307
26416
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25308
26417
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25309
26418
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -25344,6 +26453,7 @@ export namespace Prisma {
|
|
|
25344
26453
|
workspacePolicy: string
|
|
25345
26454
|
triggerPolicy: string
|
|
25346
26455
|
sessionPolicy?: string
|
|
26456
|
+
queueManagementPolicy?: string
|
|
25347
26457
|
avatar?: string | null
|
|
25348
26458
|
status?: string
|
|
25349
26459
|
createdAt?: Date | string
|
|
@@ -25402,10 +26512,12 @@ export namespace Prisma {
|
|
|
25402
26512
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
25403
26513
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
25404
26514
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
26515
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
25405
26516
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25406
26517
|
status?: StringFieldUpdateOperationsInput | string
|
|
25407
26518
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25408
26519
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26520
|
+
ownedWorkspaces?: WorkspaceUpdateManyWithoutOwnerMemberNestedInput
|
|
25409
26521
|
}
|
|
25410
26522
|
|
|
25411
26523
|
export type TeamMemberUncheckedUpdateWithoutTeamRunInput = {
|
|
@@ -25419,10 +26531,12 @@ export namespace Prisma {
|
|
|
25419
26531
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
25420
26532
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
25421
26533
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
26534
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
25422
26535
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25423
26536
|
status?: StringFieldUpdateOperationsInput | string
|
|
25424
26537
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25425
26538
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26539
|
+
ownedWorkspaces?: WorkspaceUncheckedUpdateManyWithoutOwnerMemberNestedInput
|
|
25426
26540
|
}
|
|
25427
26541
|
|
|
25428
26542
|
export type TeamMemberUncheckedUpdateManyWithoutTeamRunInput = {
|
|
@@ -25436,6 +26550,7 @@ export namespace Prisma {
|
|
|
25436
26550
|
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
25437
26551
|
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
25438
26552
|
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
26553
|
+
queueManagementPolicy?: StringFieldUpdateOperationsInput | string
|
|
25439
26554
|
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25440
26555
|
status?: StringFieldUpdateOperationsInput | string
|
|
25441
26556
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -25565,6 +26680,96 @@ export namespace Prisma {
|
|
|
25565
26680
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25566
26681
|
}
|
|
25567
26682
|
|
|
26683
|
+
export type WorkspaceCreateManyOwnerMemberInput = {
|
|
26684
|
+
id?: string
|
|
26685
|
+
taskId: string
|
|
26686
|
+
parentWorkspaceId?: string | null
|
|
26687
|
+
branchName: string
|
|
26688
|
+
baseBranch?: string | null
|
|
26689
|
+
worktreePath: string
|
|
26690
|
+
status?: string
|
|
26691
|
+
commitMessage?: string | null
|
|
26692
|
+
previewTarget?: string | null
|
|
26693
|
+
hibernatedAt?: Date | string | null
|
|
26694
|
+
createdAt?: Date | string
|
|
26695
|
+
updatedAt?: Date | string
|
|
26696
|
+
}
|
|
26697
|
+
|
|
26698
|
+
export type WorkspaceUpdateWithoutOwnerMemberInput = {
|
|
26699
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26700
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26701
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26702
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26703
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26704
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26705
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26706
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26707
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26708
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26709
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
26710
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
26711
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26712
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
26713
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
26714
|
+
}
|
|
26715
|
+
|
|
26716
|
+
export type WorkspaceUncheckedUpdateWithoutOwnerMemberInput = {
|
|
26717
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26718
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26719
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26720
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26721
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26722
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26723
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26724
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26725
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26726
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26727
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26728
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26729
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26730
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
26731
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
26732
|
+
}
|
|
26733
|
+
|
|
26734
|
+
export type WorkspaceUncheckedUpdateManyWithoutOwnerMemberInput = {
|
|
26735
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26736
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26737
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26738
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26739
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26740
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26741
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26742
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26743
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26744
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26745
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26746
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26747
|
+
}
|
|
26748
|
+
|
|
26749
|
+
export type WorkspaceCreateManyParentWorkspaceInput = {
|
|
26750
|
+
id?: string
|
|
26751
|
+
taskId: string
|
|
26752
|
+
ownerMemberId?: string | null
|
|
26753
|
+
branchName: string
|
|
26754
|
+
baseBranch?: string | null
|
|
26755
|
+
worktreePath: string
|
|
26756
|
+
status?: string
|
|
26757
|
+
commitMessage?: string | null
|
|
26758
|
+
previewTarget?: string | null
|
|
26759
|
+
hibernatedAt?: Date | string | null
|
|
26760
|
+
createdAt?: Date | string
|
|
26761
|
+
updatedAt?: Date | string
|
|
26762
|
+
}
|
|
26763
|
+
|
|
26764
|
+
export type TeamRunCreateManyMainWorkspaceInput = {
|
|
26765
|
+
id?: string
|
|
26766
|
+
taskId: string
|
|
26767
|
+
mode: string
|
|
26768
|
+
reviewReason?: string | null
|
|
26769
|
+
createdAt?: Date | string
|
|
26770
|
+
updatedAt?: Date | string
|
|
26771
|
+
}
|
|
26772
|
+
|
|
25568
26773
|
export type SessionCreateManyWorkspaceInput = {
|
|
25569
26774
|
id?: string
|
|
25570
26775
|
agentType: string
|
|
@@ -25579,6 +26784,92 @@ export namespace Prisma {
|
|
|
25579
26784
|
updatedAt?: Date | string
|
|
25580
26785
|
}
|
|
25581
26786
|
|
|
26787
|
+
export type WorkspaceUpdateWithoutParentWorkspaceInput = {
|
|
26788
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26789
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26790
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26791
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26792
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26793
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26794
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26795
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26796
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26797
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26798
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
26799
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26800
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
26801
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
26802
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
26803
|
+
}
|
|
26804
|
+
|
|
26805
|
+
export type WorkspaceUncheckedUpdateWithoutParentWorkspaceInput = {
|
|
26806
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26807
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26808
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26809
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26810
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26811
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26812
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26813
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26814
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26815
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26816
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26817
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26818
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26819
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
26820
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
26821
|
+
}
|
|
26822
|
+
|
|
26823
|
+
export type WorkspaceUncheckedUpdateManyWithoutParentWorkspaceInput = {
|
|
26824
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26825
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26826
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26827
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26828
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26829
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26830
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26831
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26832
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26833
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26834
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26835
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26836
|
+
}
|
|
26837
|
+
|
|
26838
|
+
export type TeamRunUpdateWithoutMainWorkspaceInput = {
|
|
26839
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26840
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
26841
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26842
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26843
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26844
|
+
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
26845
|
+
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
26846
|
+
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
26847
|
+
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
26848
|
+
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
26849
|
+
}
|
|
26850
|
+
|
|
26851
|
+
export type TeamRunUncheckedUpdateWithoutMainWorkspaceInput = {
|
|
26852
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26853
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26854
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
26855
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26856
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26857
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26858
|
+
members?: TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26859
|
+
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26860
|
+
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26861
|
+
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26862
|
+
}
|
|
26863
|
+
|
|
26864
|
+
export type TeamRunUncheckedUpdateManyWithoutMainWorkspaceInput = {
|
|
26865
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26866
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26867
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
26868
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26869
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26870
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26871
|
+
}
|
|
26872
|
+
|
|
25582
26873
|
export type SessionUpdateWithoutWorkspaceInput = {
|
|
25583
26874
|
id?: StringFieldUpdateOperationsInput | string
|
|
25584
26875
|
agentType?: StringFieldUpdateOperationsInput | string
|
|
@@ -25676,6 +26967,10 @@ export namespace Prisma {
|
|
|
25676
26967
|
* @deprecated Use TeamRunCountOutputTypeDefaultArgs instead
|
|
25677
26968
|
*/
|
|
25678
26969
|
export type TeamRunCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TeamRunCountOutputTypeDefaultArgs<ExtArgs>
|
|
26970
|
+
/**
|
|
26971
|
+
* @deprecated Use TeamMemberCountOutputTypeDefaultArgs instead
|
|
26972
|
+
*/
|
|
26973
|
+
export type TeamMemberCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TeamMemberCountOutputTypeDefaultArgs<ExtArgs>
|
|
25679
26974
|
/**
|
|
25680
26975
|
* @deprecated Use WorkspaceCountOutputTypeDefaultArgs instead
|
|
25681
26976
|
*/
|