agent-tower 0.4.16-beta.0 → 0.4.16-beta.3
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.map +1 -1
- package/dist/mcp/http-client.js +8 -1
- package/dist/mcp/http-client.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 +18 -8
- 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 +525 -27
- package/dist/services/__tests__/team-reconciler.service.test.js.map +1 -1
- package/dist/services/__tests__/team-run.service.test.js +252 -0
- package/dist/services/__tests__/team-run.service.test.js.map +1 -1
- package/dist/services/__tests__/team-scheduler.service.test.js +551 -21
- 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 +3 -0
- package/dist/services/team-run.service.d.ts.map +1 -1
- package/dist/services/team-run.service.js +288 -30
- package/dist/services/team-run.service.js.map +1 -1
- package/dist/services/team-scheduler.service.d.ts +15 -0
- package/dist/services/team-scheduler.service.d.ts.map +1 -1
- package/dist/services/team-scheduler.service.js +125 -32
- 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-Bf6labVB.js} +1 -1
- package/dist/web/assets/{DemoPage-B5DTSEbS.js → DemoPage-DlfG47rV.js} +1 -1
- package/dist/web/assets/{GeneralSettingsPage-Cspr7Vol.js → GeneralSettingsPage-DefqwzVn.js} +1 -1
- package/dist/web/assets/MemberAvatar-DVw_TedB.js +1 -0
- package/dist/web/assets/NotificationSettingsPage-C9h1U1Za.js +1 -0
- package/dist/web/assets/{ProfileSettingsPage-CNugU40a.js → ProfileSettingsPage-BkZE2yVP.js} +1 -1
- package/dist/web/assets/ProjectKanbanPage-B1Ckl1uY.js +89 -0
- package/dist/web/assets/ProjectSettingsPage-ByZ13awb.js +2 -0
- package/dist/web/assets/{ProviderSettingsPage-D_KWkgRM.js → ProviderSettingsPage-DSQYe8B6.js} +12 -12
- package/dist/web/assets/TeamSettingsPage-DUukJ_Ih.js +1 -0
- package/dist/web/assets/agent-tower-logo-COx9gy77.png +0 -0
- package/dist/web/assets/{button-B6JaSbDB.js → button-Bpm98eOV.js} +1 -1
- package/dist/web/assets/{chevron-down-CACy4UFq.js → chevron-down-DSKKXCi8.js} +1 -1
- package/dist/web/assets/{chevron-right-DFWfnDJY.js → chevron-right-CZdDV9GU.js} +1 -1
- package/dist/web/assets/{chevron-up-CGlf6jzw.js → chevron-up-gnnlwvYe.js} +1 -1
- package/dist/web/assets/{circle-check-DMK8auwb.js → circle-check-DeD_VuLK.js} +1 -1
- package/dist/web/assets/{code-block-OCS4YCEC-Hn75KHRK.js → code-block-OCS4YCEC-BrGjkdjS.js} +1 -1
- package/dist/web/assets/{confirm-dialog-DHI2f7Ni.js → confirm-dialog-CEVVvAcE.js} +1 -1
- package/dist/web/assets/folder-picker-ZBQlFEWL.js +1 -0
- package/dist/web/assets/{index-BFAA3PTl.js → index-B5g4V0NU.js} +6 -6
- package/dist/web/assets/index-ltjI8o6A.css +1 -0
- package/dist/web/assets/loader-circle-GMfBClX0.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-D5USvUiZ.js} +4 -4
- package/dist/web/assets/{modal-B5IRN7QI.js → modal-JMpuh-LG.js} +1 -1
- package/dist/web/assets/{pencil-CJY6Ahn7.js → pencil-QrCW47nn.js} +1 -1
- package/dist/web/assets/{select-BPZZlla1.js → select-CINRzLiE.js} +1 -1
- package/dist/web/assets/upload-vFxZxKHo.js +1 -0
- package/dist/web/assets/{use-profiles-C2k04ICZ.js → use-profiles-SrVWPYv0.js} +1 -1
- package/dist/web/assets/{use-providers-C7fIDWzP.js → use-providers-BihMydl0.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 +9 -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 +9 -5
- package/node_modules/@prisma/client/.prisma/client/index-browser.js +4 -0
- package/node_modules/@prisma/client/.prisma/client/index.d.ts +1242 -14
- package/node_modules/@prisma/client/.prisma/client/index.js +9 -5
- package/node_modules/@prisma/client/.prisma/client/package.json +1 -1
- package/node_modules/@prisma/client/.prisma/client/schema.prisma +47 -31
- package/node_modules/@prisma/client/.prisma/client/wasm.js +4 -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/schema.prisma +27 -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
|
*/
|
|
@@ -7395,6 +7444,7 @@ export namespace Prisma {
|
|
|
7395
7444
|
export type TeamRunMinAggregateOutputType = {
|
|
7396
7445
|
id: string | null
|
|
7397
7446
|
taskId: string | null
|
|
7447
|
+
mainWorkspaceId: string | null
|
|
7398
7448
|
mode: string | null
|
|
7399
7449
|
reviewReason: string | null
|
|
7400
7450
|
createdAt: Date | null
|
|
@@ -7404,6 +7454,7 @@ export namespace Prisma {
|
|
|
7404
7454
|
export type TeamRunMaxAggregateOutputType = {
|
|
7405
7455
|
id: string | null
|
|
7406
7456
|
taskId: string | null
|
|
7457
|
+
mainWorkspaceId: string | null
|
|
7407
7458
|
mode: string | null
|
|
7408
7459
|
reviewReason: string | null
|
|
7409
7460
|
createdAt: Date | null
|
|
@@ -7413,6 +7464,7 @@ export namespace Prisma {
|
|
|
7413
7464
|
export type TeamRunCountAggregateOutputType = {
|
|
7414
7465
|
id: number
|
|
7415
7466
|
taskId: number
|
|
7467
|
+
mainWorkspaceId: number
|
|
7416
7468
|
mode: number
|
|
7417
7469
|
reviewReason: number
|
|
7418
7470
|
createdAt: number
|
|
@@ -7424,6 +7476,7 @@ export namespace Prisma {
|
|
|
7424
7476
|
export type TeamRunMinAggregateInputType = {
|
|
7425
7477
|
id?: true
|
|
7426
7478
|
taskId?: true
|
|
7479
|
+
mainWorkspaceId?: true
|
|
7427
7480
|
mode?: true
|
|
7428
7481
|
reviewReason?: true
|
|
7429
7482
|
createdAt?: true
|
|
@@ -7433,6 +7486,7 @@ export namespace Prisma {
|
|
|
7433
7486
|
export type TeamRunMaxAggregateInputType = {
|
|
7434
7487
|
id?: true
|
|
7435
7488
|
taskId?: true
|
|
7489
|
+
mainWorkspaceId?: true
|
|
7436
7490
|
mode?: true
|
|
7437
7491
|
reviewReason?: true
|
|
7438
7492
|
createdAt?: true
|
|
@@ -7442,6 +7496,7 @@ export namespace Prisma {
|
|
|
7442
7496
|
export type TeamRunCountAggregateInputType = {
|
|
7443
7497
|
id?: true
|
|
7444
7498
|
taskId?: true
|
|
7499
|
+
mainWorkspaceId?: true
|
|
7445
7500
|
mode?: true
|
|
7446
7501
|
reviewReason?: true
|
|
7447
7502
|
createdAt?: true
|
|
@@ -7524,6 +7579,7 @@ export namespace Prisma {
|
|
|
7524
7579
|
export type TeamRunGroupByOutputType = {
|
|
7525
7580
|
id: string
|
|
7526
7581
|
taskId: string
|
|
7582
|
+
mainWorkspaceId: string | null
|
|
7527
7583
|
mode: string
|
|
7528
7584
|
reviewReason: string | null
|
|
7529
7585
|
createdAt: Date
|
|
@@ -7550,11 +7606,13 @@ export namespace Prisma {
|
|
|
7550
7606
|
export type TeamRunSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7551
7607
|
id?: boolean
|
|
7552
7608
|
taskId?: boolean
|
|
7609
|
+
mainWorkspaceId?: boolean
|
|
7553
7610
|
mode?: boolean
|
|
7554
7611
|
reviewReason?: boolean
|
|
7555
7612
|
createdAt?: boolean
|
|
7556
7613
|
updatedAt?: boolean
|
|
7557
7614
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7615
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7558
7616
|
members?: boolean | TeamRun$membersArgs<ExtArgs>
|
|
7559
7617
|
messages?: boolean | TeamRun$messagesArgs<ExtArgs>
|
|
7560
7618
|
workRequests?: boolean | TeamRun$workRequestsArgs<ExtArgs>
|
|
@@ -7565,16 +7623,19 @@ export namespace Prisma {
|
|
|
7565
7623
|
export type TeamRunSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7566
7624
|
id?: boolean
|
|
7567
7625
|
taskId?: boolean
|
|
7626
|
+
mainWorkspaceId?: boolean
|
|
7568
7627
|
mode?: boolean
|
|
7569
7628
|
reviewReason?: boolean
|
|
7570
7629
|
createdAt?: boolean
|
|
7571
7630
|
updatedAt?: boolean
|
|
7572
7631
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7632
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7573
7633
|
}, ExtArgs["result"]["teamRun"]>
|
|
7574
7634
|
|
|
7575
7635
|
export type TeamRunSelectScalar = {
|
|
7576
7636
|
id?: boolean
|
|
7577
7637
|
taskId?: boolean
|
|
7638
|
+
mainWorkspaceId?: boolean
|
|
7578
7639
|
mode?: boolean
|
|
7579
7640
|
reviewReason?: boolean
|
|
7580
7641
|
createdAt?: boolean
|
|
@@ -7583,6 +7644,7 @@ export namespace Prisma {
|
|
|
7583
7644
|
|
|
7584
7645
|
export type TeamRunInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7585
7646
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7647
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7586
7648
|
members?: boolean | TeamRun$membersArgs<ExtArgs>
|
|
7587
7649
|
messages?: boolean | TeamRun$messagesArgs<ExtArgs>
|
|
7588
7650
|
workRequests?: boolean | TeamRun$workRequestsArgs<ExtArgs>
|
|
@@ -7591,12 +7653,14 @@ export namespace Prisma {
|
|
|
7591
7653
|
}
|
|
7592
7654
|
export type TeamRunIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7593
7655
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
7656
|
+
mainWorkspace?: boolean | TeamRun$mainWorkspaceArgs<ExtArgs>
|
|
7594
7657
|
}
|
|
7595
7658
|
|
|
7596
7659
|
export type $TeamRunPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7597
7660
|
name: "TeamRun"
|
|
7598
7661
|
objects: {
|
|
7599
7662
|
task: Prisma.$TaskPayload<ExtArgs>
|
|
7663
|
+
mainWorkspace: Prisma.$WorkspacePayload<ExtArgs> | null
|
|
7600
7664
|
members: Prisma.$TeamMemberPayload<ExtArgs>[]
|
|
7601
7665
|
messages: Prisma.$RoomMessagePayload<ExtArgs>[]
|
|
7602
7666
|
workRequests: Prisma.$WorkRequestPayload<ExtArgs>[]
|
|
@@ -7605,6 +7669,7 @@ export namespace Prisma {
|
|
|
7605
7669
|
scalars: $Extensions.GetPayloadResult<{
|
|
7606
7670
|
id: string
|
|
7607
7671
|
taskId: string
|
|
7672
|
+
mainWorkspaceId: string | null
|
|
7608
7673
|
mode: string
|
|
7609
7674
|
reviewReason: string | null
|
|
7610
7675
|
createdAt: Date
|
|
@@ -7974,6 +8039,7 @@ export namespace Prisma {
|
|
|
7974
8039
|
export interface Prisma__TeamRunClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
7975
8040
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
7976
8041
|
task<T extends TaskDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TaskDefaultArgs<ExtArgs>>): Prisma__TaskClient<$Result.GetResult<Prisma.$TaskPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
8042
|
+
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
8043
|
members<T extends TeamRun$membersArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$membersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TeamMemberPayload<ExtArgs>, T, "findMany"> | Null>
|
|
7978
8044
|
messages<T extends TeamRun$messagesArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoomMessagePayload<ExtArgs>, T, "findMany"> | Null>
|
|
7979
8045
|
workRequests<T extends TeamRun$workRequestsArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$workRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkRequestPayload<ExtArgs>, T, "findMany"> | Null>
|
|
@@ -8009,6 +8075,7 @@ export namespace Prisma {
|
|
|
8009
8075
|
interface TeamRunFieldRefs {
|
|
8010
8076
|
readonly id: FieldRef<"TeamRun", 'String'>
|
|
8011
8077
|
readonly taskId: FieldRef<"TeamRun", 'String'>
|
|
8078
|
+
readonly mainWorkspaceId: FieldRef<"TeamRun", 'String'>
|
|
8012
8079
|
readonly mode: FieldRef<"TeamRun", 'String'>
|
|
8013
8080
|
readonly reviewReason: FieldRef<"TeamRun", 'String'>
|
|
8014
8081
|
readonly createdAt: FieldRef<"TeamRun", 'DateTime'>
|
|
@@ -8328,6 +8395,21 @@ export namespace Prisma {
|
|
|
8328
8395
|
where?: TeamRunWhereInput
|
|
8329
8396
|
}
|
|
8330
8397
|
|
|
8398
|
+
/**
|
|
8399
|
+
* TeamRun.mainWorkspace
|
|
8400
|
+
*/
|
|
8401
|
+
export type TeamRun$mainWorkspaceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8402
|
+
/**
|
|
8403
|
+
* Select specific fields to fetch from the Workspace
|
|
8404
|
+
*/
|
|
8405
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
8406
|
+
/**
|
|
8407
|
+
* Choose, which related nodes to fetch as well
|
|
8408
|
+
*/
|
|
8409
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
8410
|
+
where?: WorkspaceWhereInput
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8331
8413
|
/**
|
|
8332
8414
|
* TeamRun.members
|
|
8333
8415
|
*/
|
|
@@ -8668,6 +8750,8 @@ export namespace Prisma {
|
|
|
8668
8750
|
createdAt?: boolean
|
|
8669
8751
|
updatedAt?: boolean
|
|
8670
8752
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
8753
|
+
ownedWorkspaces?: boolean | TeamMember$ownedWorkspacesArgs<ExtArgs>
|
|
8754
|
+
_count?: boolean | TeamMemberCountOutputTypeDefaultArgs<ExtArgs>
|
|
8671
8755
|
}, ExtArgs["result"]["teamMember"]>
|
|
8672
8756
|
|
|
8673
8757
|
export type TeamMemberSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -8709,6 +8793,8 @@ export namespace Prisma {
|
|
|
8709
8793
|
|
|
8710
8794
|
export type TeamMemberInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8711
8795
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
8796
|
+
ownedWorkspaces?: boolean | TeamMember$ownedWorkspacesArgs<ExtArgs>
|
|
8797
|
+
_count?: boolean | TeamMemberCountOutputTypeDefaultArgs<ExtArgs>
|
|
8712
8798
|
}
|
|
8713
8799
|
export type TeamMemberIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8714
8800
|
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
@@ -8718,6 +8804,7 @@ export namespace Prisma {
|
|
|
8718
8804
|
name: "TeamMember"
|
|
8719
8805
|
objects: {
|
|
8720
8806
|
teamRun: Prisma.$TeamRunPayload<ExtArgs>
|
|
8807
|
+
ownedWorkspaces: Prisma.$WorkspacePayload<ExtArgs>[]
|
|
8721
8808
|
}
|
|
8722
8809
|
scalars: $Extensions.GetPayloadResult<{
|
|
8723
8810
|
id: string
|
|
@@ -9100,6 +9187,7 @@ export namespace Prisma {
|
|
|
9100
9187
|
export interface Prisma__TeamMemberClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
9101
9188
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
9102
9189
|
teamRun<T extends TeamRunDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TeamRunDefaultArgs<ExtArgs>>): Prisma__TeamRunClient<$Result.GetResult<Prisma.$TeamRunPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
9190
|
+
ownedWorkspaces<T extends TeamMember$ownedWorkspacesArgs<ExtArgs> = {}>(args?: Subset<T, TeamMember$ownedWorkspacesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findMany"> | Null>
|
|
9103
9191
|
/**
|
|
9104
9192
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9105
9193
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9459,6 +9547,26 @@ export namespace Prisma {
|
|
|
9459
9547
|
where?: TeamMemberWhereInput
|
|
9460
9548
|
}
|
|
9461
9549
|
|
|
9550
|
+
/**
|
|
9551
|
+
* TeamMember.ownedWorkspaces
|
|
9552
|
+
*/
|
|
9553
|
+
export type TeamMember$ownedWorkspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9554
|
+
/**
|
|
9555
|
+
* Select specific fields to fetch from the Workspace
|
|
9556
|
+
*/
|
|
9557
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
9558
|
+
/**
|
|
9559
|
+
* Choose, which related nodes to fetch as well
|
|
9560
|
+
*/
|
|
9561
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
9562
|
+
where?: WorkspaceWhereInput
|
|
9563
|
+
orderBy?: WorkspaceOrderByWithRelationInput | WorkspaceOrderByWithRelationInput[]
|
|
9564
|
+
cursor?: WorkspaceWhereUniqueInput
|
|
9565
|
+
take?: number
|
|
9566
|
+
skip?: number
|
|
9567
|
+
distinct?: WorkspaceScalarFieldEnum | WorkspaceScalarFieldEnum[]
|
|
9568
|
+
}
|
|
9569
|
+
|
|
9462
9570
|
/**
|
|
9463
9571
|
* TeamMember without action
|
|
9464
9572
|
*/
|
|
@@ -12554,11 +12662,14 @@ export namespace Prisma {
|
|
|
12554
12662
|
export type WorkspaceMinAggregateOutputType = {
|
|
12555
12663
|
id: string | null
|
|
12556
12664
|
taskId: string | null
|
|
12665
|
+
parentWorkspaceId: string | null
|
|
12666
|
+
ownerMemberId: string | null
|
|
12557
12667
|
branchName: string | null
|
|
12558
12668
|
baseBranch: string | null
|
|
12559
12669
|
worktreePath: string | null
|
|
12560
12670
|
status: string | null
|
|
12561
12671
|
commitMessage: string | null
|
|
12672
|
+
previewTarget: string | null
|
|
12562
12673
|
hibernatedAt: Date | null
|
|
12563
12674
|
createdAt: Date | null
|
|
12564
12675
|
updatedAt: Date | null
|
|
@@ -12567,11 +12678,14 @@ export namespace Prisma {
|
|
|
12567
12678
|
export type WorkspaceMaxAggregateOutputType = {
|
|
12568
12679
|
id: string | null
|
|
12569
12680
|
taskId: string | null
|
|
12681
|
+
parentWorkspaceId: string | null
|
|
12682
|
+
ownerMemberId: string | null
|
|
12570
12683
|
branchName: string | null
|
|
12571
12684
|
baseBranch: string | null
|
|
12572
12685
|
worktreePath: string | null
|
|
12573
12686
|
status: string | null
|
|
12574
12687
|
commitMessage: string | null
|
|
12688
|
+
previewTarget: string | null
|
|
12575
12689
|
hibernatedAt: Date | null
|
|
12576
12690
|
createdAt: Date | null
|
|
12577
12691
|
updatedAt: Date | null
|
|
@@ -12580,11 +12694,14 @@ export namespace Prisma {
|
|
|
12580
12694
|
export type WorkspaceCountAggregateOutputType = {
|
|
12581
12695
|
id: number
|
|
12582
12696
|
taskId: number
|
|
12697
|
+
parentWorkspaceId: number
|
|
12698
|
+
ownerMemberId: number
|
|
12583
12699
|
branchName: number
|
|
12584
12700
|
baseBranch: number
|
|
12585
12701
|
worktreePath: number
|
|
12586
12702
|
status: number
|
|
12587
12703
|
commitMessage: number
|
|
12704
|
+
previewTarget: number
|
|
12588
12705
|
hibernatedAt: number
|
|
12589
12706
|
createdAt: number
|
|
12590
12707
|
updatedAt: number
|
|
@@ -12595,11 +12712,14 @@ export namespace Prisma {
|
|
|
12595
12712
|
export type WorkspaceMinAggregateInputType = {
|
|
12596
12713
|
id?: true
|
|
12597
12714
|
taskId?: true
|
|
12715
|
+
parentWorkspaceId?: true
|
|
12716
|
+
ownerMemberId?: true
|
|
12598
12717
|
branchName?: true
|
|
12599
12718
|
baseBranch?: true
|
|
12600
12719
|
worktreePath?: true
|
|
12601
12720
|
status?: true
|
|
12602
12721
|
commitMessage?: true
|
|
12722
|
+
previewTarget?: true
|
|
12603
12723
|
hibernatedAt?: true
|
|
12604
12724
|
createdAt?: true
|
|
12605
12725
|
updatedAt?: true
|
|
@@ -12608,11 +12728,14 @@ export namespace Prisma {
|
|
|
12608
12728
|
export type WorkspaceMaxAggregateInputType = {
|
|
12609
12729
|
id?: true
|
|
12610
12730
|
taskId?: true
|
|
12731
|
+
parentWorkspaceId?: true
|
|
12732
|
+
ownerMemberId?: true
|
|
12611
12733
|
branchName?: true
|
|
12612
12734
|
baseBranch?: true
|
|
12613
12735
|
worktreePath?: true
|
|
12614
12736
|
status?: true
|
|
12615
12737
|
commitMessage?: true
|
|
12738
|
+
previewTarget?: true
|
|
12616
12739
|
hibernatedAt?: true
|
|
12617
12740
|
createdAt?: true
|
|
12618
12741
|
updatedAt?: true
|
|
@@ -12621,11 +12744,14 @@ export namespace Prisma {
|
|
|
12621
12744
|
export type WorkspaceCountAggregateInputType = {
|
|
12622
12745
|
id?: true
|
|
12623
12746
|
taskId?: true
|
|
12747
|
+
parentWorkspaceId?: true
|
|
12748
|
+
ownerMemberId?: true
|
|
12624
12749
|
branchName?: true
|
|
12625
12750
|
baseBranch?: true
|
|
12626
12751
|
worktreePath?: true
|
|
12627
12752
|
status?: true
|
|
12628
12753
|
commitMessage?: true
|
|
12754
|
+
previewTarget?: true
|
|
12629
12755
|
hibernatedAt?: true
|
|
12630
12756
|
createdAt?: true
|
|
12631
12757
|
updatedAt?: true
|
|
@@ -12707,11 +12833,14 @@ export namespace Prisma {
|
|
|
12707
12833
|
export type WorkspaceGroupByOutputType = {
|
|
12708
12834
|
id: string
|
|
12709
12835
|
taskId: string
|
|
12836
|
+
parentWorkspaceId: string | null
|
|
12837
|
+
ownerMemberId: string | null
|
|
12710
12838
|
branchName: string
|
|
12711
12839
|
baseBranch: string | null
|
|
12712
12840
|
worktreePath: string
|
|
12713
12841
|
status: string
|
|
12714
12842
|
commitMessage: string | null
|
|
12843
|
+
previewTarget: string | null
|
|
12715
12844
|
hibernatedAt: Date | null
|
|
12716
12845
|
createdAt: Date
|
|
12717
12846
|
updatedAt: Date
|
|
@@ -12737,15 +12866,22 @@ export namespace Prisma {
|
|
|
12737
12866
|
export type WorkspaceSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
12738
12867
|
id?: boolean
|
|
12739
12868
|
taskId?: boolean
|
|
12869
|
+
parentWorkspaceId?: boolean
|
|
12870
|
+
ownerMemberId?: boolean
|
|
12740
12871
|
branchName?: boolean
|
|
12741
12872
|
baseBranch?: boolean
|
|
12742
12873
|
worktreePath?: boolean
|
|
12743
12874
|
status?: boolean
|
|
12744
12875
|
commitMessage?: boolean
|
|
12876
|
+
previewTarget?: boolean
|
|
12745
12877
|
hibernatedAt?: boolean
|
|
12746
12878
|
createdAt?: boolean
|
|
12747
12879
|
updatedAt?: boolean
|
|
12748
12880
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12881
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12882
|
+
childWorkspaces?: boolean | Workspace$childWorkspacesArgs<ExtArgs>
|
|
12883
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12884
|
+
mainForTeamRuns?: boolean | Workspace$mainForTeamRunsArgs<ExtArgs>
|
|
12749
12885
|
sessions?: boolean | Workspace$sessionsArgs<ExtArgs>
|
|
12750
12886
|
_count?: boolean | WorkspaceCountOutputTypeDefaultArgs<ExtArgs>
|
|
12751
12887
|
}, ExtArgs["result"]["workspace"]>
|
|
@@ -12753,25 +12889,33 @@ export namespace Prisma {
|
|
|
12753
12889
|
export type WorkspaceSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
12754
12890
|
id?: boolean
|
|
12755
12891
|
taskId?: boolean
|
|
12892
|
+
parentWorkspaceId?: boolean
|
|
12893
|
+
ownerMemberId?: boolean
|
|
12756
12894
|
branchName?: boolean
|
|
12757
12895
|
baseBranch?: boolean
|
|
12758
12896
|
worktreePath?: boolean
|
|
12759
12897
|
status?: boolean
|
|
12760
12898
|
commitMessage?: boolean
|
|
12899
|
+
previewTarget?: boolean
|
|
12761
12900
|
hibernatedAt?: boolean
|
|
12762
12901
|
createdAt?: boolean
|
|
12763
12902
|
updatedAt?: boolean
|
|
12764
12903
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12904
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12905
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12765
12906
|
}, ExtArgs["result"]["workspace"]>
|
|
12766
12907
|
|
|
12767
12908
|
export type WorkspaceSelectScalar = {
|
|
12768
12909
|
id?: boolean
|
|
12769
12910
|
taskId?: boolean
|
|
12911
|
+
parentWorkspaceId?: boolean
|
|
12912
|
+
ownerMemberId?: boolean
|
|
12770
12913
|
branchName?: boolean
|
|
12771
12914
|
baseBranch?: boolean
|
|
12772
12915
|
worktreePath?: boolean
|
|
12773
12916
|
status?: boolean
|
|
12774
12917
|
commitMessage?: boolean
|
|
12918
|
+
previewTarget?: boolean
|
|
12775
12919
|
hibernatedAt?: boolean
|
|
12776
12920
|
createdAt?: boolean
|
|
12777
12921
|
updatedAt?: boolean
|
|
@@ -12779,27 +12923,40 @@ export namespace Prisma {
|
|
|
12779
12923
|
|
|
12780
12924
|
export type WorkspaceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12781
12925
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12926
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12927
|
+
childWorkspaces?: boolean | Workspace$childWorkspacesArgs<ExtArgs>
|
|
12928
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12929
|
+
mainForTeamRuns?: boolean | Workspace$mainForTeamRunsArgs<ExtArgs>
|
|
12782
12930
|
sessions?: boolean | Workspace$sessionsArgs<ExtArgs>
|
|
12783
12931
|
_count?: boolean | WorkspaceCountOutputTypeDefaultArgs<ExtArgs>
|
|
12784
12932
|
}
|
|
12785
12933
|
export type WorkspaceIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12786
12934
|
task?: boolean | TaskDefaultArgs<ExtArgs>
|
|
12935
|
+
parentWorkspace?: boolean | Workspace$parentWorkspaceArgs<ExtArgs>
|
|
12936
|
+
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
12787
12937
|
}
|
|
12788
12938
|
|
|
12789
12939
|
export type $WorkspacePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12790
12940
|
name: "Workspace"
|
|
12791
12941
|
objects: {
|
|
12792
12942
|
task: Prisma.$TaskPayload<ExtArgs>
|
|
12943
|
+
parentWorkspace: Prisma.$WorkspacePayload<ExtArgs> | null
|
|
12944
|
+
childWorkspaces: Prisma.$WorkspacePayload<ExtArgs>[]
|
|
12945
|
+
ownerMember: Prisma.$TeamMemberPayload<ExtArgs> | null
|
|
12946
|
+
mainForTeamRuns: Prisma.$TeamRunPayload<ExtArgs>[]
|
|
12793
12947
|
sessions: Prisma.$SessionPayload<ExtArgs>[]
|
|
12794
12948
|
}
|
|
12795
12949
|
scalars: $Extensions.GetPayloadResult<{
|
|
12796
12950
|
id: string
|
|
12797
12951
|
taskId: string
|
|
12952
|
+
parentWorkspaceId: string | null
|
|
12953
|
+
ownerMemberId: string | null
|
|
12798
12954
|
branchName: string
|
|
12799
12955
|
baseBranch: string | null
|
|
12800
12956
|
worktreePath: string
|
|
12801
12957
|
status: string
|
|
12802
12958
|
commitMessage: string | null
|
|
12959
|
+
previewTarget: string | null
|
|
12803
12960
|
hibernatedAt: Date | null
|
|
12804
12961
|
createdAt: Date
|
|
12805
12962
|
updatedAt: Date
|
|
@@ -13168,6 +13325,10 @@ export namespace Prisma {
|
|
|
13168
13325
|
export interface Prisma__WorkspaceClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
13169
13326
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
13170
13327
|
task<T extends TaskDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TaskDefaultArgs<ExtArgs>>): Prisma__TaskClient<$Result.GetResult<Prisma.$TaskPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
13328
|
+
parentWorkspace<T extends Workspace$parentWorkspaceArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$parentWorkspaceArgs<ExtArgs>>): Prisma__WorkspaceClient<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
13329
|
+
childWorkspaces<T extends Workspace$childWorkspacesArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$childWorkspacesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findMany"> | Null>
|
|
13330
|
+
ownerMember<T extends Workspace$ownerMemberArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$ownerMemberArgs<ExtArgs>>): Prisma__TeamMemberClient<$Result.GetResult<Prisma.$TeamMemberPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
13331
|
+
mainForTeamRuns<T extends Workspace$mainForTeamRunsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$mainForTeamRunsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TeamRunPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13171
13332
|
sessions<T extends Workspace$sessionsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SessionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13172
13333
|
/**
|
|
13173
13334
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -13200,11 +13361,14 @@ export namespace Prisma {
|
|
|
13200
13361
|
interface WorkspaceFieldRefs {
|
|
13201
13362
|
readonly id: FieldRef<"Workspace", 'String'>
|
|
13202
13363
|
readonly taskId: FieldRef<"Workspace", 'String'>
|
|
13364
|
+
readonly parentWorkspaceId: FieldRef<"Workspace", 'String'>
|
|
13365
|
+
readonly ownerMemberId: FieldRef<"Workspace", 'String'>
|
|
13203
13366
|
readonly branchName: FieldRef<"Workspace", 'String'>
|
|
13204
13367
|
readonly baseBranch: FieldRef<"Workspace", 'String'>
|
|
13205
13368
|
readonly worktreePath: FieldRef<"Workspace", 'String'>
|
|
13206
13369
|
readonly status: FieldRef<"Workspace", 'String'>
|
|
13207
13370
|
readonly commitMessage: FieldRef<"Workspace", 'String'>
|
|
13371
|
+
readonly previewTarget: FieldRef<"Workspace", 'String'>
|
|
13208
13372
|
readonly hibernatedAt: FieldRef<"Workspace", 'DateTime'>
|
|
13209
13373
|
readonly createdAt: FieldRef<"Workspace", 'DateTime'>
|
|
13210
13374
|
readonly updatedAt: FieldRef<"Workspace", 'DateTime'>
|
|
@@ -13523,6 +13687,76 @@ export namespace Prisma {
|
|
|
13523
13687
|
where?: WorkspaceWhereInput
|
|
13524
13688
|
}
|
|
13525
13689
|
|
|
13690
|
+
/**
|
|
13691
|
+
* Workspace.parentWorkspace
|
|
13692
|
+
*/
|
|
13693
|
+
export type Workspace$parentWorkspaceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13694
|
+
/**
|
|
13695
|
+
* Select specific fields to fetch from the Workspace
|
|
13696
|
+
*/
|
|
13697
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
13698
|
+
/**
|
|
13699
|
+
* Choose, which related nodes to fetch as well
|
|
13700
|
+
*/
|
|
13701
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
13702
|
+
where?: WorkspaceWhereInput
|
|
13703
|
+
}
|
|
13704
|
+
|
|
13705
|
+
/**
|
|
13706
|
+
* Workspace.childWorkspaces
|
|
13707
|
+
*/
|
|
13708
|
+
export type Workspace$childWorkspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13709
|
+
/**
|
|
13710
|
+
* Select specific fields to fetch from the Workspace
|
|
13711
|
+
*/
|
|
13712
|
+
select?: WorkspaceSelect<ExtArgs> | null
|
|
13713
|
+
/**
|
|
13714
|
+
* Choose, which related nodes to fetch as well
|
|
13715
|
+
*/
|
|
13716
|
+
include?: WorkspaceInclude<ExtArgs> | null
|
|
13717
|
+
where?: WorkspaceWhereInput
|
|
13718
|
+
orderBy?: WorkspaceOrderByWithRelationInput | WorkspaceOrderByWithRelationInput[]
|
|
13719
|
+
cursor?: WorkspaceWhereUniqueInput
|
|
13720
|
+
take?: number
|
|
13721
|
+
skip?: number
|
|
13722
|
+
distinct?: WorkspaceScalarFieldEnum | WorkspaceScalarFieldEnum[]
|
|
13723
|
+
}
|
|
13724
|
+
|
|
13725
|
+
/**
|
|
13726
|
+
* Workspace.ownerMember
|
|
13727
|
+
*/
|
|
13728
|
+
export type Workspace$ownerMemberArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13729
|
+
/**
|
|
13730
|
+
* Select specific fields to fetch from the TeamMember
|
|
13731
|
+
*/
|
|
13732
|
+
select?: TeamMemberSelect<ExtArgs> | null
|
|
13733
|
+
/**
|
|
13734
|
+
* Choose, which related nodes to fetch as well
|
|
13735
|
+
*/
|
|
13736
|
+
include?: TeamMemberInclude<ExtArgs> | null
|
|
13737
|
+
where?: TeamMemberWhereInput
|
|
13738
|
+
}
|
|
13739
|
+
|
|
13740
|
+
/**
|
|
13741
|
+
* Workspace.mainForTeamRuns
|
|
13742
|
+
*/
|
|
13743
|
+
export type Workspace$mainForTeamRunsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13744
|
+
/**
|
|
13745
|
+
* Select specific fields to fetch from the TeamRun
|
|
13746
|
+
*/
|
|
13747
|
+
select?: TeamRunSelect<ExtArgs> | null
|
|
13748
|
+
/**
|
|
13749
|
+
* Choose, which related nodes to fetch as well
|
|
13750
|
+
*/
|
|
13751
|
+
include?: TeamRunInclude<ExtArgs> | null
|
|
13752
|
+
where?: TeamRunWhereInput
|
|
13753
|
+
orderBy?: TeamRunOrderByWithRelationInput | TeamRunOrderByWithRelationInput[]
|
|
13754
|
+
cursor?: TeamRunWhereUniqueInput
|
|
13755
|
+
take?: number
|
|
13756
|
+
skip?: number
|
|
13757
|
+
distinct?: TeamRunScalarFieldEnum | TeamRunScalarFieldEnum[]
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13526
13760
|
/**
|
|
13527
13761
|
* Workspace.sessions
|
|
13528
13762
|
*/
|
|
@@ -19228,6 +19462,7 @@ export namespace Prisma {
|
|
|
19228
19462
|
export const TeamRunScalarFieldEnum: {
|
|
19229
19463
|
id: 'id',
|
|
19230
19464
|
taskId: 'taskId',
|
|
19465
|
+
mainWorkspaceId: 'mainWorkspaceId',
|
|
19231
19466
|
mode: 'mode',
|
|
19232
19467
|
reviewReason: 'reviewReason',
|
|
19233
19468
|
createdAt: 'createdAt',
|
|
@@ -19314,11 +19549,14 @@ export namespace Prisma {
|
|
|
19314
19549
|
export const WorkspaceScalarFieldEnum: {
|
|
19315
19550
|
id: 'id',
|
|
19316
19551
|
taskId: 'taskId',
|
|
19552
|
+
parentWorkspaceId: 'parentWorkspaceId',
|
|
19553
|
+
ownerMemberId: 'ownerMemberId',
|
|
19317
19554
|
branchName: 'branchName',
|
|
19318
19555
|
baseBranch: 'baseBranch',
|
|
19319
19556
|
worktreePath: 'worktreePath',
|
|
19320
19557
|
status: 'status',
|
|
19321
19558
|
commitMessage: 'commitMessage',
|
|
19559
|
+
previewTarget: 'previewTarget',
|
|
19322
19560
|
hibernatedAt: 'hibernatedAt',
|
|
19323
19561
|
createdAt: 'createdAt',
|
|
19324
19562
|
updatedAt: 'updatedAt'
|
|
@@ -19835,11 +20073,13 @@ export namespace Prisma {
|
|
|
19835
20073
|
NOT?: TeamRunWhereInput | TeamRunWhereInput[]
|
|
19836
20074
|
id?: StringFilter<"TeamRun"> | string
|
|
19837
20075
|
taskId?: StringFilter<"TeamRun"> | string
|
|
20076
|
+
mainWorkspaceId?: StringNullableFilter<"TeamRun"> | string | null
|
|
19838
20077
|
mode?: StringFilter<"TeamRun"> | string
|
|
19839
20078
|
reviewReason?: StringNullableFilter<"TeamRun"> | string | null
|
|
19840
20079
|
createdAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19841
20080
|
updatedAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19842
20081
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20082
|
+
mainWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
19843
20083
|
members?: TeamMemberListRelationFilter
|
|
19844
20084
|
messages?: RoomMessageListRelationFilter
|
|
19845
20085
|
workRequests?: WorkRequestListRelationFilter
|
|
@@ -19849,11 +20089,13 @@ export namespace Prisma {
|
|
|
19849
20089
|
export type TeamRunOrderByWithRelationInput = {
|
|
19850
20090
|
id?: SortOrder
|
|
19851
20091
|
taskId?: SortOrder
|
|
20092
|
+
mainWorkspaceId?: SortOrderInput | SortOrder
|
|
19852
20093
|
mode?: SortOrder
|
|
19853
20094
|
reviewReason?: SortOrderInput | SortOrder
|
|
19854
20095
|
createdAt?: SortOrder
|
|
19855
20096
|
updatedAt?: SortOrder
|
|
19856
20097
|
task?: TaskOrderByWithRelationInput
|
|
20098
|
+
mainWorkspace?: WorkspaceOrderByWithRelationInput
|
|
19857
20099
|
members?: TeamMemberOrderByRelationAggregateInput
|
|
19858
20100
|
messages?: RoomMessageOrderByRelationAggregateInput
|
|
19859
20101
|
workRequests?: WorkRequestOrderByRelationAggregateInput
|
|
@@ -19866,11 +20108,13 @@ export namespace Prisma {
|
|
|
19866
20108
|
AND?: TeamRunWhereInput | TeamRunWhereInput[]
|
|
19867
20109
|
OR?: TeamRunWhereInput[]
|
|
19868
20110
|
NOT?: TeamRunWhereInput | TeamRunWhereInput[]
|
|
20111
|
+
mainWorkspaceId?: StringNullableFilter<"TeamRun"> | string | null
|
|
19869
20112
|
mode?: StringFilter<"TeamRun"> | string
|
|
19870
20113
|
reviewReason?: StringNullableFilter<"TeamRun"> | string | null
|
|
19871
20114
|
createdAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19872
20115
|
updatedAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
19873
20116
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20117
|
+
mainWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
19874
20118
|
members?: TeamMemberListRelationFilter
|
|
19875
20119
|
messages?: RoomMessageListRelationFilter
|
|
19876
20120
|
workRequests?: WorkRequestListRelationFilter
|
|
@@ -19880,6 +20124,7 @@ export namespace Prisma {
|
|
|
19880
20124
|
export type TeamRunOrderByWithAggregationInput = {
|
|
19881
20125
|
id?: SortOrder
|
|
19882
20126
|
taskId?: SortOrder
|
|
20127
|
+
mainWorkspaceId?: SortOrderInput | SortOrder
|
|
19883
20128
|
mode?: SortOrder
|
|
19884
20129
|
reviewReason?: SortOrderInput | SortOrder
|
|
19885
20130
|
createdAt?: SortOrder
|
|
@@ -19895,6 +20140,7 @@ export namespace Prisma {
|
|
|
19895
20140
|
NOT?: TeamRunScalarWhereWithAggregatesInput | TeamRunScalarWhereWithAggregatesInput[]
|
|
19896
20141
|
id?: StringWithAggregatesFilter<"TeamRun"> | string
|
|
19897
20142
|
taskId?: StringWithAggregatesFilter<"TeamRun"> | string
|
|
20143
|
+
mainWorkspaceId?: StringNullableWithAggregatesFilter<"TeamRun"> | string | null
|
|
19898
20144
|
mode?: StringWithAggregatesFilter<"TeamRun"> | string
|
|
19899
20145
|
reviewReason?: StringNullableWithAggregatesFilter<"TeamRun"> | string | null
|
|
19900
20146
|
createdAt?: DateTimeWithAggregatesFilter<"TeamRun"> | Date | string
|
|
@@ -19921,6 +20167,7 @@ export namespace Prisma {
|
|
|
19921
20167
|
createdAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19922
20168
|
updatedAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19923
20169
|
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
20170
|
+
ownedWorkspaces?: WorkspaceListRelationFilter
|
|
19924
20171
|
}
|
|
19925
20172
|
|
|
19926
20173
|
export type TeamMemberOrderByWithRelationInput = {
|
|
@@ -19940,6 +20187,7 @@ export namespace Prisma {
|
|
|
19940
20187
|
createdAt?: SortOrder
|
|
19941
20188
|
updatedAt?: SortOrder
|
|
19942
20189
|
teamRun?: TeamRunOrderByWithRelationInput
|
|
20190
|
+
ownedWorkspaces?: WorkspaceOrderByRelationAggregateInput
|
|
19943
20191
|
}
|
|
19944
20192
|
|
|
19945
20193
|
export type TeamMemberWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -19962,6 +20210,7 @@ export namespace Prisma {
|
|
|
19962
20210
|
createdAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19963
20211
|
updatedAt?: DateTimeFilter<"TeamMember"> | Date | string
|
|
19964
20212
|
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
20213
|
+
ownedWorkspaces?: WorkspaceListRelationFilter
|
|
19965
20214
|
}, "id">
|
|
19966
20215
|
|
|
19967
20216
|
export type TeamMemberOrderByWithAggregationInput = {
|
|
@@ -20279,59 +20528,84 @@ export namespace Prisma {
|
|
|
20279
20528
|
NOT?: WorkspaceWhereInput | WorkspaceWhereInput[]
|
|
20280
20529
|
id?: StringFilter<"Workspace"> | string
|
|
20281
20530
|
taskId?: StringFilter<"Workspace"> | string
|
|
20531
|
+
parentWorkspaceId?: StringNullableFilter<"Workspace"> | string | null
|
|
20532
|
+
ownerMemberId?: StringNullableFilter<"Workspace"> | string | null
|
|
20282
20533
|
branchName?: StringFilter<"Workspace"> | string
|
|
20283
20534
|
baseBranch?: StringNullableFilter<"Workspace"> | string | null
|
|
20284
20535
|
worktreePath?: StringFilter<"Workspace"> | string
|
|
20285
20536
|
status?: StringFilter<"Workspace"> | string
|
|
20286
20537
|
commitMessage?: StringNullableFilter<"Workspace"> | string | null
|
|
20538
|
+
previewTarget?: StringNullableFilter<"Workspace"> | string | null
|
|
20287
20539
|
hibernatedAt?: DateTimeNullableFilter<"Workspace"> | Date | string | null
|
|
20288
20540
|
createdAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20289
20541
|
updatedAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20290
20542
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20543
|
+
parentWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
20544
|
+
childWorkspaces?: WorkspaceListRelationFilter
|
|
20545
|
+
ownerMember?: XOR<TeamMemberNullableRelationFilter, TeamMemberWhereInput> | null
|
|
20546
|
+
mainForTeamRuns?: TeamRunListRelationFilter
|
|
20291
20547
|
sessions?: SessionListRelationFilter
|
|
20292
20548
|
}
|
|
20293
20549
|
|
|
20294
20550
|
export type WorkspaceOrderByWithRelationInput = {
|
|
20295
20551
|
id?: SortOrder
|
|
20296
20552
|
taskId?: SortOrder
|
|
20553
|
+
parentWorkspaceId?: SortOrderInput | SortOrder
|
|
20554
|
+
ownerMemberId?: SortOrderInput | SortOrder
|
|
20297
20555
|
branchName?: SortOrder
|
|
20298
20556
|
baseBranch?: SortOrderInput | SortOrder
|
|
20299
20557
|
worktreePath?: SortOrder
|
|
20300
20558
|
status?: SortOrder
|
|
20301
20559
|
commitMessage?: SortOrderInput | SortOrder
|
|
20560
|
+
previewTarget?: SortOrderInput | SortOrder
|
|
20302
20561
|
hibernatedAt?: SortOrderInput | SortOrder
|
|
20303
20562
|
createdAt?: SortOrder
|
|
20304
20563
|
updatedAt?: SortOrder
|
|
20305
20564
|
task?: TaskOrderByWithRelationInput
|
|
20565
|
+
parentWorkspace?: WorkspaceOrderByWithRelationInput
|
|
20566
|
+
childWorkspaces?: WorkspaceOrderByRelationAggregateInput
|
|
20567
|
+
ownerMember?: TeamMemberOrderByWithRelationInput
|
|
20568
|
+
mainForTeamRuns?: TeamRunOrderByRelationAggregateInput
|
|
20306
20569
|
sessions?: SessionOrderByRelationAggregateInput
|
|
20307
20570
|
}
|
|
20308
20571
|
|
|
20309
20572
|
export type WorkspaceWhereUniqueInput = Prisma.AtLeast<{
|
|
20310
20573
|
id?: string
|
|
20574
|
+
parentWorkspaceId_ownerMemberId?: WorkspaceParentWorkspaceIdOwnerMemberIdCompoundUniqueInput
|
|
20311
20575
|
AND?: WorkspaceWhereInput | WorkspaceWhereInput[]
|
|
20312
20576
|
OR?: WorkspaceWhereInput[]
|
|
20313
20577
|
NOT?: WorkspaceWhereInput | WorkspaceWhereInput[]
|
|
20314
20578
|
taskId?: StringFilter<"Workspace"> | string
|
|
20579
|
+
parentWorkspaceId?: StringNullableFilter<"Workspace"> | string | null
|
|
20580
|
+
ownerMemberId?: StringNullableFilter<"Workspace"> | string | null
|
|
20315
20581
|
branchName?: StringFilter<"Workspace"> | string
|
|
20316
20582
|
baseBranch?: StringNullableFilter<"Workspace"> | string | null
|
|
20317
20583
|
worktreePath?: StringFilter<"Workspace"> | string
|
|
20318
20584
|
status?: StringFilter<"Workspace"> | string
|
|
20319
20585
|
commitMessage?: StringNullableFilter<"Workspace"> | string | null
|
|
20586
|
+
previewTarget?: StringNullableFilter<"Workspace"> | string | null
|
|
20320
20587
|
hibernatedAt?: DateTimeNullableFilter<"Workspace"> | Date | string | null
|
|
20321
20588
|
createdAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20322
20589
|
updatedAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
20323
20590
|
task?: XOR<TaskRelationFilter, TaskWhereInput>
|
|
20591
|
+
parentWorkspace?: XOR<WorkspaceNullableRelationFilter, WorkspaceWhereInput> | null
|
|
20592
|
+
childWorkspaces?: WorkspaceListRelationFilter
|
|
20593
|
+
ownerMember?: XOR<TeamMemberNullableRelationFilter, TeamMemberWhereInput> | null
|
|
20594
|
+
mainForTeamRuns?: TeamRunListRelationFilter
|
|
20324
20595
|
sessions?: SessionListRelationFilter
|
|
20325
|
-
}, "id">
|
|
20596
|
+
}, "id" | "parentWorkspaceId_ownerMemberId">
|
|
20326
20597
|
|
|
20327
20598
|
export type WorkspaceOrderByWithAggregationInput = {
|
|
20328
20599
|
id?: SortOrder
|
|
20329
20600
|
taskId?: SortOrder
|
|
20601
|
+
parentWorkspaceId?: SortOrderInput | SortOrder
|
|
20602
|
+
ownerMemberId?: SortOrderInput | SortOrder
|
|
20330
20603
|
branchName?: SortOrder
|
|
20331
20604
|
baseBranch?: SortOrderInput | SortOrder
|
|
20332
20605
|
worktreePath?: SortOrder
|
|
20333
20606
|
status?: SortOrder
|
|
20334
20607
|
commitMessage?: SortOrderInput | SortOrder
|
|
20608
|
+
previewTarget?: SortOrderInput | SortOrder
|
|
20335
20609
|
hibernatedAt?: SortOrderInput | SortOrder
|
|
20336
20610
|
createdAt?: SortOrder
|
|
20337
20611
|
updatedAt?: SortOrder
|
|
@@ -20346,11 +20620,14 @@ export namespace Prisma {
|
|
|
20346
20620
|
NOT?: WorkspaceScalarWhereWithAggregatesInput | WorkspaceScalarWhereWithAggregatesInput[]
|
|
20347
20621
|
id?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20348
20622
|
taskId?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20623
|
+
parentWorkspaceId?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20624
|
+
ownerMemberId?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20349
20625
|
branchName?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20350
20626
|
baseBranch?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20351
20627
|
worktreePath?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20352
20628
|
status?: StringWithAggregatesFilter<"Workspace"> | string
|
|
20353
20629
|
commitMessage?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20630
|
+
previewTarget?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
|
|
20354
20631
|
hibernatedAt?: DateTimeNullableWithAggregatesFilter<"Workspace"> | Date | string | null
|
|
20355
20632
|
createdAt?: DateTimeWithAggregatesFilter<"Workspace"> | Date | string
|
|
20356
20633
|
updatedAt?: DateTimeWithAggregatesFilter<"Workspace"> | Date | string
|
|
@@ -21151,6 +21428,7 @@ export namespace Prisma {
|
|
|
21151
21428
|
createdAt?: Date | string
|
|
21152
21429
|
updatedAt?: Date | string
|
|
21153
21430
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
21431
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
21154
21432
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
21155
21433
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
21156
21434
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
@@ -21160,6 +21438,7 @@ export namespace Prisma {
|
|
|
21160
21438
|
export type TeamRunUncheckedCreateInput = {
|
|
21161
21439
|
id?: string
|
|
21162
21440
|
taskId: string
|
|
21441
|
+
mainWorkspaceId?: string | null
|
|
21163
21442
|
mode: string
|
|
21164
21443
|
reviewReason?: string | null
|
|
21165
21444
|
createdAt?: Date | string
|
|
@@ -21177,6 +21456,7 @@ export namespace Prisma {
|
|
|
21177
21456
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21178
21457
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21179
21458
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
21459
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
21180
21460
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
21181
21461
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
21182
21462
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
@@ -21186,6 +21466,7 @@ export namespace Prisma {
|
|
|
21186
21466
|
export type TeamRunUncheckedUpdateInput = {
|
|
21187
21467
|
id?: StringFieldUpdateOperationsInput | string
|
|
21188
21468
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
21469
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21189
21470
|
mode?: StringFieldUpdateOperationsInput | string
|
|
21190
21471
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21191
21472
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21199,6 +21480,7 @@ export namespace Prisma {
|
|
|
21199
21480
|
export type TeamRunCreateManyInput = {
|
|
21200
21481
|
id?: string
|
|
21201
21482
|
taskId: string
|
|
21483
|
+
mainWorkspaceId?: string | null
|
|
21202
21484
|
mode: string
|
|
21203
21485
|
reviewReason?: string | null
|
|
21204
21486
|
createdAt?: Date | string
|
|
@@ -21216,6 +21498,7 @@ export namespace Prisma {
|
|
|
21216
21498
|
export type TeamRunUncheckedUpdateManyInput = {
|
|
21217
21499
|
id?: StringFieldUpdateOperationsInput | string
|
|
21218
21500
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
21501
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21219
21502
|
mode?: StringFieldUpdateOperationsInput | string
|
|
21220
21503
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21221
21504
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21238,6 +21521,7 @@ export namespace Prisma {
|
|
|
21238
21521
|
createdAt?: Date | string
|
|
21239
21522
|
updatedAt?: Date | string
|
|
21240
21523
|
teamRun: TeamRunCreateNestedOneWithoutMembersInput
|
|
21524
|
+
ownedWorkspaces?: WorkspaceCreateNestedManyWithoutOwnerMemberInput
|
|
21241
21525
|
}
|
|
21242
21526
|
|
|
21243
21527
|
export type TeamMemberUncheckedCreateInput = {
|
|
@@ -21256,6 +21540,7 @@ export namespace Prisma {
|
|
|
21256
21540
|
status?: string
|
|
21257
21541
|
createdAt?: Date | string
|
|
21258
21542
|
updatedAt?: Date | string
|
|
21543
|
+
ownedWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutOwnerMemberInput
|
|
21259
21544
|
}
|
|
21260
21545
|
|
|
21261
21546
|
export type TeamMemberUpdateInput = {
|
|
@@ -21274,6 +21559,7 @@ export namespace Prisma {
|
|
|
21274
21559
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21275
21560
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21276
21561
|
teamRun?: TeamRunUpdateOneRequiredWithoutMembersNestedInput
|
|
21562
|
+
ownedWorkspaces?: WorkspaceUpdateManyWithoutOwnerMemberNestedInput
|
|
21277
21563
|
}
|
|
21278
21564
|
|
|
21279
21565
|
export type TeamMemberUncheckedUpdateInput = {
|
|
@@ -21292,6 +21578,7 @@ export namespace Prisma {
|
|
|
21292
21578
|
status?: StringFieldUpdateOperationsInput | string
|
|
21293
21579
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21294
21580
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21581
|
+
ownedWorkspaces?: WorkspaceUncheckedUpdateManyWithoutOwnerMemberNestedInput
|
|
21295
21582
|
}
|
|
21296
21583
|
|
|
21297
21584
|
export type TeamMemberCreateManyInput = {
|
|
@@ -21659,24 +21946,34 @@ export namespace Prisma {
|
|
|
21659
21946
|
worktreePath: string
|
|
21660
21947
|
status?: string
|
|
21661
21948
|
commitMessage?: string | null
|
|
21949
|
+
previewTarget?: string | null
|
|
21662
21950
|
hibernatedAt?: Date | string | null
|
|
21663
21951
|
createdAt?: Date | string
|
|
21664
21952
|
updatedAt?: Date | string
|
|
21665
21953
|
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
21954
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
21955
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
21956
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
21957
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
21666
21958
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
21667
21959
|
}
|
|
21668
21960
|
|
|
21669
21961
|
export type WorkspaceUncheckedCreateInput = {
|
|
21670
21962
|
id?: string
|
|
21671
21963
|
taskId: string
|
|
21964
|
+
parentWorkspaceId?: string | null
|
|
21965
|
+
ownerMemberId?: string | null
|
|
21672
21966
|
branchName: string
|
|
21673
21967
|
baseBranch?: string | null
|
|
21674
21968
|
worktreePath: string
|
|
21675
21969
|
status?: string
|
|
21676
21970
|
commitMessage?: string | null
|
|
21971
|
+
previewTarget?: string | null
|
|
21677
21972
|
hibernatedAt?: Date | string | null
|
|
21678
21973
|
createdAt?: Date | string
|
|
21679
21974
|
updatedAt?: Date | string
|
|
21975
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
21976
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
21680
21977
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
21681
21978
|
}
|
|
21682
21979
|
|
|
@@ -21687,35 +21984,48 @@ export namespace Prisma {
|
|
|
21687
21984
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21688
21985
|
status?: StringFieldUpdateOperationsInput | string
|
|
21689
21986
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21987
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21690
21988
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21691
21989
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21692
21990
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21693
21991
|
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
21992
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
21993
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
21994
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
21995
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
21694
21996
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
21695
21997
|
}
|
|
21696
21998
|
|
|
21697
21999
|
export type WorkspaceUncheckedUpdateInput = {
|
|
21698
22000
|
id?: StringFieldUpdateOperationsInput | string
|
|
21699
22001
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
22002
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22003
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21700
22004
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
21701
22005
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21702
22006
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21703
22007
|
status?: StringFieldUpdateOperationsInput | string
|
|
21704
22008
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22009
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21705
22010
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21706
22011
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21707
22012
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22013
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
22014
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
21708
22015
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
21709
22016
|
}
|
|
21710
22017
|
|
|
21711
22018
|
export type WorkspaceCreateManyInput = {
|
|
21712
22019
|
id?: string
|
|
21713
22020
|
taskId: string
|
|
22021
|
+
parentWorkspaceId?: string | null
|
|
22022
|
+
ownerMemberId?: string | null
|
|
21714
22023
|
branchName: string
|
|
21715
22024
|
baseBranch?: string | null
|
|
21716
22025
|
worktreePath: string
|
|
21717
22026
|
status?: string
|
|
21718
22027
|
commitMessage?: string | null
|
|
22028
|
+
previewTarget?: string | null
|
|
21719
22029
|
hibernatedAt?: Date | string | null
|
|
21720
22030
|
createdAt?: Date | string
|
|
21721
22031
|
updatedAt?: Date | string
|
|
@@ -21728,6 +22038,7 @@ export namespace Prisma {
|
|
|
21728
22038
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21729
22039
|
status?: StringFieldUpdateOperationsInput | string
|
|
21730
22040
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22041
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21731
22042
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21732
22043
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21733
22044
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -21736,11 +22047,14 @@ export namespace Prisma {
|
|
|
21736
22047
|
export type WorkspaceUncheckedUpdateManyInput = {
|
|
21737
22048
|
id?: StringFieldUpdateOperationsInput | string
|
|
21738
22049
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
22050
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22051
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21739
22052
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
21740
22053
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21741
22054
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
21742
22055
|
status?: StringFieldUpdateOperationsInput | string
|
|
21743
22056
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22057
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21744
22058
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21745
22059
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21746
22060
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -22537,6 +22851,11 @@ export namespace Prisma {
|
|
|
22537
22851
|
isNot?: TaskWhereInput
|
|
22538
22852
|
}
|
|
22539
22853
|
|
|
22854
|
+
export type WorkspaceNullableRelationFilter = {
|
|
22855
|
+
is?: WorkspaceWhereInput | null
|
|
22856
|
+
isNot?: WorkspaceWhereInput | null
|
|
22857
|
+
}
|
|
22858
|
+
|
|
22540
22859
|
export type TeamMemberListRelationFilter = {
|
|
22541
22860
|
every?: TeamMemberWhereInput
|
|
22542
22861
|
some?: TeamMemberWhereInput
|
|
@@ -22580,6 +22899,7 @@ export namespace Prisma {
|
|
|
22580
22899
|
export type TeamRunCountOrderByAggregateInput = {
|
|
22581
22900
|
id?: SortOrder
|
|
22582
22901
|
taskId?: SortOrder
|
|
22902
|
+
mainWorkspaceId?: SortOrder
|
|
22583
22903
|
mode?: SortOrder
|
|
22584
22904
|
reviewReason?: SortOrder
|
|
22585
22905
|
createdAt?: SortOrder
|
|
@@ -22589,6 +22909,7 @@ export namespace Prisma {
|
|
|
22589
22909
|
export type TeamRunMaxOrderByAggregateInput = {
|
|
22590
22910
|
id?: SortOrder
|
|
22591
22911
|
taskId?: SortOrder
|
|
22912
|
+
mainWorkspaceId?: SortOrder
|
|
22592
22913
|
mode?: SortOrder
|
|
22593
22914
|
reviewReason?: SortOrder
|
|
22594
22915
|
createdAt?: SortOrder
|
|
@@ -22598,6 +22919,7 @@ export namespace Prisma {
|
|
|
22598
22919
|
export type TeamRunMinOrderByAggregateInput = {
|
|
22599
22920
|
id?: SortOrder
|
|
22600
22921
|
taskId?: SortOrder
|
|
22922
|
+
mainWorkspaceId?: SortOrder
|
|
22601
22923
|
mode?: SortOrder
|
|
22602
22924
|
reviewReason?: SortOrder
|
|
22603
22925
|
createdAt?: SortOrder
|
|
@@ -22816,24 +23138,47 @@ export namespace Prisma {
|
|
|
22816
23138
|
roomReplyReminderCount?: SortOrder
|
|
22817
23139
|
}
|
|
22818
23140
|
|
|
23141
|
+
export type TeamMemberNullableRelationFilter = {
|
|
23142
|
+
is?: TeamMemberWhereInput | null
|
|
23143
|
+
isNot?: TeamMemberWhereInput | null
|
|
23144
|
+
}
|
|
23145
|
+
|
|
23146
|
+
export type TeamRunListRelationFilter = {
|
|
23147
|
+
every?: TeamRunWhereInput
|
|
23148
|
+
some?: TeamRunWhereInput
|
|
23149
|
+
none?: TeamRunWhereInput
|
|
23150
|
+
}
|
|
23151
|
+
|
|
22819
23152
|
export type SessionListRelationFilter = {
|
|
22820
23153
|
every?: SessionWhereInput
|
|
22821
23154
|
some?: SessionWhereInput
|
|
22822
23155
|
none?: SessionWhereInput
|
|
22823
23156
|
}
|
|
22824
23157
|
|
|
23158
|
+
export type TeamRunOrderByRelationAggregateInput = {
|
|
23159
|
+
_count?: SortOrder
|
|
23160
|
+
}
|
|
23161
|
+
|
|
22825
23162
|
export type SessionOrderByRelationAggregateInput = {
|
|
22826
23163
|
_count?: SortOrder
|
|
22827
23164
|
}
|
|
22828
23165
|
|
|
23166
|
+
export type WorkspaceParentWorkspaceIdOwnerMemberIdCompoundUniqueInput = {
|
|
23167
|
+
parentWorkspaceId: string
|
|
23168
|
+
ownerMemberId: string
|
|
23169
|
+
}
|
|
23170
|
+
|
|
22829
23171
|
export type WorkspaceCountOrderByAggregateInput = {
|
|
22830
23172
|
id?: SortOrder
|
|
22831
23173
|
taskId?: SortOrder
|
|
23174
|
+
parentWorkspaceId?: SortOrder
|
|
23175
|
+
ownerMemberId?: SortOrder
|
|
22832
23176
|
branchName?: SortOrder
|
|
22833
23177
|
baseBranch?: SortOrder
|
|
22834
23178
|
worktreePath?: SortOrder
|
|
22835
23179
|
status?: SortOrder
|
|
22836
23180
|
commitMessage?: SortOrder
|
|
23181
|
+
previewTarget?: SortOrder
|
|
22837
23182
|
hibernatedAt?: SortOrder
|
|
22838
23183
|
createdAt?: SortOrder
|
|
22839
23184
|
updatedAt?: SortOrder
|
|
@@ -22842,11 +23187,14 @@ export namespace Prisma {
|
|
|
22842
23187
|
export type WorkspaceMaxOrderByAggregateInput = {
|
|
22843
23188
|
id?: SortOrder
|
|
22844
23189
|
taskId?: SortOrder
|
|
23190
|
+
parentWorkspaceId?: SortOrder
|
|
23191
|
+
ownerMemberId?: SortOrder
|
|
22845
23192
|
branchName?: SortOrder
|
|
22846
23193
|
baseBranch?: SortOrder
|
|
22847
23194
|
worktreePath?: SortOrder
|
|
22848
23195
|
status?: SortOrder
|
|
22849
23196
|
commitMessage?: SortOrder
|
|
23197
|
+
previewTarget?: SortOrder
|
|
22850
23198
|
hibernatedAt?: SortOrder
|
|
22851
23199
|
createdAt?: SortOrder
|
|
22852
23200
|
updatedAt?: SortOrder
|
|
@@ -22855,11 +23203,14 @@ export namespace Prisma {
|
|
|
22855
23203
|
export type WorkspaceMinOrderByAggregateInput = {
|
|
22856
23204
|
id?: SortOrder
|
|
22857
23205
|
taskId?: SortOrder
|
|
23206
|
+
parentWorkspaceId?: SortOrder
|
|
23207
|
+
ownerMemberId?: SortOrder
|
|
22858
23208
|
branchName?: SortOrder
|
|
22859
23209
|
baseBranch?: SortOrder
|
|
22860
23210
|
worktreePath?: SortOrder
|
|
22861
23211
|
status?: SortOrder
|
|
22862
23212
|
commitMessage?: SortOrder
|
|
23213
|
+
previewTarget?: SortOrder
|
|
22863
23214
|
hibernatedAt?: SortOrder
|
|
22864
23215
|
createdAt?: SortOrder
|
|
22865
23216
|
updatedAt?: SortOrder
|
|
@@ -23320,6 +23671,12 @@ export namespace Prisma {
|
|
|
23320
23671
|
connect?: TaskWhereUniqueInput
|
|
23321
23672
|
}
|
|
23322
23673
|
|
|
23674
|
+
export type WorkspaceCreateNestedOneWithoutMainForTeamRunsInput = {
|
|
23675
|
+
create?: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
23676
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutMainForTeamRunsInput
|
|
23677
|
+
connect?: WorkspaceWhereUniqueInput
|
|
23678
|
+
}
|
|
23679
|
+
|
|
23323
23680
|
export type TeamMemberCreateNestedManyWithoutTeamRunInput = {
|
|
23324
23681
|
create?: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput> | TeamMemberCreateWithoutTeamRunInput[] | TeamMemberUncheckedCreateWithoutTeamRunInput[]
|
|
23325
23682
|
connectOrCreate?: TeamMemberCreateOrConnectWithoutTeamRunInput | TeamMemberCreateOrConnectWithoutTeamRunInput[]
|
|
@@ -23384,6 +23741,16 @@ export namespace Prisma {
|
|
|
23384
23741
|
update?: XOR<XOR<TaskUpdateToOneWithWhereWithoutTeamRunInput, TaskUpdateWithoutTeamRunInput>, TaskUncheckedUpdateWithoutTeamRunInput>
|
|
23385
23742
|
}
|
|
23386
23743
|
|
|
23744
|
+
export type WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput = {
|
|
23745
|
+
create?: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
23746
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutMainForTeamRunsInput
|
|
23747
|
+
upsert?: WorkspaceUpsertWithoutMainForTeamRunsInput
|
|
23748
|
+
disconnect?: WorkspaceWhereInput | boolean
|
|
23749
|
+
delete?: WorkspaceWhereInput | boolean
|
|
23750
|
+
connect?: WorkspaceWhereUniqueInput
|
|
23751
|
+
update?: XOR<XOR<WorkspaceUpdateToOneWithWhereWithoutMainForTeamRunsInput, WorkspaceUpdateWithoutMainForTeamRunsInput>, WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput>
|
|
23752
|
+
}
|
|
23753
|
+
|
|
23387
23754
|
export type TeamMemberUpdateManyWithoutTeamRunNestedInput = {
|
|
23388
23755
|
create?: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput> | TeamMemberCreateWithoutTeamRunInput[] | TeamMemberUncheckedCreateWithoutTeamRunInput[]
|
|
23389
23756
|
connectOrCreate?: TeamMemberCreateOrConnectWithoutTeamRunInput | TeamMemberCreateOrConnectWithoutTeamRunInput[]
|
|
@@ -23502,6 +23869,20 @@ export namespace Prisma {
|
|
|
23502
23869
|
connect?: TeamRunWhereUniqueInput
|
|
23503
23870
|
}
|
|
23504
23871
|
|
|
23872
|
+
export type WorkspaceCreateNestedManyWithoutOwnerMemberInput = {
|
|
23873
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23874
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23875
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23876
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23877
|
+
}
|
|
23878
|
+
|
|
23879
|
+
export type WorkspaceUncheckedCreateNestedManyWithoutOwnerMemberInput = {
|
|
23880
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23881
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23882
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23883
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23884
|
+
}
|
|
23885
|
+
|
|
23505
23886
|
export type TeamRunUpdateOneRequiredWithoutMembersNestedInput = {
|
|
23506
23887
|
create?: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
23507
23888
|
connectOrCreate?: TeamRunCreateOrConnectWithoutMembersInput
|
|
@@ -23510,6 +23891,34 @@ export namespace Prisma {
|
|
|
23510
23891
|
update?: XOR<XOR<TeamRunUpdateToOneWithWhereWithoutMembersInput, TeamRunUpdateWithoutMembersInput>, TeamRunUncheckedUpdateWithoutMembersInput>
|
|
23511
23892
|
}
|
|
23512
23893
|
|
|
23894
|
+
export type WorkspaceUpdateManyWithoutOwnerMemberNestedInput = {
|
|
23895
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23896
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23897
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23898
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23899
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23900
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23901
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23902
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23903
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23904
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput | WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput[]
|
|
23905
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
23906
|
+
}
|
|
23907
|
+
|
|
23908
|
+
export type WorkspaceUncheckedUpdateManyWithoutOwnerMemberNestedInput = {
|
|
23909
|
+
create?: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput> | WorkspaceCreateWithoutOwnerMemberInput[] | WorkspaceUncheckedCreateWithoutOwnerMemberInput[]
|
|
23910
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutOwnerMemberInput | WorkspaceCreateOrConnectWithoutOwnerMemberInput[]
|
|
23911
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23912
|
+
createMany?: WorkspaceCreateManyOwnerMemberInputEnvelope
|
|
23913
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23914
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23915
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23916
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23917
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput | WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput[]
|
|
23918
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput | WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput[]
|
|
23919
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
23920
|
+
}
|
|
23921
|
+
|
|
23513
23922
|
export type TeamRunCreateNestedOneWithoutMessagesInput = {
|
|
23514
23923
|
create?: XOR<TeamRunCreateWithoutMessagesInput, TeamRunUncheckedCreateWithoutMessagesInput>
|
|
23515
23924
|
connectOrCreate?: TeamRunCreateOrConnectWithoutMessagesInput
|
|
@@ -23562,6 +23971,32 @@ export namespace Prisma {
|
|
|
23562
23971
|
connect?: TaskWhereUniqueInput
|
|
23563
23972
|
}
|
|
23564
23973
|
|
|
23974
|
+
export type WorkspaceCreateNestedOneWithoutChildWorkspacesInput = {
|
|
23975
|
+
create?: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
23976
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutChildWorkspacesInput
|
|
23977
|
+
connect?: WorkspaceWhereUniqueInput
|
|
23978
|
+
}
|
|
23979
|
+
|
|
23980
|
+
export type WorkspaceCreateNestedManyWithoutParentWorkspaceInput = {
|
|
23981
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
23982
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
23983
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
23984
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
23985
|
+
}
|
|
23986
|
+
|
|
23987
|
+
export type TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput = {
|
|
23988
|
+
create?: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
23989
|
+
connectOrCreate?: TeamMemberCreateOrConnectWithoutOwnedWorkspacesInput
|
|
23990
|
+
connect?: TeamMemberWhereUniqueInput
|
|
23991
|
+
}
|
|
23992
|
+
|
|
23993
|
+
export type TeamRunCreateNestedManyWithoutMainWorkspaceInput = {
|
|
23994
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
23995
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
23996
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
23997
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
23998
|
+
}
|
|
23999
|
+
|
|
23565
24000
|
export type SessionCreateNestedManyWithoutWorkspaceInput = {
|
|
23566
24001
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23567
24002
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -23569,6 +24004,20 @@ export namespace Prisma {
|
|
|
23569
24004
|
connect?: SessionWhereUniqueInput | SessionWhereUniqueInput[]
|
|
23570
24005
|
}
|
|
23571
24006
|
|
|
24007
|
+
export type WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput = {
|
|
24008
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24009
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24010
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24011
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24012
|
+
}
|
|
24013
|
+
|
|
24014
|
+
export type TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput = {
|
|
24015
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24016
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24017
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24018
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24019
|
+
}
|
|
24020
|
+
|
|
23572
24021
|
export type SessionUncheckedCreateNestedManyWithoutWorkspaceInput = {
|
|
23573
24022
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23574
24023
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -23584,6 +24033,54 @@ export namespace Prisma {
|
|
|
23584
24033
|
update?: XOR<XOR<TaskUpdateToOneWithWhereWithoutWorkspacesInput, TaskUpdateWithoutWorkspacesInput>, TaskUncheckedUpdateWithoutWorkspacesInput>
|
|
23585
24034
|
}
|
|
23586
24035
|
|
|
24036
|
+
export type WorkspaceUpdateOneWithoutChildWorkspacesNestedInput = {
|
|
24037
|
+
create?: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
24038
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutChildWorkspacesInput
|
|
24039
|
+
upsert?: WorkspaceUpsertWithoutChildWorkspacesInput
|
|
24040
|
+
disconnect?: WorkspaceWhereInput | boolean
|
|
24041
|
+
delete?: WorkspaceWhereInput | boolean
|
|
24042
|
+
connect?: WorkspaceWhereUniqueInput
|
|
24043
|
+
update?: XOR<XOR<WorkspaceUpdateToOneWithWhereWithoutChildWorkspacesInput, WorkspaceUpdateWithoutChildWorkspacesInput>, WorkspaceUncheckedUpdateWithoutChildWorkspacesInput>
|
|
24044
|
+
}
|
|
24045
|
+
|
|
24046
|
+
export type WorkspaceUpdateManyWithoutParentWorkspaceNestedInput = {
|
|
24047
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24048
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24049
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24050
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24051
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24052
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24053
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24054
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24055
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24056
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput | WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput[]
|
|
24057
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
24058
|
+
}
|
|
24059
|
+
|
|
24060
|
+
export type TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput = {
|
|
24061
|
+
create?: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
24062
|
+
connectOrCreate?: TeamMemberCreateOrConnectWithoutOwnedWorkspacesInput
|
|
24063
|
+
upsert?: TeamMemberUpsertWithoutOwnedWorkspacesInput
|
|
24064
|
+
disconnect?: TeamMemberWhereInput | boolean
|
|
24065
|
+
delete?: TeamMemberWhereInput | boolean
|
|
24066
|
+
connect?: TeamMemberWhereUniqueInput
|
|
24067
|
+
update?: XOR<XOR<TeamMemberUpdateToOneWithWhereWithoutOwnedWorkspacesInput, TeamMemberUpdateWithoutOwnedWorkspacesInput>, TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput>
|
|
24068
|
+
}
|
|
24069
|
+
|
|
24070
|
+
export type TeamRunUpdateManyWithoutMainWorkspaceNestedInput = {
|
|
24071
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24072
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24073
|
+
upsert?: TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24074
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24075
|
+
set?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24076
|
+
disconnect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24077
|
+
delete?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24078
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24079
|
+
update?: TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24080
|
+
updateMany?: TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput | TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput[]
|
|
24081
|
+
deleteMany?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
24082
|
+
}
|
|
24083
|
+
|
|
23587
24084
|
export type SessionUpdateManyWithoutWorkspaceNestedInput = {
|
|
23588
24085
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23589
24086
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -23598,6 +24095,34 @@ export namespace Prisma {
|
|
|
23598
24095
|
deleteMany?: SessionScalarWhereInput | SessionScalarWhereInput[]
|
|
23599
24096
|
}
|
|
23600
24097
|
|
|
24098
|
+
export type WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput = {
|
|
24099
|
+
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
24100
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
24101
|
+
upsert?: WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24102
|
+
createMany?: WorkspaceCreateManyParentWorkspaceInputEnvelope
|
|
24103
|
+
set?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24104
|
+
disconnect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24105
|
+
delete?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24106
|
+
connect?: WorkspaceWhereUniqueInput | WorkspaceWhereUniqueInput[]
|
|
24107
|
+
update?: WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput | WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput[]
|
|
24108
|
+
updateMany?: WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput | WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput[]
|
|
24109
|
+
deleteMany?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
24110
|
+
}
|
|
24111
|
+
|
|
24112
|
+
export type TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput = {
|
|
24113
|
+
create?: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput> | TeamRunCreateWithoutMainWorkspaceInput[] | TeamRunUncheckedCreateWithoutMainWorkspaceInput[]
|
|
24114
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutMainWorkspaceInput | TeamRunCreateOrConnectWithoutMainWorkspaceInput[]
|
|
24115
|
+
upsert?: TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24116
|
+
createMany?: TeamRunCreateManyMainWorkspaceInputEnvelope
|
|
24117
|
+
set?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24118
|
+
disconnect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24119
|
+
delete?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24120
|
+
connect?: TeamRunWhereUniqueInput | TeamRunWhereUniqueInput[]
|
|
24121
|
+
update?: TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput | TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput[]
|
|
24122
|
+
updateMany?: TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput | TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput[]
|
|
24123
|
+
deleteMany?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
24124
|
+
}
|
|
24125
|
+
|
|
23601
24126
|
export type SessionUncheckedUpdateManyWithoutWorkspaceNestedInput = {
|
|
23602
24127
|
create?: XOR<SessionCreateWithoutWorkspaceInput, SessionUncheckedCreateWithoutWorkspaceInput> | SessionCreateWithoutWorkspaceInput[] | SessionUncheckedCreateWithoutWorkspaceInput[]
|
|
23603
24128
|
connectOrCreate?: SessionCreateOrConnectWithoutWorkspaceInput | SessionCreateOrConnectWithoutWorkspaceInput[]
|
|
@@ -24001,22 +24526,32 @@ export namespace Prisma {
|
|
|
24001
24526
|
worktreePath: string
|
|
24002
24527
|
status?: string
|
|
24003
24528
|
commitMessage?: string | null
|
|
24529
|
+
previewTarget?: string | null
|
|
24004
24530
|
hibernatedAt?: Date | string | null
|
|
24005
24531
|
createdAt?: Date | string
|
|
24006
24532
|
updatedAt?: Date | string
|
|
24533
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
24534
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
24535
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
24536
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
24007
24537
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
24008
24538
|
}
|
|
24009
24539
|
|
|
24010
24540
|
export type WorkspaceUncheckedCreateWithoutTaskInput = {
|
|
24011
24541
|
id?: string
|
|
24542
|
+
parentWorkspaceId?: string | null
|
|
24543
|
+
ownerMemberId?: string | null
|
|
24012
24544
|
branchName: string
|
|
24013
24545
|
baseBranch?: string | null
|
|
24014
24546
|
worktreePath: string
|
|
24015
24547
|
status?: string
|
|
24016
24548
|
commitMessage?: string | null
|
|
24549
|
+
previewTarget?: string | null
|
|
24017
24550
|
hibernatedAt?: Date | string | null
|
|
24018
24551
|
createdAt?: Date | string
|
|
24019
24552
|
updatedAt?: Date | string
|
|
24553
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
24554
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
24020
24555
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
24021
24556
|
}
|
|
24022
24557
|
|
|
@@ -24035,6 +24570,7 @@ export namespace Prisma {
|
|
|
24035
24570
|
reviewReason?: string | null
|
|
24036
24571
|
createdAt?: Date | string
|
|
24037
24572
|
updatedAt?: Date | string
|
|
24573
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24038
24574
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24039
24575
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24040
24576
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
@@ -24043,6 +24579,7 @@ export namespace Prisma {
|
|
|
24043
24579
|
|
|
24044
24580
|
export type TeamRunUncheckedCreateWithoutTaskInput = {
|
|
24045
24581
|
id?: string
|
|
24582
|
+
mainWorkspaceId?: string | null
|
|
24046
24583
|
mode: string
|
|
24047
24584
|
reviewReason?: string | null
|
|
24048
24585
|
createdAt?: Date | string
|
|
@@ -24123,11 +24660,14 @@ export namespace Prisma {
|
|
|
24123
24660
|
NOT?: WorkspaceScalarWhereInput | WorkspaceScalarWhereInput[]
|
|
24124
24661
|
id?: StringFilter<"Workspace"> | string
|
|
24125
24662
|
taskId?: StringFilter<"Workspace"> | string
|
|
24663
|
+
parentWorkspaceId?: StringNullableFilter<"Workspace"> | string | null
|
|
24664
|
+
ownerMemberId?: StringNullableFilter<"Workspace"> | string | null
|
|
24126
24665
|
branchName?: StringFilter<"Workspace"> | string
|
|
24127
24666
|
baseBranch?: StringNullableFilter<"Workspace"> | string | null
|
|
24128
24667
|
worktreePath?: StringFilter<"Workspace"> | string
|
|
24129
24668
|
status?: StringFilter<"Workspace"> | string
|
|
24130
24669
|
commitMessage?: StringNullableFilter<"Workspace"> | string | null
|
|
24670
|
+
previewTarget?: StringNullableFilter<"Workspace"> | string | null
|
|
24131
24671
|
hibernatedAt?: DateTimeNullableFilter<"Workspace"> | Date | string | null
|
|
24132
24672
|
createdAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
24133
24673
|
updatedAt?: DateTimeFilter<"Workspace"> | Date | string
|
|
@@ -24150,6 +24690,7 @@ export namespace Prisma {
|
|
|
24150
24690
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24151
24691
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24152
24692
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24693
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24153
24694
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24154
24695
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24155
24696
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24158,6 +24699,7 @@ export namespace Prisma {
|
|
|
24158
24699
|
|
|
24159
24700
|
export type TeamRunUncheckedUpdateWithoutTaskInput = {
|
|
24160
24701
|
id?: StringFieldUpdateOperationsInput | string
|
|
24702
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24161
24703
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24162
24704
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24163
24705
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24290,6 +24832,47 @@ export namespace Prisma {
|
|
|
24290
24832
|
create: XOR<TaskCreateWithoutTeamRunInput, TaskUncheckedCreateWithoutTeamRunInput>
|
|
24291
24833
|
}
|
|
24292
24834
|
|
|
24835
|
+
export type WorkspaceCreateWithoutMainForTeamRunsInput = {
|
|
24836
|
+
id?: string
|
|
24837
|
+
branchName: string
|
|
24838
|
+
baseBranch?: string | null
|
|
24839
|
+
worktreePath: string
|
|
24840
|
+
status?: string
|
|
24841
|
+
commitMessage?: string | null
|
|
24842
|
+
previewTarget?: string | null
|
|
24843
|
+
hibernatedAt?: Date | string | null
|
|
24844
|
+
createdAt?: Date | string
|
|
24845
|
+
updatedAt?: Date | string
|
|
24846
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
24847
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
24848
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
24849
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
24850
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
24851
|
+
}
|
|
24852
|
+
|
|
24853
|
+
export type WorkspaceUncheckedCreateWithoutMainForTeamRunsInput = {
|
|
24854
|
+
id?: string
|
|
24855
|
+
taskId: string
|
|
24856
|
+
parentWorkspaceId?: string | null
|
|
24857
|
+
ownerMemberId?: string | null
|
|
24858
|
+
branchName: string
|
|
24859
|
+
baseBranch?: string | null
|
|
24860
|
+
worktreePath: string
|
|
24861
|
+
status?: string
|
|
24862
|
+
commitMessage?: string | null
|
|
24863
|
+
previewTarget?: string | null
|
|
24864
|
+
hibernatedAt?: Date | string | null
|
|
24865
|
+
createdAt?: Date | string
|
|
24866
|
+
updatedAt?: Date | string
|
|
24867
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
24868
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
24869
|
+
}
|
|
24870
|
+
|
|
24871
|
+
export type WorkspaceCreateOrConnectWithoutMainForTeamRunsInput = {
|
|
24872
|
+
where: WorkspaceWhereUniqueInput
|
|
24873
|
+
create: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
24874
|
+
}
|
|
24875
|
+
|
|
24293
24876
|
export type TeamMemberCreateWithoutTeamRunInput = {
|
|
24294
24877
|
id?: string
|
|
24295
24878
|
presetId?: string | null
|
|
@@ -24305,6 +24888,7 @@ export namespace Prisma {
|
|
|
24305
24888
|
status?: string
|
|
24306
24889
|
createdAt?: Date | string
|
|
24307
24890
|
updatedAt?: Date | string
|
|
24891
|
+
ownedWorkspaces?: WorkspaceCreateNestedManyWithoutOwnerMemberInput
|
|
24308
24892
|
}
|
|
24309
24893
|
|
|
24310
24894
|
export type TeamMemberUncheckedCreateWithoutTeamRunInput = {
|
|
@@ -24322,6 +24906,7 @@ export namespace Prisma {
|
|
|
24322
24906
|
status?: string
|
|
24323
24907
|
createdAt?: Date | string
|
|
24324
24908
|
updatedAt?: Date | string
|
|
24909
|
+
ownedWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutOwnerMemberInput
|
|
24325
24910
|
}
|
|
24326
24911
|
|
|
24327
24912
|
export type TeamMemberCreateOrConnectWithoutTeamRunInput = {
|
|
@@ -24479,25 +25064,72 @@ export namespace Prisma {
|
|
|
24479
25064
|
workspaces?: WorkspaceUncheckedUpdateManyWithoutTaskNestedInput
|
|
24480
25065
|
}
|
|
24481
25066
|
|
|
24482
|
-
export type
|
|
24483
|
-
|
|
24484
|
-
|
|
24485
|
-
|
|
25067
|
+
export type WorkspaceUpsertWithoutMainForTeamRunsInput = {
|
|
25068
|
+
update: XOR<WorkspaceUpdateWithoutMainForTeamRunsInput, WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput>
|
|
25069
|
+
create: XOR<WorkspaceCreateWithoutMainForTeamRunsInput, WorkspaceUncheckedCreateWithoutMainForTeamRunsInput>
|
|
25070
|
+
where?: WorkspaceWhereInput
|
|
24486
25071
|
}
|
|
24487
25072
|
|
|
24488
|
-
export type
|
|
24489
|
-
where
|
|
24490
|
-
data: XOR<
|
|
25073
|
+
export type WorkspaceUpdateToOneWithWhereWithoutMainForTeamRunsInput = {
|
|
25074
|
+
where?: WorkspaceWhereInput
|
|
25075
|
+
data: XOR<WorkspaceUpdateWithoutMainForTeamRunsInput, WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput>
|
|
24491
25076
|
}
|
|
24492
25077
|
|
|
24493
|
-
export type
|
|
24494
|
-
|
|
24495
|
-
|
|
25078
|
+
export type WorkspaceUpdateWithoutMainForTeamRunsInput = {
|
|
25079
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25080
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25081
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25082
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25083
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25084
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25085
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25086
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25087
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25088
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25089
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
25090
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
25091
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
25092
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
25093
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
24496
25094
|
}
|
|
24497
25095
|
|
|
24498
|
-
export type
|
|
24499
|
-
|
|
24500
|
-
|
|
25096
|
+
export type WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput = {
|
|
25097
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25098
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
25099
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25100
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25101
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25102
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25103
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25104
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25105
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25106
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25107
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25108
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25109
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25110
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
25111
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25112
|
+
}
|
|
25113
|
+
|
|
25114
|
+
export type TeamMemberUpsertWithWhereUniqueWithoutTeamRunInput = {
|
|
25115
|
+
where: TeamMemberWhereUniqueInput
|
|
25116
|
+
update: XOR<TeamMemberUpdateWithoutTeamRunInput, TeamMemberUncheckedUpdateWithoutTeamRunInput>
|
|
25117
|
+
create: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput>
|
|
25118
|
+
}
|
|
25119
|
+
|
|
25120
|
+
export type TeamMemberUpdateWithWhereUniqueWithoutTeamRunInput = {
|
|
25121
|
+
where: TeamMemberWhereUniqueInput
|
|
25122
|
+
data: XOR<TeamMemberUpdateWithoutTeamRunInput, TeamMemberUncheckedUpdateWithoutTeamRunInput>
|
|
25123
|
+
}
|
|
25124
|
+
|
|
25125
|
+
export type TeamMemberUpdateManyWithWhereWithoutTeamRunInput = {
|
|
25126
|
+
where: TeamMemberScalarWhereInput
|
|
25127
|
+
data: XOR<TeamMemberUpdateManyMutationInput, TeamMemberUncheckedUpdateManyWithoutTeamRunInput>
|
|
25128
|
+
}
|
|
25129
|
+
|
|
25130
|
+
export type TeamMemberScalarWhereInput = {
|
|
25131
|
+
AND?: TeamMemberScalarWhereInput | TeamMemberScalarWhereInput[]
|
|
25132
|
+
OR?: TeamMemberScalarWhereInput[]
|
|
24501
25133
|
NOT?: TeamMemberScalarWhereInput | TeamMemberScalarWhereInput[]
|
|
24502
25134
|
id?: StringFilter<"TeamMember"> | string
|
|
24503
25135
|
teamRunId?: StringFilter<"TeamMember"> | string
|
|
@@ -24624,6 +25256,7 @@ export namespace Prisma {
|
|
|
24624
25256
|
createdAt?: Date | string
|
|
24625
25257
|
updatedAt?: Date | string
|
|
24626
25258
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25259
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24627
25260
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24628
25261
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
24629
25262
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
@@ -24632,6 +25265,7 @@ export namespace Prisma {
|
|
|
24632
25265
|
export type TeamRunUncheckedCreateWithoutMembersInput = {
|
|
24633
25266
|
id?: string
|
|
24634
25267
|
taskId: string
|
|
25268
|
+
mainWorkspaceId?: string | null
|
|
24635
25269
|
mode: string
|
|
24636
25270
|
reviewReason?: string | null
|
|
24637
25271
|
createdAt?: Date | string
|
|
@@ -24646,6 +25280,51 @@ export namespace Prisma {
|
|
|
24646
25280
|
create: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
24647
25281
|
}
|
|
24648
25282
|
|
|
25283
|
+
export type WorkspaceCreateWithoutOwnerMemberInput = {
|
|
25284
|
+
id?: string
|
|
25285
|
+
branchName: string
|
|
25286
|
+
baseBranch?: string | null
|
|
25287
|
+
worktreePath: string
|
|
25288
|
+
status?: string
|
|
25289
|
+
commitMessage?: string | null
|
|
25290
|
+
previewTarget?: string | null
|
|
25291
|
+
hibernatedAt?: Date | string | null
|
|
25292
|
+
createdAt?: Date | string
|
|
25293
|
+
updatedAt?: Date | string
|
|
25294
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
25295
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
25296
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
25297
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25298
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
25299
|
+
}
|
|
25300
|
+
|
|
25301
|
+
export type WorkspaceUncheckedCreateWithoutOwnerMemberInput = {
|
|
25302
|
+
id?: string
|
|
25303
|
+
taskId: string
|
|
25304
|
+
parentWorkspaceId?: string | null
|
|
25305
|
+
branchName: string
|
|
25306
|
+
baseBranch?: string | null
|
|
25307
|
+
worktreePath: string
|
|
25308
|
+
status?: string
|
|
25309
|
+
commitMessage?: string | null
|
|
25310
|
+
previewTarget?: string | null
|
|
25311
|
+
hibernatedAt?: Date | string | null
|
|
25312
|
+
createdAt?: Date | string
|
|
25313
|
+
updatedAt?: Date | string
|
|
25314
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
25315
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25316
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25317
|
+
}
|
|
25318
|
+
|
|
25319
|
+
export type WorkspaceCreateOrConnectWithoutOwnerMemberInput = {
|
|
25320
|
+
where: WorkspaceWhereUniqueInput
|
|
25321
|
+
create: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput>
|
|
25322
|
+
}
|
|
25323
|
+
|
|
25324
|
+
export type WorkspaceCreateManyOwnerMemberInputEnvelope = {
|
|
25325
|
+
data: WorkspaceCreateManyOwnerMemberInput | WorkspaceCreateManyOwnerMemberInput[]
|
|
25326
|
+
}
|
|
25327
|
+
|
|
24649
25328
|
export type TeamRunUpsertWithoutMembersInput = {
|
|
24650
25329
|
update: XOR<TeamRunUpdateWithoutMembersInput, TeamRunUncheckedUpdateWithoutMembersInput>
|
|
24651
25330
|
create: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
@@ -24664,6 +25343,7 @@ export namespace Prisma {
|
|
|
24664
25343
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24665
25344
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24666
25345
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25346
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24667
25347
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24668
25348
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
24669
25349
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24672,6 +25352,7 @@ export namespace Prisma {
|
|
|
24672
25352
|
export type TeamRunUncheckedUpdateWithoutMembersInput = {
|
|
24673
25353
|
id?: StringFieldUpdateOperationsInput | string
|
|
24674
25354
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25355
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24675
25356
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24676
25357
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24677
25358
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24681,6 +25362,22 @@ export namespace Prisma {
|
|
|
24681
25362
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
24682
25363
|
}
|
|
24683
25364
|
|
|
25365
|
+
export type WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput = {
|
|
25366
|
+
where: WorkspaceWhereUniqueInput
|
|
25367
|
+
update: XOR<WorkspaceUpdateWithoutOwnerMemberInput, WorkspaceUncheckedUpdateWithoutOwnerMemberInput>
|
|
25368
|
+
create: XOR<WorkspaceCreateWithoutOwnerMemberInput, WorkspaceUncheckedCreateWithoutOwnerMemberInput>
|
|
25369
|
+
}
|
|
25370
|
+
|
|
25371
|
+
export type WorkspaceUpdateWithWhereUniqueWithoutOwnerMemberInput = {
|
|
25372
|
+
where: WorkspaceWhereUniqueInput
|
|
25373
|
+
data: XOR<WorkspaceUpdateWithoutOwnerMemberInput, WorkspaceUncheckedUpdateWithoutOwnerMemberInput>
|
|
25374
|
+
}
|
|
25375
|
+
|
|
25376
|
+
export type WorkspaceUpdateManyWithWhereWithoutOwnerMemberInput = {
|
|
25377
|
+
where: WorkspaceScalarWhereInput
|
|
25378
|
+
data: XOR<WorkspaceUpdateManyMutationInput, WorkspaceUncheckedUpdateManyWithoutOwnerMemberInput>
|
|
25379
|
+
}
|
|
25380
|
+
|
|
24684
25381
|
export type TeamRunCreateWithoutMessagesInput = {
|
|
24685
25382
|
id?: string
|
|
24686
25383
|
mode: string
|
|
@@ -24688,6 +25385,7 @@ export namespace Prisma {
|
|
|
24688
25385
|
createdAt?: Date | string
|
|
24689
25386
|
updatedAt?: Date | string
|
|
24690
25387
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25388
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24691
25389
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24692
25390
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
24693
25391
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
@@ -24696,6 +25394,7 @@ export namespace Prisma {
|
|
|
24696
25394
|
export type TeamRunUncheckedCreateWithoutMessagesInput = {
|
|
24697
25395
|
id?: string
|
|
24698
25396
|
taskId: string
|
|
25397
|
+
mainWorkspaceId?: string | null
|
|
24699
25398
|
mode: string
|
|
24700
25399
|
reviewReason?: string | null
|
|
24701
25400
|
createdAt?: Date | string
|
|
@@ -24728,6 +25427,7 @@ export namespace Prisma {
|
|
|
24728
25427
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24729
25428
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24730
25429
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25430
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24731
25431
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24732
25432
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
24733
25433
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24736,6 +25436,7 @@ export namespace Prisma {
|
|
|
24736
25436
|
export type TeamRunUncheckedUpdateWithoutMessagesInput = {
|
|
24737
25437
|
id?: StringFieldUpdateOperationsInput | string
|
|
24738
25438
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25439
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24739
25440
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24740
25441
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24741
25442
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24752,6 +25453,7 @@ export namespace Prisma {
|
|
|
24752
25453
|
createdAt?: Date | string
|
|
24753
25454
|
updatedAt?: Date | string
|
|
24754
25455
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25456
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24755
25457
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24756
25458
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24757
25459
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
@@ -24760,6 +25462,7 @@ export namespace Prisma {
|
|
|
24760
25462
|
export type TeamRunUncheckedCreateWithoutWorkRequestsInput = {
|
|
24761
25463
|
id?: string
|
|
24762
25464
|
taskId: string
|
|
25465
|
+
mainWorkspaceId?: string | null
|
|
24763
25466
|
mode: string
|
|
24764
25467
|
reviewReason?: string | null
|
|
24765
25468
|
createdAt?: Date | string
|
|
@@ -24792,6 +25495,7 @@ export namespace Prisma {
|
|
|
24792
25495
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24793
25496
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24794
25497
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25498
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24795
25499
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24796
25500
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24797
25501
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24800,6 +25504,7 @@ export namespace Prisma {
|
|
|
24800
25504
|
export type TeamRunUncheckedUpdateWithoutWorkRequestsInput = {
|
|
24801
25505
|
id?: StringFieldUpdateOperationsInput | string
|
|
24802
25506
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25507
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24803
25508
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24804
25509
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24805
25510
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24816,6 +25521,7 @@ export namespace Prisma {
|
|
|
24816
25521
|
createdAt?: Date | string
|
|
24817
25522
|
updatedAt?: Date | string
|
|
24818
25523
|
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25524
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
24819
25525
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
24820
25526
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
24821
25527
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
@@ -24824,6 +25530,7 @@ export namespace Prisma {
|
|
|
24824
25530
|
export type TeamRunUncheckedCreateWithoutInvocationsInput = {
|
|
24825
25531
|
id?: string
|
|
24826
25532
|
taskId: string
|
|
25533
|
+
mainWorkspaceId?: string | null
|
|
24827
25534
|
mode: string
|
|
24828
25535
|
reviewReason?: string | null
|
|
24829
25536
|
createdAt?: Date | string
|
|
@@ -24856,6 +25563,7 @@ export namespace Prisma {
|
|
|
24856
25563
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24857
25564
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24858
25565
|
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
25566
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
24859
25567
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
24860
25568
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
24861
25569
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
@@ -24864,6 +25572,7 @@ export namespace Prisma {
|
|
|
24864
25572
|
export type TeamRunUncheckedUpdateWithoutInvocationsInput = {
|
|
24865
25573
|
id?: StringFieldUpdateOperationsInput | string
|
|
24866
25574
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
25575
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24867
25576
|
mode?: StringFieldUpdateOperationsInput | string
|
|
24868
25577
|
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24869
25578
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -24904,6 +25613,168 @@ export namespace Prisma {
|
|
|
24904
25613
|
create: XOR<TaskCreateWithoutWorkspacesInput, TaskUncheckedCreateWithoutWorkspacesInput>
|
|
24905
25614
|
}
|
|
24906
25615
|
|
|
25616
|
+
export type WorkspaceCreateWithoutChildWorkspacesInput = {
|
|
25617
|
+
id?: string
|
|
25618
|
+
branchName: string
|
|
25619
|
+
baseBranch?: string | null
|
|
25620
|
+
worktreePath: string
|
|
25621
|
+
status?: string
|
|
25622
|
+
commitMessage?: string | null
|
|
25623
|
+
previewTarget?: string | null
|
|
25624
|
+
hibernatedAt?: Date | string | null
|
|
25625
|
+
createdAt?: Date | string
|
|
25626
|
+
updatedAt?: Date | string
|
|
25627
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
25628
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
25629
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
25630
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25631
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
25632
|
+
}
|
|
25633
|
+
|
|
25634
|
+
export type WorkspaceUncheckedCreateWithoutChildWorkspacesInput = {
|
|
25635
|
+
id?: string
|
|
25636
|
+
taskId: string
|
|
25637
|
+
parentWorkspaceId?: string | null
|
|
25638
|
+
ownerMemberId?: string | null
|
|
25639
|
+
branchName: string
|
|
25640
|
+
baseBranch?: string | null
|
|
25641
|
+
worktreePath: string
|
|
25642
|
+
status?: string
|
|
25643
|
+
commitMessage?: string | null
|
|
25644
|
+
previewTarget?: string | null
|
|
25645
|
+
hibernatedAt?: Date | string | null
|
|
25646
|
+
createdAt?: Date | string
|
|
25647
|
+
updatedAt?: Date | string
|
|
25648
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25649
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25650
|
+
}
|
|
25651
|
+
|
|
25652
|
+
export type WorkspaceCreateOrConnectWithoutChildWorkspacesInput = {
|
|
25653
|
+
where: WorkspaceWhereUniqueInput
|
|
25654
|
+
create: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
25655
|
+
}
|
|
25656
|
+
|
|
25657
|
+
export type WorkspaceCreateWithoutParentWorkspaceInput = {
|
|
25658
|
+
id?: string
|
|
25659
|
+
branchName: string
|
|
25660
|
+
baseBranch?: string | null
|
|
25661
|
+
worktreePath: string
|
|
25662
|
+
status?: string
|
|
25663
|
+
commitMessage?: string | null
|
|
25664
|
+
previewTarget?: string | null
|
|
25665
|
+
hibernatedAt?: Date | string | null
|
|
25666
|
+
createdAt?: Date | string
|
|
25667
|
+
updatedAt?: Date | string
|
|
25668
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
25669
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
25670
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
25671
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25672
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
25673
|
+
}
|
|
25674
|
+
|
|
25675
|
+
export type WorkspaceUncheckedCreateWithoutParentWorkspaceInput = {
|
|
25676
|
+
id?: string
|
|
25677
|
+
taskId: string
|
|
25678
|
+
ownerMemberId?: string | null
|
|
25679
|
+
branchName: string
|
|
25680
|
+
baseBranch?: string | null
|
|
25681
|
+
worktreePath: string
|
|
25682
|
+
status?: string
|
|
25683
|
+
commitMessage?: string | null
|
|
25684
|
+
previewTarget?: string | null
|
|
25685
|
+
hibernatedAt?: Date | string | null
|
|
25686
|
+
createdAt?: Date | string
|
|
25687
|
+
updatedAt?: Date | string
|
|
25688
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
25689
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25690
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25691
|
+
}
|
|
25692
|
+
|
|
25693
|
+
export type WorkspaceCreateOrConnectWithoutParentWorkspaceInput = {
|
|
25694
|
+
where: WorkspaceWhereUniqueInput
|
|
25695
|
+
create: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput>
|
|
25696
|
+
}
|
|
25697
|
+
|
|
25698
|
+
export type WorkspaceCreateManyParentWorkspaceInputEnvelope = {
|
|
25699
|
+
data: WorkspaceCreateManyParentWorkspaceInput | WorkspaceCreateManyParentWorkspaceInput[]
|
|
25700
|
+
}
|
|
25701
|
+
|
|
25702
|
+
export type TeamMemberCreateWithoutOwnedWorkspacesInput = {
|
|
25703
|
+
id?: string
|
|
25704
|
+
presetId?: string | null
|
|
25705
|
+
name: string
|
|
25706
|
+
aliases: string
|
|
25707
|
+
providerId: string
|
|
25708
|
+
rolePrompt: string
|
|
25709
|
+
capabilities: string
|
|
25710
|
+
workspacePolicy: string
|
|
25711
|
+
triggerPolicy: string
|
|
25712
|
+
sessionPolicy?: string
|
|
25713
|
+
avatar?: string | null
|
|
25714
|
+
status?: string
|
|
25715
|
+
createdAt?: Date | string
|
|
25716
|
+
updatedAt?: Date | string
|
|
25717
|
+
teamRun: TeamRunCreateNestedOneWithoutMembersInput
|
|
25718
|
+
}
|
|
25719
|
+
|
|
25720
|
+
export type TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
25721
|
+
id?: string
|
|
25722
|
+
teamRunId: string
|
|
25723
|
+
presetId?: string | null
|
|
25724
|
+
name: string
|
|
25725
|
+
aliases: string
|
|
25726
|
+
providerId: string
|
|
25727
|
+
rolePrompt: string
|
|
25728
|
+
capabilities: string
|
|
25729
|
+
workspacePolicy: string
|
|
25730
|
+
triggerPolicy: string
|
|
25731
|
+
sessionPolicy?: string
|
|
25732
|
+
avatar?: string | null
|
|
25733
|
+
status?: string
|
|
25734
|
+
createdAt?: Date | string
|
|
25735
|
+
updatedAt?: Date | string
|
|
25736
|
+
}
|
|
25737
|
+
|
|
25738
|
+
export type TeamMemberCreateOrConnectWithoutOwnedWorkspacesInput = {
|
|
25739
|
+
where: TeamMemberWhereUniqueInput
|
|
25740
|
+
create: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
25741
|
+
}
|
|
25742
|
+
|
|
25743
|
+
export type TeamRunCreateWithoutMainWorkspaceInput = {
|
|
25744
|
+
id?: string
|
|
25745
|
+
mode: string
|
|
25746
|
+
reviewReason?: string | null
|
|
25747
|
+
createdAt?: Date | string
|
|
25748
|
+
updatedAt?: Date | string
|
|
25749
|
+
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
25750
|
+
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
25751
|
+
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
25752
|
+
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
25753
|
+
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
25754
|
+
}
|
|
25755
|
+
|
|
25756
|
+
export type TeamRunUncheckedCreateWithoutMainWorkspaceInput = {
|
|
25757
|
+
id?: string
|
|
25758
|
+
taskId: string
|
|
25759
|
+
mode: string
|
|
25760
|
+
reviewReason?: string | null
|
|
25761
|
+
createdAt?: Date | string
|
|
25762
|
+
updatedAt?: Date | string
|
|
25763
|
+
members?: TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25764
|
+
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25765
|
+
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25766
|
+
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25767
|
+
}
|
|
25768
|
+
|
|
25769
|
+
export type TeamRunCreateOrConnectWithoutMainWorkspaceInput = {
|
|
25770
|
+
where: TeamRunWhereUniqueInput
|
|
25771
|
+
create: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput>
|
|
25772
|
+
}
|
|
25773
|
+
|
|
25774
|
+
export type TeamRunCreateManyMainWorkspaceInputEnvelope = {
|
|
25775
|
+
data: TeamRunCreateManyMainWorkspaceInput | TeamRunCreateManyMainWorkspaceInput[]
|
|
25776
|
+
}
|
|
25777
|
+
|
|
24907
25778
|
export type SessionCreateWithoutWorkspaceInput = {
|
|
24908
25779
|
id?: string
|
|
24909
25780
|
agentType: string
|
|
@@ -24980,6 +25851,145 @@ export namespace Prisma {
|
|
|
24980
25851
|
teamRun?: TeamRunUncheckedUpdateOneWithoutTaskNestedInput
|
|
24981
25852
|
}
|
|
24982
25853
|
|
|
25854
|
+
export type WorkspaceUpsertWithoutChildWorkspacesInput = {
|
|
25855
|
+
update: XOR<WorkspaceUpdateWithoutChildWorkspacesInput, WorkspaceUncheckedUpdateWithoutChildWorkspacesInput>
|
|
25856
|
+
create: XOR<WorkspaceCreateWithoutChildWorkspacesInput, WorkspaceUncheckedCreateWithoutChildWorkspacesInput>
|
|
25857
|
+
where?: WorkspaceWhereInput
|
|
25858
|
+
}
|
|
25859
|
+
|
|
25860
|
+
export type WorkspaceUpdateToOneWithWhereWithoutChildWorkspacesInput = {
|
|
25861
|
+
where?: WorkspaceWhereInput
|
|
25862
|
+
data: XOR<WorkspaceUpdateWithoutChildWorkspacesInput, WorkspaceUncheckedUpdateWithoutChildWorkspacesInput>
|
|
25863
|
+
}
|
|
25864
|
+
|
|
25865
|
+
export type WorkspaceUpdateWithoutChildWorkspacesInput = {
|
|
25866
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25867
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25868
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25869
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25870
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25871
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25872
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25873
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25874
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25875
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25876
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
25877
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
25878
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
25879
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25880
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
25881
|
+
}
|
|
25882
|
+
|
|
25883
|
+
export type WorkspaceUncheckedUpdateWithoutChildWorkspacesInput = {
|
|
25884
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25885
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
25886
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25887
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25888
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
25889
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25890
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25891
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25892
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25893
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25894
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25895
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25896
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25897
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25898
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25899
|
+
}
|
|
25900
|
+
|
|
25901
|
+
export type WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput = {
|
|
25902
|
+
where: WorkspaceWhereUniqueInput
|
|
25903
|
+
update: XOR<WorkspaceUpdateWithoutParentWorkspaceInput, WorkspaceUncheckedUpdateWithoutParentWorkspaceInput>
|
|
25904
|
+
create: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput>
|
|
25905
|
+
}
|
|
25906
|
+
|
|
25907
|
+
export type WorkspaceUpdateWithWhereUniqueWithoutParentWorkspaceInput = {
|
|
25908
|
+
where: WorkspaceWhereUniqueInput
|
|
25909
|
+
data: XOR<WorkspaceUpdateWithoutParentWorkspaceInput, WorkspaceUncheckedUpdateWithoutParentWorkspaceInput>
|
|
25910
|
+
}
|
|
25911
|
+
|
|
25912
|
+
export type WorkspaceUpdateManyWithWhereWithoutParentWorkspaceInput = {
|
|
25913
|
+
where: WorkspaceScalarWhereInput
|
|
25914
|
+
data: XOR<WorkspaceUpdateManyMutationInput, WorkspaceUncheckedUpdateManyWithoutParentWorkspaceInput>
|
|
25915
|
+
}
|
|
25916
|
+
|
|
25917
|
+
export type TeamMemberUpsertWithoutOwnedWorkspacesInput = {
|
|
25918
|
+
update: XOR<TeamMemberUpdateWithoutOwnedWorkspacesInput, TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput>
|
|
25919
|
+
create: XOR<TeamMemberCreateWithoutOwnedWorkspacesInput, TeamMemberUncheckedCreateWithoutOwnedWorkspacesInput>
|
|
25920
|
+
where?: TeamMemberWhereInput
|
|
25921
|
+
}
|
|
25922
|
+
|
|
25923
|
+
export type TeamMemberUpdateToOneWithWhereWithoutOwnedWorkspacesInput = {
|
|
25924
|
+
where?: TeamMemberWhereInput
|
|
25925
|
+
data: XOR<TeamMemberUpdateWithoutOwnedWorkspacesInput, TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput>
|
|
25926
|
+
}
|
|
25927
|
+
|
|
25928
|
+
export type TeamMemberUpdateWithoutOwnedWorkspacesInput = {
|
|
25929
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25930
|
+
presetId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25931
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
25932
|
+
aliases?: StringFieldUpdateOperationsInput | string
|
|
25933
|
+
providerId?: StringFieldUpdateOperationsInput | string
|
|
25934
|
+
rolePrompt?: StringFieldUpdateOperationsInput | string
|
|
25935
|
+
capabilities?: StringFieldUpdateOperationsInput | string
|
|
25936
|
+
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
25937
|
+
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
25938
|
+
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
25939
|
+
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25940
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25941
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25942
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25943
|
+
teamRun?: TeamRunUpdateOneRequiredWithoutMembersNestedInput
|
|
25944
|
+
}
|
|
25945
|
+
|
|
25946
|
+
export type TeamMemberUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
25947
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
25948
|
+
teamRunId?: StringFieldUpdateOperationsInput | string
|
|
25949
|
+
presetId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25950
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
25951
|
+
aliases?: StringFieldUpdateOperationsInput | string
|
|
25952
|
+
providerId?: StringFieldUpdateOperationsInput | string
|
|
25953
|
+
rolePrompt?: StringFieldUpdateOperationsInput | string
|
|
25954
|
+
capabilities?: StringFieldUpdateOperationsInput | string
|
|
25955
|
+
workspacePolicy?: StringFieldUpdateOperationsInput | string
|
|
25956
|
+
triggerPolicy?: StringFieldUpdateOperationsInput | string
|
|
25957
|
+
sessionPolicy?: StringFieldUpdateOperationsInput | string
|
|
25958
|
+
avatar?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25959
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25960
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25961
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25962
|
+
}
|
|
25963
|
+
|
|
25964
|
+
export type TeamRunUpsertWithWhereUniqueWithoutMainWorkspaceInput = {
|
|
25965
|
+
where: TeamRunWhereUniqueInput
|
|
25966
|
+
update: XOR<TeamRunUpdateWithoutMainWorkspaceInput, TeamRunUncheckedUpdateWithoutMainWorkspaceInput>
|
|
25967
|
+
create: XOR<TeamRunCreateWithoutMainWorkspaceInput, TeamRunUncheckedCreateWithoutMainWorkspaceInput>
|
|
25968
|
+
}
|
|
25969
|
+
|
|
25970
|
+
export type TeamRunUpdateWithWhereUniqueWithoutMainWorkspaceInput = {
|
|
25971
|
+
where: TeamRunWhereUniqueInput
|
|
25972
|
+
data: XOR<TeamRunUpdateWithoutMainWorkspaceInput, TeamRunUncheckedUpdateWithoutMainWorkspaceInput>
|
|
25973
|
+
}
|
|
25974
|
+
|
|
25975
|
+
export type TeamRunUpdateManyWithWhereWithoutMainWorkspaceInput = {
|
|
25976
|
+
where: TeamRunScalarWhereInput
|
|
25977
|
+
data: XOR<TeamRunUpdateManyMutationInput, TeamRunUncheckedUpdateManyWithoutMainWorkspaceInput>
|
|
25978
|
+
}
|
|
25979
|
+
|
|
25980
|
+
export type TeamRunScalarWhereInput = {
|
|
25981
|
+
AND?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
25982
|
+
OR?: TeamRunScalarWhereInput[]
|
|
25983
|
+
NOT?: TeamRunScalarWhereInput | TeamRunScalarWhereInput[]
|
|
25984
|
+
id?: StringFilter<"TeamRun"> | string
|
|
25985
|
+
taskId?: StringFilter<"TeamRun"> | string
|
|
25986
|
+
mainWorkspaceId?: StringNullableFilter<"TeamRun"> | string | null
|
|
25987
|
+
mode?: StringFilter<"TeamRun"> | string
|
|
25988
|
+
reviewReason?: StringNullableFilter<"TeamRun"> | string | null
|
|
25989
|
+
createdAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
25990
|
+
updatedAt?: DateTimeFilter<"TeamRun"> | Date | string
|
|
25991
|
+
}
|
|
25992
|
+
|
|
24983
25993
|
export type SessionUpsertWithWhereUniqueWithoutWorkspaceInput = {
|
|
24984
25994
|
where: SessionWhereUniqueInput
|
|
24985
25995
|
update: XOR<SessionUpdateWithoutWorkspaceInput, SessionUncheckedUpdateWithoutWorkspaceInput>
|
|
@@ -25021,23 +26031,33 @@ export namespace Prisma {
|
|
|
25021
26031
|
worktreePath: string
|
|
25022
26032
|
status?: string
|
|
25023
26033
|
commitMessage?: string | null
|
|
26034
|
+
previewTarget?: string | null
|
|
25024
26035
|
hibernatedAt?: Date | string | null
|
|
25025
26036
|
createdAt?: Date | string
|
|
25026
26037
|
updatedAt?: Date | string
|
|
25027
26038
|
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
26039
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
26040
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
26041
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
26042
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25028
26043
|
}
|
|
25029
26044
|
|
|
25030
26045
|
export type WorkspaceUncheckedCreateWithoutSessionsInput = {
|
|
25031
26046
|
id?: string
|
|
25032
26047
|
taskId: string
|
|
26048
|
+
parentWorkspaceId?: string | null
|
|
26049
|
+
ownerMemberId?: string | null
|
|
25033
26050
|
branchName: string
|
|
25034
26051
|
baseBranch?: string | null
|
|
25035
26052
|
worktreePath: string
|
|
25036
26053
|
status?: string
|
|
25037
26054
|
commitMessage?: string | null
|
|
26055
|
+
previewTarget?: string | null
|
|
25038
26056
|
hibernatedAt?: Date | string | null
|
|
25039
26057
|
createdAt?: Date | string
|
|
25040
26058
|
updatedAt?: Date | string
|
|
26059
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
26060
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25041
26061
|
}
|
|
25042
26062
|
|
|
25043
26063
|
export type WorkspaceCreateOrConnectWithoutSessionsInput = {
|
|
@@ -25088,23 +26108,33 @@ export namespace Prisma {
|
|
|
25088
26108
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25089
26109
|
status?: StringFieldUpdateOperationsInput | string
|
|
25090
26110
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26111
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25091
26112
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25092
26113
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25093
26114
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25094
26115
|
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
26116
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
26117
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26118
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
26119
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25095
26120
|
}
|
|
25096
26121
|
|
|
25097
26122
|
export type WorkspaceUncheckedUpdateWithoutSessionsInput = {
|
|
25098
26123
|
id?: StringFieldUpdateOperationsInput | string
|
|
25099
26124
|
taskId?: StringFieldUpdateOperationsInput | string
|
|
26125
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26126
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25100
26127
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
25101
26128
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25102
26129
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25103
26130
|
status?: StringFieldUpdateOperationsInput | string
|
|
25104
26131
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26132
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25105
26133
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25106
26134
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25107
26135
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26136
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26137
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25108
26138
|
}
|
|
25109
26139
|
|
|
25110
26140
|
export type ExecutionProcessUpsertWithWhereUniqueWithoutSessionInput = {
|
|
@@ -25261,11 +26291,14 @@ export namespace Prisma {
|
|
|
25261
26291
|
|
|
25262
26292
|
export type WorkspaceCreateManyTaskInput = {
|
|
25263
26293
|
id?: string
|
|
26294
|
+
parentWorkspaceId?: string | null
|
|
26295
|
+
ownerMemberId?: string | null
|
|
25264
26296
|
branchName: string
|
|
25265
26297
|
baseBranch?: string | null
|
|
25266
26298
|
worktreePath: string
|
|
25267
26299
|
status?: string
|
|
25268
26300
|
commitMessage?: string | null
|
|
26301
|
+
previewTarget?: string | null
|
|
25269
26302
|
hibernatedAt?: Date | string | null
|
|
25270
26303
|
createdAt?: Date | string
|
|
25271
26304
|
updatedAt?: Date | string
|
|
@@ -25278,32 +26311,45 @@ export namespace Prisma {
|
|
|
25278
26311
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25279
26312
|
status?: StringFieldUpdateOperationsInput | string
|
|
25280
26313
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26314
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25281
26315
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25282
26316
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25283
26317
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26318
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
26319
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26320
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
26321
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25284
26322
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
25285
26323
|
}
|
|
25286
26324
|
|
|
25287
26325
|
export type WorkspaceUncheckedUpdateWithoutTaskInput = {
|
|
25288
26326
|
id?: StringFieldUpdateOperationsInput | string
|
|
26327
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26328
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25289
26329
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
25290
26330
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25291
26331
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25292
26332
|
status?: StringFieldUpdateOperationsInput | string
|
|
25293
26333
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26334
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25294
26335
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25295
26336
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25296
26337
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26338
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26339
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25297
26340
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25298
26341
|
}
|
|
25299
26342
|
|
|
25300
26343
|
export type WorkspaceUncheckedUpdateManyWithoutTaskInput = {
|
|
25301
26344
|
id?: StringFieldUpdateOperationsInput | string
|
|
26345
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26346
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25302
26347
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
25303
26348
|
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25304
26349
|
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
25305
26350
|
status?: StringFieldUpdateOperationsInput | string
|
|
25306
26351
|
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26352
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25307
26353
|
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25308
26354
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25309
26355
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -25406,6 +26452,7 @@ export namespace Prisma {
|
|
|
25406
26452
|
status?: StringFieldUpdateOperationsInput | string
|
|
25407
26453
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25408
26454
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26455
|
+
ownedWorkspaces?: WorkspaceUpdateManyWithoutOwnerMemberNestedInput
|
|
25409
26456
|
}
|
|
25410
26457
|
|
|
25411
26458
|
export type TeamMemberUncheckedUpdateWithoutTeamRunInput = {
|
|
@@ -25423,6 +26470,7 @@ export namespace Prisma {
|
|
|
25423
26470
|
status?: StringFieldUpdateOperationsInput | string
|
|
25424
26471
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25425
26472
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26473
|
+
ownedWorkspaces?: WorkspaceUncheckedUpdateManyWithoutOwnerMemberNestedInput
|
|
25426
26474
|
}
|
|
25427
26475
|
|
|
25428
26476
|
export type TeamMemberUncheckedUpdateManyWithoutTeamRunInput = {
|
|
@@ -25565,6 +26613,96 @@ export namespace Prisma {
|
|
|
25565
26613
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25566
26614
|
}
|
|
25567
26615
|
|
|
26616
|
+
export type WorkspaceCreateManyOwnerMemberInput = {
|
|
26617
|
+
id?: string
|
|
26618
|
+
taskId: string
|
|
26619
|
+
parentWorkspaceId?: string | null
|
|
26620
|
+
branchName: string
|
|
26621
|
+
baseBranch?: string | null
|
|
26622
|
+
worktreePath: string
|
|
26623
|
+
status?: string
|
|
26624
|
+
commitMessage?: string | null
|
|
26625
|
+
previewTarget?: string | null
|
|
26626
|
+
hibernatedAt?: Date | string | null
|
|
26627
|
+
createdAt?: Date | string
|
|
26628
|
+
updatedAt?: Date | string
|
|
26629
|
+
}
|
|
26630
|
+
|
|
26631
|
+
export type WorkspaceUpdateWithoutOwnerMemberInput = {
|
|
26632
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26633
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26634
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26635
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26636
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26637
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26638
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26639
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26640
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26641
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26642
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
26643
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
26644
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26645
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
26646
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
26647
|
+
}
|
|
26648
|
+
|
|
26649
|
+
export type WorkspaceUncheckedUpdateWithoutOwnerMemberInput = {
|
|
26650
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26651
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26652
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26653
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26654
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26655
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26656
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26657
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26658
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26659
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26660
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26661
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26662
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26663
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
26664
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
26665
|
+
}
|
|
26666
|
+
|
|
26667
|
+
export type WorkspaceUncheckedUpdateManyWithoutOwnerMemberInput = {
|
|
26668
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26669
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26670
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26671
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26672
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26673
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26674
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26675
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26676
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26677
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26678
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26679
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26680
|
+
}
|
|
26681
|
+
|
|
26682
|
+
export type WorkspaceCreateManyParentWorkspaceInput = {
|
|
26683
|
+
id?: string
|
|
26684
|
+
taskId: string
|
|
26685
|
+
ownerMemberId?: string | null
|
|
26686
|
+
branchName: string
|
|
26687
|
+
baseBranch?: string | null
|
|
26688
|
+
worktreePath: string
|
|
26689
|
+
status?: string
|
|
26690
|
+
commitMessage?: string | null
|
|
26691
|
+
previewTarget?: string | null
|
|
26692
|
+
hibernatedAt?: Date | string | null
|
|
26693
|
+
createdAt?: Date | string
|
|
26694
|
+
updatedAt?: Date | string
|
|
26695
|
+
}
|
|
26696
|
+
|
|
26697
|
+
export type TeamRunCreateManyMainWorkspaceInput = {
|
|
26698
|
+
id?: string
|
|
26699
|
+
taskId: string
|
|
26700
|
+
mode: string
|
|
26701
|
+
reviewReason?: string | null
|
|
26702
|
+
createdAt?: Date | string
|
|
26703
|
+
updatedAt?: Date | string
|
|
26704
|
+
}
|
|
26705
|
+
|
|
25568
26706
|
export type SessionCreateManyWorkspaceInput = {
|
|
25569
26707
|
id?: string
|
|
25570
26708
|
agentType: string
|
|
@@ -25579,6 +26717,92 @@ export namespace Prisma {
|
|
|
25579
26717
|
updatedAt?: Date | string
|
|
25580
26718
|
}
|
|
25581
26719
|
|
|
26720
|
+
export type WorkspaceUpdateWithoutParentWorkspaceInput = {
|
|
26721
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26722
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26723
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26724
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26725
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26726
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26727
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26728
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26729
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26730
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26731
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
26732
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
26733
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
26734
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
26735
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
26736
|
+
}
|
|
26737
|
+
|
|
26738
|
+
export type WorkspaceUncheckedUpdateWithoutParentWorkspaceInput = {
|
|
26739
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26740
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26741
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26742
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26743
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26744
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26745
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26746
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26747
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26748
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26749
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26750
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26751
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
26752
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
26753
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
26754
|
+
}
|
|
26755
|
+
|
|
26756
|
+
export type WorkspaceUncheckedUpdateManyWithoutParentWorkspaceInput = {
|
|
26757
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26758
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26759
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26760
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
26761
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26762
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
26763
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
26764
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26765
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26766
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
26767
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26768
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26769
|
+
}
|
|
26770
|
+
|
|
26771
|
+
export type TeamRunUpdateWithoutMainWorkspaceInput = {
|
|
26772
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26773
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
26774
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26775
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26776
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26777
|
+
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
26778
|
+
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
26779
|
+
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
26780
|
+
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
26781
|
+
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
26782
|
+
}
|
|
26783
|
+
|
|
26784
|
+
export type TeamRunUncheckedUpdateWithoutMainWorkspaceInput = {
|
|
26785
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26786
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26787
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
26788
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26789
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26790
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26791
|
+
members?: TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26792
|
+
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26793
|
+
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26794
|
+
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
26795
|
+
}
|
|
26796
|
+
|
|
26797
|
+
export type TeamRunUncheckedUpdateManyWithoutMainWorkspaceInput = {
|
|
26798
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
26799
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
26800
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
26801
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26802
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26803
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26804
|
+
}
|
|
26805
|
+
|
|
25582
26806
|
export type SessionUpdateWithoutWorkspaceInput = {
|
|
25583
26807
|
id?: StringFieldUpdateOperationsInput | string
|
|
25584
26808
|
agentType?: StringFieldUpdateOperationsInput | string
|
|
@@ -25676,6 +26900,10 @@ export namespace Prisma {
|
|
|
25676
26900
|
* @deprecated Use TeamRunCountOutputTypeDefaultArgs instead
|
|
25677
26901
|
*/
|
|
25678
26902
|
export type TeamRunCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TeamRunCountOutputTypeDefaultArgs<ExtArgs>
|
|
26903
|
+
/**
|
|
26904
|
+
* @deprecated Use TeamMemberCountOutputTypeDefaultArgs instead
|
|
26905
|
+
*/
|
|
26906
|
+
export type TeamMemberCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TeamMemberCountOutputTypeDefaultArgs<ExtArgs>
|
|
25679
26907
|
/**
|
|
25680
26908
|
* @deprecated Use WorkspaceCountOutputTypeDefaultArgs instead
|
|
25681
26909
|
*/
|