agent-tower 0.5.1 → 0.5.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/dist/app.d.ts.map +1 -1
  2. package/dist/app.js +4 -0
  3. package/dist/app.js.map +1 -1
  4. package/dist/core/container.d.ts +2 -0
  5. package/dist/core/container.d.ts.map +1 -1
  6. package/dist/core/container.js +8 -0
  7. package/dist/core/container.js.map +1 -1
  8. package/dist/executors/__tests__/codex.executor.test.js +348 -7
  9. package/dist/executors/__tests__/codex.executor.test.js.map +1 -1
  10. package/dist/executors/codex.executor.d.ts +18 -1
  11. package/dist/executors/codex.executor.d.ts.map +1 -1
  12. package/dist/executors/codex.executor.js +75 -7
  13. package/dist/executors/codex.executor.js.map +1 -1
  14. package/dist/mcp/http-client.d.ts +4 -1
  15. package/dist/mcp/http-client.d.ts.map +1 -1
  16. package/dist/mcp/http-client.js +2 -2
  17. package/dist/mcp/http-client.js.map +1 -1
  18. package/dist/mcp/tools/workspaces.d.ts.map +1 -1
  19. package/dist/mcp/tools/workspaces.js +4 -1
  20. package/dist/mcp/tools/workspaces.js.map +1 -1
  21. package/dist/mcp/types.d.ts +3 -0
  22. package/dist/mcp/types.d.ts.map +1 -1
  23. package/dist/mcp/types.js +2 -0
  24. package/dist/mcp/types.js.map +1 -1
  25. package/dist/routes/__tests__/tasks.test.js +37 -0
  26. package/dist/routes/__tests__/tasks.test.js.map +1 -1
  27. package/dist/routes/git.d.ts.map +1 -1
  28. package/dist/routes/git.js +6 -1
  29. package/dist/routes/git.js.map +1 -1
  30. package/dist/routes/sessions.d.ts.map +1 -1
  31. package/dist/routes/sessions.js +12 -0
  32. package/dist/routes/sessions.js.map +1 -1
  33. package/dist/routes/system.d.ts.map +1 -1
  34. package/dist/routes/system.js +21 -5
  35. package/dist/routes/system.js.map +1 -1
  36. package/dist/routes/tasks.js +2 -2
  37. package/dist/routes/tasks.js.map +1 -1
  38. package/dist/routes/workspaces.d.ts.map +1 -1
  39. package/dist/routes/workspaces.js +11 -4
  40. package/dist/routes/workspaces.js.map +1 -1
  41. package/dist/services/__tests__/project.service.test.d.ts +2 -0
  42. package/dist/services/__tests__/project.service.test.d.ts.map +1 -0
  43. package/dist/services/__tests__/project.service.test.js +62 -0
  44. package/dist/services/__tests__/project.service.test.js.map +1 -0
  45. package/dist/services/__tests__/session-manager.team-run.test.js +98 -0
  46. package/dist/services/__tests__/session-manager.team-run.test.js.map +1 -1
  47. package/dist/services/__tests__/task.service.test.js +416 -38
  48. package/dist/services/__tests__/task.service.test.js.map +1 -1
  49. package/dist/services/__tests__/team-reconciler.service.test.js +68 -0
  50. package/dist/services/__tests__/team-reconciler.service.test.js.map +1 -1
  51. package/dist/services/__tests__/team-run.service.test.js +47 -1
  52. package/dist/services/__tests__/team-run.service.test.js.map +1 -1
  53. package/dist/services/__tests__/team-scheduler.service.test.js +49 -0
  54. package/dist/services/__tests__/team-scheduler.service.test.js.map +1 -1
  55. package/dist/services/__tests__/workspace.service.test.js +157 -0
  56. package/dist/services/__tests__/workspace.service.test.js.map +1 -1
  57. package/dist/services/commit-message.service.d.ts.map +1 -1
  58. package/dist/services/commit-message.service.js +3 -0
  59. package/dist/services/commit-message.service.js.map +1 -1
  60. package/dist/services/deleted-task-guard.d.ts +11 -0
  61. package/dist/services/deleted-task-guard.d.ts.map +1 -0
  62. package/dist/services/deleted-task-guard.js +10 -0
  63. package/dist/services/deleted-task-guard.js.map +1 -0
  64. package/dist/services/project.service.d.ts +1 -0
  65. package/dist/services/project.service.d.ts.map +1 -1
  66. package/dist/services/project.service.js +4 -3
  67. package/dist/services/project.service.js.map +1 -1
  68. package/dist/services/session-manager.d.ts +55 -1
  69. package/dist/services/session-manager.d.ts.map +1 -1
  70. package/dist/services/session-manager.js +133 -41
  71. package/dist/services/session-manager.js.map +1 -1
  72. package/dist/services/task-cleanup.service.d.ts +48 -0
  73. package/dist/services/task-cleanup.service.d.ts.map +1 -0
  74. package/dist/services/task-cleanup.service.js +209 -0
  75. package/dist/services/task-cleanup.service.js.map +1 -0
  76. package/dist/services/task.service.d.ts +19 -7
  77. package/dist/services/task.service.d.ts.map +1 -1
  78. package/dist/services/task.service.js +139 -63
  79. package/dist/services/task.service.js.map +1 -1
  80. package/dist/services/team-reconciler.service.d.ts.map +1 -1
  81. package/dist/services/team-reconciler.service.js +21 -1
  82. package/dist/services/team-reconciler.service.js.map +1 -1
  83. package/dist/services/team-run.service.d.ts.map +1 -1
  84. package/dist/services/team-run.service.js +15 -1
  85. package/dist/services/team-run.service.js.map +1 -1
  86. package/dist/services/team-scheduler.service.d.ts +3 -1
  87. package/dist/services/team-scheduler.service.d.ts.map +1 -1
  88. package/dist/services/team-scheduler.service.js +16 -0
  89. package/dist/services/team-scheduler.service.js.map +1 -1
  90. package/dist/services/workspace-kind.d.ts +13 -0
  91. package/dist/services/workspace-kind.d.ts.map +1 -0
  92. package/dist/services/workspace-kind.js +16 -0
  93. package/dist/services/workspace-kind.js.map +1 -0
  94. package/dist/services/workspace.service.d.ts +26 -0
  95. package/dist/services/workspace.service.d.ts.map +1 -1
  96. package/dist/services/workspace.service.js +173 -23
  97. package/dist/services/workspace.service.js.map +1 -1
  98. package/dist/types/index.d.ts +4 -0
  99. package/dist/types/index.d.ts.map +1 -1
  100. package/dist/types/index.js +6 -0
  101. package/dist/types/index.js.map +1 -1
  102. package/dist/web/assets/AgentDemoPage-CkhVcgZo.js +1 -0
  103. package/dist/web/assets/{DemoPage-DeXHpe0f.js → DemoPage-dkmp8Vvn.js} +3 -3
  104. package/dist/web/assets/GeneralSettingsPage-B4DH6g3D.js +1 -0
  105. package/dist/web/assets/MemberAvatar-pwugXGL4.js +1 -0
  106. package/dist/web/assets/NotificationSettingsPage-C-bPU_ZE.js +1 -0
  107. package/dist/web/assets/ProfileSettingsPage-Dlr6BmHb.js +3 -0
  108. package/dist/web/assets/ProjectKanbanPage-7oEfjjWV.js +89 -0
  109. package/dist/web/assets/ProjectSettingsPage-DZZksq5G.js +2 -0
  110. package/dist/web/assets/ProviderSettingsPage-BWN7CEG6.js +54 -0
  111. package/dist/web/assets/SettingsSection-C-sMhXpf.js +1 -0
  112. package/dist/web/assets/TeamSettingsPage-924xpocx.js +1 -0
  113. package/dist/web/assets/arrow-left-UHjQiY5K.js +1 -0
  114. package/dist/web/assets/button-CUTjpRqw.js +1 -0
  115. package/dist/web/assets/check-CPkZgPjx.js +1 -0
  116. package/dist/web/assets/chevron-down-Bby7sJEv.js +1 -0
  117. package/dist/web/assets/chevron-right-DCC0lyoB.js +1 -0
  118. package/dist/web/assets/{chevron-up-xy9sRgGr.js → chevron-up-BnCoaejn.js} +1 -1
  119. package/dist/web/assets/{circle-check-D53Ur01f.js → circle-check-BscClK07.js} +1 -1
  120. package/dist/web/assets/{code-block-OCS4YCEC-BHTzJkrx.js → code-block-OCS4YCEC-DkMlYSza.js} +1 -1
  121. package/dist/web/assets/confirm-dialog-wsb35VpE.js +1 -0
  122. package/dist/web/assets/folder-picker-B-X_nrS1.js +1 -0
  123. package/dist/web/assets/index-4hNWw0yi.css +1 -0
  124. package/dist/web/assets/index-CUJoWIuo.js +13 -0
  125. package/dist/web/assets/loader-circle-Cul4BuAa.js +1 -0
  126. package/dist/web/assets/log-adapter-CtvxzS4j.js +1 -0
  127. package/dist/web/assets/{mermaid-NOHMQCX5-BSPQ7bmi.js → mermaid-NOHMQCX5-DoPzf-UA.js} +53 -53
  128. package/dist/web/assets/message-square-C7Q71jFj.js +1 -0
  129. package/dist/web/assets/modal-25-qs8P5.js +1 -0
  130. package/dist/web/assets/{pencil-zfyDXHtM.js → pencil-CaJR6Dqm.js} +1 -1
  131. package/dist/web/assets/rotate-ccw-Bvz7590n.js +1 -0
  132. package/dist/web/assets/{select-CEtSClHi.js → select-CzeTYLO4.js} +1 -1
  133. package/dist/web/assets/upload-_2T21rVP.js +1 -0
  134. package/dist/web/assets/{use-profiles-BrCaq-M0.js → use-profiles-BaCwGP06.js} +1 -1
  135. package/dist/web/assets/{use-providers-BmGR6zlI.js → use-providers-Bwl7R5Ql.js} +1 -1
  136. package/dist/web/index.html +2 -2
  137. package/node_modules/@agent-tower/shared/dist/types.d.ts +10 -0
  138. package/node_modules/@agent-tower/shared/dist/types.d.ts.map +1 -1
  139. package/node_modules/@agent-tower/shared/dist/types.js +6 -0
  140. package/node_modules/@agent-tower/shared/dist/types.js.map +1 -1
  141. package/node_modules/@prisma/client/.prisma/client/edge.js +24 -5
  142. package/node_modules/@prisma/client/.prisma/client/index-browser.js +19 -0
  143. package/node_modules/@prisma/client/.prisma/client/index.d.ts +1652 -142
  144. package/node_modules/@prisma/client/.prisma/client/index.js +24 -5
  145. package/node_modules/@prisma/client/.prisma/client/package.json +1 -1
  146. package/node_modules/@prisma/client/.prisma/client/schema.prisma +29 -1
  147. package/node_modules/@prisma/client/.prisma/client/wasm.js +19 -0
  148. package/package.json +1 -1
  149. package/prisma/migrations/20260603000000_add_task_cleanup_jobs/migration.sql +21 -0
  150. package/prisma/migrations/20260609000000_add_workspace_kind_working_dir/migration.sql +7 -0
  151. package/prisma/schema.prisma +29 -1
  152. package/dist/web/assets/AgentDemoPage-C41Npg-J.js +0 -1
  153. package/dist/web/assets/GeneralSettingsPage-ROIAXf_I.js +0 -1
  154. package/dist/web/assets/MemberAvatar-Bgb9cNkt.js +0 -1
  155. package/dist/web/assets/NotificationSettingsPage-BSFFB_Xk.js +0 -1
  156. package/dist/web/assets/ProfileSettingsPage-n6J_nKUb.js +0 -3
  157. package/dist/web/assets/ProjectKanbanPage-BUwfUX3X.js +0 -90
  158. package/dist/web/assets/ProjectSettingsPage-Dv5Ab2MY.js +0 -2
  159. package/dist/web/assets/ProviderSettingsPage-Ckp_pVCi.js +0 -54
  160. package/dist/web/assets/TeamSettingsPage-DjlyHMct.js +0 -1
  161. package/dist/web/assets/button-_UA8cNod.js +0 -1
  162. package/dist/web/assets/chevron-down-qLfxqOnz.js +0 -1
  163. package/dist/web/assets/chevron-right-SY4_v7-h.js +0 -1
  164. package/dist/web/assets/confirm-dialog-D9WQU47x.js +0 -1
  165. package/dist/web/assets/folder-picker-DPW13OyX.js +0 -1
  166. package/dist/web/assets/index-BjIvVVfi.css +0 -1
  167. package/dist/web/assets/index-BsrxN6e4.js +0 -13
  168. package/dist/web/assets/loader-circle-CPz4Agyr.js +0 -1
  169. package/dist/web/assets/log-adapter-i7kNXXup.js +0 -1
  170. package/dist/web/assets/modal-BLPS1r7Q.js +0 -1
  171. package/dist/web/assets/upload-hdDyQIIu.js +0 -1
  172. package/dist/web/assets/utils-CkSf8FUe.js +0 -1
@@ -23,6 +23,11 @@ export type Project = $Result.DefaultSelection<Prisma.$ProjectPayload>
23
23
  *
24
24
  */
25
25
  export type Task = $Result.DefaultSelection<Prisma.$TaskPayload>
26
+ /**
27
+ * Model TaskCleanupJob
28
+ *
29
+ */
30
+ export type TaskCleanupJob = $Result.DefaultSelection<Prisma.$TaskCleanupJobPayload>
26
31
  /**
27
32
  * Model MemberPreset
28
33
  *
@@ -247,6 +252,16 @@ export class PrismaClient<
247
252
  */
248
253
  get task(): Prisma.TaskDelegate<ExtArgs>;
249
254
 
255
+ /**
256
+ * `prisma.taskCleanupJob`: Exposes CRUD operations for the **TaskCleanupJob** model.
257
+ * Example usage:
258
+ * ```ts
259
+ * // Fetch zero or more TaskCleanupJobs
260
+ * const taskCleanupJobs = await prisma.taskCleanupJob.findMany()
261
+ * ```
262
+ */
263
+ get taskCleanupJob(): Prisma.TaskCleanupJobDelegate<ExtArgs>;
264
+
250
265
  /**
251
266
  * `prisma.memberPreset`: Exposes CRUD operations for the **MemberPreset** model.
252
267
  * Example usage:
@@ -849,6 +864,7 @@ export namespace Prisma {
849
864
  export const ModelName: {
850
865
  Project: 'Project',
851
866
  Task: 'Task',
867
+ TaskCleanupJob: 'TaskCleanupJob',
852
868
  MemberPreset: 'MemberPreset',
853
869
  TeamTemplate: 'TeamTemplate',
854
870
  TeamTemplateMember: 'TeamTemplateMember',
@@ -880,7 +896,7 @@ export namespace Prisma {
880
896
 
881
897
  export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
882
898
  meta: {
883
- modelProps: "project" | "task" | "memberPreset" | "teamTemplate" | "teamTemplateMember" | "teamRun" | "teamMember" | "roomMessage" | "roomMessageParticipant" | "workRequest" | "agentInvocation" | "workspace" | "session" | "executionProcess" | "executionLog" | "attachment" | "appSettings" | "notificationSettings"
899
+ modelProps: "project" | "task" | "taskCleanupJob" | "memberPreset" | "teamTemplate" | "teamTemplateMember" | "teamRun" | "teamMember" | "roomMessage" | "roomMessageParticipant" | "workRequest" | "agentInvocation" | "workspace" | "session" | "executionProcess" | "executionLog" | "attachment" | "appSettings" | "notificationSettings"
884
900
  txIsolationLevel: Prisma.TransactionIsolationLevel
885
901
  }
886
902
  model: {
@@ -1024,6 +1040,76 @@ export namespace Prisma {
1024
1040
  }
1025
1041
  }
1026
1042
  }
1043
+ TaskCleanupJob: {
1044
+ payload: Prisma.$TaskCleanupJobPayload<ExtArgs>
1045
+ fields: Prisma.TaskCleanupJobFieldRefs
1046
+ operations: {
1047
+ findUnique: {
1048
+ args: Prisma.TaskCleanupJobFindUniqueArgs<ExtArgs>
1049
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload> | null
1050
+ }
1051
+ findUniqueOrThrow: {
1052
+ args: Prisma.TaskCleanupJobFindUniqueOrThrowArgs<ExtArgs>
1053
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>
1054
+ }
1055
+ findFirst: {
1056
+ args: Prisma.TaskCleanupJobFindFirstArgs<ExtArgs>
1057
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload> | null
1058
+ }
1059
+ findFirstOrThrow: {
1060
+ args: Prisma.TaskCleanupJobFindFirstOrThrowArgs<ExtArgs>
1061
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>
1062
+ }
1063
+ findMany: {
1064
+ args: Prisma.TaskCleanupJobFindManyArgs<ExtArgs>
1065
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>[]
1066
+ }
1067
+ create: {
1068
+ args: Prisma.TaskCleanupJobCreateArgs<ExtArgs>
1069
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>
1070
+ }
1071
+ createMany: {
1072
+ args: Prisma.TaskCleanupJobCreateManyArgs<ExtArgs>
1073
+ result: BatchPayload
1074
+ }
1075
+ createManyAndReturn: {
1076
+ args: Prisma.TaskCleanupJobCreateManyAndReturnArgs<ExtArgs>
1077
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>[]
1078
+ }
1079
+ delete: {
1080
+ args: Prisma.TaskCleanupJobDeleteArgs<ExtArgs>
1081
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>
1082
+ }
1083
+ update: {
1084
+ args: Prisma.TaskCleanupJobUpdateArgs<ExtArgs>
1085
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>
1086
+ }
1087
+ deleteMany: {
1088
+ args: Prisma.TaskCleanupJobDeleteManyArgs<ExtArgs>
1089
+ result: BatchPayload
1090
+ }
1091
+ updateMany: {
1092
+ args: Prisma.TaskCleanupJobUpdateManyArgs<ExtArgs>
1093
+ result: BatchPayload
1094
+ }
1095
+ upsert: {
1096
+ args: Prisma.TaskCleanupJobUpsertArgs<ExtArgs>
1097
+ result: $Utils.PayloadToResult<Prisma.$TaskCleanupJobPayload>
1098
+ }
1099
+ aggregate: {
1100
+ args: Prisma.TaskCleanupJobAggregateArgs<ExtArgs>
1101
+ result: $Utils.Optional<AggregateTaskCleanupJob>
1102
+ }
1103
+ groupBy: {
1104
+ args: Prisma.TaskCleanupJobGroupByArgs<ExtArgs>
1105
+ result: $Utils.Optional<TaskCleanupJobGroupByOutputType>[]
1106
+ }
1107
+ count: {
1108
+ args: Prisma.TaskCleanupJobCountArgs<ExtArgs>
1109
+ result: $Utils.Optional<TaskCleanupJobCountAggregateOutputType> | number
1110
+ }
1111
+ }
1112
+ }
1027
1113
  MemberPreset: {
1028
1114
  payload: Prisma.$MemberPresetPayload<ExtArgs>
1029
1115
  fields: Prisma.MemberPresetFieldRefs
@@ -3678,6 +3764,7 @@ export namespace Prisma {
3678
3764
  priority: number | null
3679
3765
  position: number | null
3680
3766
  projectId: string | null
3767
+ deletedAt: Date | null
3681
3768
  createdAt: Date | null
3682
3769
  updatedAt: Date | null
3683
3770
  }
@@ -3690,6 +3777,7 @@ export namespace Prisma {
3690
3777
  priority: number | null
3691
3778
  position: number | null
3692
3779
  projectId: string | null
3780
+ deletedAt: Date | null
3693
3781
  createdAt: Date | null
3694
3782
  updatedAt: Date | null
3695
3783
  }
@@ -3702,6 +3790,7 @@ export namespace Prisma {
3702
3790
  priority: number
3703
3791
  position: number
3704
3792
  projectId: number
3793
+ deletedAt: number
3705
3794
  createdAt: number
3706
3795
  updatedAt: number
3707
3796
  _all: number
@@ -3726,6 +3815,7 @@ export namespace Prisma {
3726
3815
  priority?: true
3727
3816
  position?: true
3728
3817
  projectId?: true
3818
+ deletedAt?: true
3729
3819
  createdAt?: true
3730
3820
  updatedAt?: true
3731
3821
  }
@@ -3738,6 +3828,7 @@ export namespace Prisma {
3738
3828
  priority?: true
3739
3829
  position?: true
3740
3830
  projectId?: true
3831
+ deletedAt?: true
3741
3832
  createdAt?: true
3742
3833
  updatedAt?: true
3743
3834
  }
@@ -3750,6 +3841,7 @@ export namespace Prisma {
3750
3841
  priority?: true
3751
3842
  position?: true
3752
3843
  projectId?: true
3844
+ deletedAt?: true
3753
3845
  createdAt?: true
3754
3846
  updatedAt?: true
3755
3847
  _all?: true
@@ -3849,6 +3941,7 @@ export namespace Prisma {
3849
3941
  priority: number
3850
3942
  position: number
3851
3943
  projectId: string
3944
+ deletedAt: Date | null
3852
3945
  createdAt: Date
3853
3946
  updatedAt: Date
3854
3947
  _count: TaskCountAggregateOutputType | null
@@ -3880,6 +3973,7 @@ export namespace Prisma {
3880
3973
  priority?: boolean
3881
3974
  position?: boolean
3882
3975
  projectId?: boolean
3976
+ deletedAt?: boolean
3883
3977
  createdAt?: boolean
3884
3978
  updatedAt?: boolean
3885
3979
  project?: boolean | ProjectDefaultArgs<ExtArgs>
@@ -3896,6 +3990,7 @@ export namespace Prisma {
3896
3990
  priority?: boolean
3897
3991
  position?: boolean
3898
3992
  projectId?: boolean
3993
+ deletedAt?: boolean
3899
3994
  createdAt?: boolean
3900
3995
  updatedAt?: boolean
3901
3996
  project?: boolean | ProjectDefaultArgs<ExtArgs>
@@ -3909,6 +4004,7 @@ export namespace Prisma {
3909
4004
  priority?: boolean
3910
4005
  position?: boolean
3911
4006
  projectId?: boolean
4007
+ deletedAt?: boolean
3912
4008
  createdAt?: boolean
3913
4009
  updatedAt?: boolean
3914
4010
  }
@@ -3938,6 +4034,7 @@ export namespace Prisma {
3938
4034
  priority: number
3939
4035
  position: number
3940
4036
  projectId: string
4037
+ deletedAt: Date | null
3941
4038
  createdAt: Date
3942
4039
  updatedAt: Date
3943
4040
  }, ExtArgs["result"]["task"]>
@@ -4343,6 +4440,7 @@ export namespace Prisma {
4343
4440
  readonly priority: FieldRef<"Task", 'Int'>
4344
4441
  readonly position: FieldRef<"Task", 'Int'>
4345
4442
  readonly projectId: FieldRef<"Task", 'String'>
4443
+ readonly deletedAt: FieldRef<"Task", 'DateTime'>
4346
4444
  readonly createdAt: FieldRef<"Task", 'DateTime'>
4347
4445
  readonly updatedAt: FieldRef<"Task", 'DateTime'>
4348
4446
  }
@@ -4444,269 +4542,1263 @@ export namespace Prisma {
4444
4542
  /**
4445
4543
  * Choose, which related nodes to fetch as well
4446
4544
  */
4447
- include?: TaskInclude<ExtArgs> | null
4545
+ include?: TaskInclude<ExtArgs> | null
4546
+ /**
4547
+ * Filter, which Task to fetch.
4548
+ */
4549
+ where?: TaskWhereInput
4550
+ /**
4551
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
4552
+ *
4553
+ * Determine the order of Tasks to fetch.
4554
+ */
4555
+ orderBy?: TaskOrderByWithRelationInput | TaskOrderByWithRelationInput[]
4556
+ /**
4557
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
4558
+ *
4559
+ * Sets the position for searching for Tasks.
4560
+ */
4561
+ cursor?: TaskWhereUniqueInput
4562
+ /**
4563
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4564
+ *
4565
+ * Take `±n` Tasks from the position of the cursor.
4566
+ */
4567
+ take?: number
4568
+ /**
4569
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4570
+ *
4571
+ * Skip the first `n` Tasks.
4572
+ */
4573
+ skip?: number
4574
+ /**
4575
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
4576
+ *
4577
+ * Filter by unique combinations of Tasks.
4578
+ */
4579
+ distinct?: TaskScalarFieldEnum | TaskScalarFieldEnum[]
4580
+ }
4581
+
4582
+ /**
4583
+ * Task findMany
4584
+ */
4585
+ export type TaskFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4586
+ /**
4587
+ * Select specific fields to fetch from the Task
4588
+ */
4589
+ select?: TaskSelect<ExtArgs> | null
4590
+ /**
4591
+ * Choose, which related nodes to fetch as well
4592
+ */
4593
+ include?: TaskInclude<ExtArgs> | null
4594
+ /**
4595
+ * Filter, which Tasks to fetch.
4596
+ */
4597
+ where?: TaskWhereInput
4598
+ /**
4599
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
4600
+ *
4601
+ * Determine the order of Tasks to fetch.
4602
+ */
4603
+ orderBy?: TaskOrderByWithRelationInput | TaskOrderByWithRelationInput[]
4604
+ /**
4605
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
4606
+ *
4607
+ * Sets the position for listing Tasks.
4608
+ */
4609
+ cursor?: TaskWhereUniqueInput
4610
+ /**
4611
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4612
+ *
4613
+ * Take `±n` Tasks from the position of the cursor.
4614
+ */
4615
+ take?: number
4616
+ /**
4617
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4618
+ *
4619
+ * Skip the first `n` Tasks.
4620
+ */
4621
+ skip?: number
4622
+ distinct?: TaskScalarFieldEnum | TaskScalarFieldEnum[]
4623
+ }
4624
+
4625
+ /**
4626
+ * Task create
4627
+ */
4628
+ export type TaskCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4629
+ /**
4630
+ * Select specific fields to fetch from the Task
4631
+ */
4632
+ select?: TaskSelect<ExtArgs> | null
4633
+ /**
4634
+ * Choose, which related nodes to fetch as well
4635
+ */
4636
+ include?: TaskInclude<ExtArgs> | null
4637
+ /**
4638
+ * The data needed to create a Task.
4639
+ */
4640
+ data: XOR<TaskCreateInput, TaskUncheckedCreateInput>
4641
+ }
4642
+
4643
+ /**
4644
+ * Task createMany
4645
+ */
4646
+ export type TaskCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4647
+ /**
4648
+ * The data used to create many Tasks.
4649
+ */
4650
+ data: TaskCreateManyInput | TaskCreateManyInput[]
4651
+ }
4652
+
4653
+ /**
4654
+ * Task createManyAndReturn
4655
+ */
4656
+ export type TaskCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4657
+ /**
4658
+ * Select specific fields to fetch from the Task
4659
+ */
4660
+ select?: TaskSelectCreateManyAndReturn<ExtArgs> | null
4661
+ /**
4662
+ * The data used to create many Tasks.
4663
+ */
4664
+ data: TaskCreateManyInput | TaskCreateManyInput[]
4665
+ /**
4666
+ * Choose, which related nodes to fetch as well
4667
+ */
4668
+ include?: TaskIncludeCreateManyAndReturn<ExtArgs> | null
4669
+ }
4670
+
4671
+ /**
4672
+ * Task update
4673
+ */
4674
+ export type TaskUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4675
+ /**
4676
+ * Select specific fields to fetch from the Task
4677
+ */
4678
+ select?: TaskSelect<ExtArgs> | null
4679
+ /**
4680
+ * Choose, which related nodes to fetch as well
4681
+ */
4682
+ include?: TaskInclude<ExtArgs> | null
4683
+ /**
4684
+ * The data needed to update a Task.
4685
+ */
4686
+ data: XOR<TaskUpdateInput, TaskUncheckedUpdateInput>
4687
+ /**
4688
+ * Choose, which Task to update.
4689
+ */
4690
+ where: TaskWhereUniqueInput
4691
+ }
4692
+
4693
+ /**
4694
+ * Task updateMany
4695
+ */
4696
+ export type TaskUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4697
+ /**
4698
+ * The data used to update Tasks.
4699
+ */
4700
+ data: XOR<TaskUpdateManyMutationInput, TaskUncheckedUpdateManyInput>
4701
+ /**
4702
+ * Filter which Tasks to update
4703
+ */
4704
+ where?: TaskWhereInput
4705
+ }
4706
+
4707
+ /**
4708
+ * Task upsert
4709
+ */
4710
+ export type TaskUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4711
+ /**
4712
+ * Select specific fields to fetch from the Task
4713
+ */
4714
+ select?: TaskSelect<ExtArgs> | null
4715
+ /**
4716
+ * Choose, which related nodes to fetch as well
4717
+ */
4718
+ include?: TaskInclude<ExtArgs> | null
4719
+ /**
4720
+ * The filter to search for the Task to update in case it exists.
4721
+ */
4722
+ where: TaskWhereUniqueInput
4723
+ /**
4724
+ * In case the Task found by the `where` argument doesn't exist, create a new Task with this data.
4725
+ */
4726
+ create: XOR<TaskCreateInput, TaskUncheckedCreateInput>
4727
+ /**
4728
+ * In case the Task was found with the provided `where` argument, update it with this data.
4729
+ */
4730
+ update: XOR<TaskUpdateInput, TaskUncheckedUpdateInput>
4731
+ }
4732
+
4733
+ /**
4734
+ * Task delete
4735
+ */
4736
+ export type TaskDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4737
+ /**
4738
+ * Select specific fields to fetch from the Task
4739
+ */
4740
+ select?: TaskSelect<ExtArgs> | null
4741
+ /**
4742
+ * Choose, which related nodes to fetch as well
4743
+ */
4744
+ include?: TaskInclude<ExtArgs> | null
4745
+ /**
4746
+ * Filter which Task to delete.
4747
+ */
4748
+ where: TaskWhereUniqueInput
4749
+ }
4750
+
4751
+ /**
4752
+ * Task deleteMany
4753
+ */
4754
+ export type TaskDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4755
+ /**
4756
+ * Filter which Tasks to delete
4757
+ */
4758
+ where?: TaskWhereInput
4759
+ }
4760
+
4761
+ /**
4762
+ * Task.workspaces
4763
+ */
4764
+ export type Task$workspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4765
+ /**
4766
+ * Select specific fields to fetch from the Workspace
4767
+ */
4768
+ select?: WorkspaceSelect<ExtArgs> | null
4769
+ /**
4770
+ * Choose, which related nodes to fetch as well
4771
+ */
4772
+ include?: WorkspaceInclude<ExtArgs> | null
4773
+ where?: WorkspaceWhereInput
4774
+ orderBy?: WorkspaceOrderByWithRelationInput | WorkspaceOrderByWithRelationInput[]
4775
+ cursor?: WorkspaceWhereUniqueInput
4776
+ take?: number
4777
+ skip?: number
4778
+ distinct?: WorkspaceScalarFieldEnum | WorkspaceScalarFieldEnum[]
4779
+ }
4780
+
4781
+ /**
4782
+ * Task.teamRun
4783
+ */
4784
+ export type Task$teamRunArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4785
+ /**
4786
+ * Select specific fields to fetch from the TeamRun
4787
+ */
4788
+ select?: TeamRunSelect<ExtArgs> | null
4789
+ /**
4790
+ * Choose, which related nodes to fetch as well
4791
+ */
4792
+ include?: TeamRunInclude<ExtArgs> | null
4793
+ where?: TeamRunWhereInput
4794
+ }
4795
+
4796
+ /**
4797
+ * Task without action
4798
+ */
4799
+ export type TaskDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4800
+ /**
4801
+ * Select specific fields to fetch from the Task
4802
+ */
4803
+ select?: TaskSelect<ExtArgs> | null
4804
+ /**
4805
+ * Choose, which related nodes to fetch as well
4806
+ */
4807
+ include?: TaskInclude<ExtArgs> | null
4808
+ }
4809
+
4810
+
4811
+ /**
4812
+ * Model TaskCleanupJob
4813
+ */
4814
+
4815
+ export type AggregateTaskCleanupJob = {
4816
+ _count: TaskCleanupJobCountAggregateOutputType | null
4817
+ _avg: TaskCleanupJobAvgAggregateOutputType | null
4818
+ _sum: TaskCleanupJobSumAggregateOutputType | null
4819
+ _min: TaskCleanupJobMinAggregateOutputType | null
4820
+ _max: TaskCleanupJobMaxAggregateOutputType | null
4821
+ }
4822
+
4823
+ export type TaskCleanupJobAvgAggregateOutputType = {
4824
+ attempts: number | null
4825
+ }
4826
+
4827
+ export type TaskCleanupJobSumAggregateOutputType = {
4828
+ attempts: number | null
4829
+ }
4830
+
4831
+ export type TaskCleanupJobMinAggregateOutputType = {
4832
+ id: string | null
4833
+ taskId: string | null
4834
+ projectId: string | null
4835
+ payload: string | null
4836
+ status: string | null
4837
+ attempts: number | null
4838
+ lastError: string | null
4839
+ nextRetryAt: Date | null
4840
+ startedAt: Date | null
4841
+ completedAt: Date | null
4842
+ createdAt: Date | null
4843
+ updatedAt: Date | null
4844
+ }
4845
+
4846
+ export type TaskCleanupJobMaxAggregateOutputType = {
4847
+ id: string | null
4848
+ taskId: string | null
4849
+ projectId: string | null
4850
+ payload: string | null
4851
+ status: string | null
4852
+ attempts: number | null
4853
+ lastError: string | null
4854
+ nextRetryAt: Date | null
4855
+ startedAt: Date | null
4856
+ completedAt: Date | null
4857
+ createdAt: Date | null
4858
+ updatedAt: Date | null
4859
+ }
4860
+
4861
+ export type TaskCleanupJobCountAggregateOutputType = {
4862
+ id: number
4863
+ taskId: number
4864
+ projectId: number
4865
+ payload: number
4866
+ status: number
4867
+ attempts: number
4868
+ lastError: number
4869
+ nextRetryAt: number
4870
+ startedAt: number
4871
+ completedAt: number
4872
+ createdAt: number
4873
+ updatedAt: number
4874
+ _all: number
4875
+ }
4876
+
4877
+
4878
+ export type TaskCleanupJobAvgAggregateInputType = {
4879
+ attempts?: true
4880
+ }
4881
+
4882
+ export type TaskCleanupJobSumAggregateInputType = {
4883
+ attempts?: true
4884
+ }
4885
+
4886
+ export type TaskCleanupJobMinAggregateInputType = {
4887
+ id?: true
4888
+ taskId?: true
4889
+ projectId?: true
4890
+ payload?: true
4891
+ status?: true
4892
+ attempts?: true
4893
+ lastError?: true
4894
+ nextRetryAt?: true
4895
+ startedAt?: true
4896
+ completedAt?: true
4897
+ createdAt?: true
4898
+ updatedAt?: true
4899
+ }
4900
+
4901
+ export type TaskCleanupJobMaxAggregateInputType = {
4902
+ id?: true
4903
+ taskId?: true
4904
+ projectId?: true
4905
+ payload?: true
4906
+ status?: true
4907
+ attempts?: true
4908
+ lastError?: true
4909
+ nextRetryAt?: true
4910
+ startedAt?: true
4911
+ completedAt?: true
4912
+ createdAt?: true
4913
+ updatedAt?: true
4914
+ }
4915
+
4916
+ export type TaskCleanupJobCountAggregateInputType = {
4917
+ id?: true
4918
+ taskId?: true
4919
+ projectId?: true
4920
+ payload?: true
4921
+ status?: true
4922
+ attempts?: true
4923
+ lastError?: true
4924
+ nextRetryAt?: true
4925
+ startedAt?: true
4926
+ completedAt?: true
4927
+ createdAt?: true
4928
+ updatedAt?: true
4929
+ _all?: true
4930
+ }
4931
+
4932
+ export type TaskCleanupJobAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4933
+ /**
4934
+ * Filter which TaskCleanupJob to aggregate.
4935
+ */
4936
+ where?: TaskCleanupJobWhereInput
4937
+ /**
4938
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
4939
+ *
4940
+ * Determine the order of TaskCleanupJobs to fetch.
4941
+ */
4942
+ orderBy?: TaskCleanupJobOrderByWithRelationInput | TaskCleanupJobOrderByWithRelationInput[]
4943
+ /**
4944
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
4945
+ *
4946
+ * Sets the start position
4947
+ */
4948
+ cursor?: TaskCleanupJobWhereUniqueInput
4949
+ /**
4950
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4951
+ *
4952
+ * Take `±n` TaskCleanupJobs from the position of the cursor.
4953
+ */
4954
+ take?: number
4955
+ /**
4956
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4957
+ *
4958
+ * Skip the first `n` TaskCleanupJobs.
4959
+ */
4960
+ skip?: number
4961
+ /**
4962
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
4963
+ *
4964
+ * Count returned TaskCleanupJobs
4965
+ **/
4966
+ _count?: true | TaskCleanupJobCountAggregateInputType
4967
+ /**
4968
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
4969
+ *
4970
+ * Select which fields to average
4971
+ **/
4972
+ _avg?: TaskCleanupJobAvgAggregateInputType
4973
+ /**
4974
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
4975
+ *
4976
+ * Select which fields to sum
4977
+ **/
4978
+ _sum?: TaskCleanupJobSumAggregateInputType
4979
+ /**
4980
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
4981
+ *
4982
+ * Select which fields to find the minimum value
4983
+ **/
4984
+ _min?: TaskCleanupJobMinAggregateInputType
4985
+ /**
4986
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
4987
+ *
4988
+ * Select which fields to find the maximum value
4989
+ **/
4990
+ _max?: TaskCleanupJobMaxAggregateInputType
4991
+ }
4992
+
4993
+ export type GetTaskCleanupJobAggregateType<T extends TaskCleanupJobAggregateArgs> = {
4994
+ [P in keyof T & keyof AggregateTaskCleanupJob]: P extends '_count' | 'count'
4995
+ ? T[P] extends true
4996
+ ? number
4997
+ : GetScalarType<T[P], AggregateTaskCleanupJob[P]>
4998
+ : GetScalarType<T[P], AggregateTaskCleanupJob[P]>
4999
+ }
5000
+
5001
+
5002
+
5003
+
5004
+ export type TaskCleanupJobGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5005
+ where?: TaskCleanupJobWhereInput
5006
+ orderBy?: TaskCleanupJobOrderByWithAggregationInput | TaskCleanupJobOrderByWithAggregationInput[]
5007
+ by: TaskCleanupJobScalarFieldEnum[] | TaskCleanupJobScalarFieldEnum
5008
+ having?: TaskCleanupJobScalarWhereWithAggregatesInput
5009
+ take?: number
5010
+ skip?: number
5011
+ _count?: TaskCleanupJobCountAggregateInputType | true
5012
+ _avg?: TaskCleanupJobAvgAggregateInputType
5013
+ _sum?: TaskCleanupJobSumAggregateInputType
5014
+ _min?: TaskCleanupJobMinAggregateInputType
5015
+ _max?: TaskCleanupJobMaxAggregateInputType
5016
+ }
5017
+
5018
+ export type TaskCleanupJobGroupByOutputType = {
5019
+ id: string
5020
+ taskId: string
5021
+ projectId: string
5022
+ payload: string
5023
+ status: string
5024
+ attempts: number
5025
+ lastError: string | null
5026
+ nextRetryAt: Date | null
5027
+ startedAt: Date | null
5028
+ completedAt: Date | null
5029
+ createdAt: Date
5030
+ updatedAt: Date
5031
+ _count: TaskCleanupJobCountAggregateOutputType | null
5032
+ _avg: TaskCleanupJobAvgAggregateOutputType | null
5033
+ _sum: TaskCleanupJobSumAggregateOutputType | null
5034
+ _min: TaskCleanupJobMinAggregateOutputType | null
5035
+ _max: TaskCleanupJobMaxAggregateOutputType | null
5036
+ }
5037
+
5038
+ type GetTaskCleanupJobGroupByPayload<T extends TaskCleanupJobGroupByArgs> = Prisma.PrismaPromise<
5039
+ Array<
5040
+ PickEnumerable<TaskCleanupJobGroupByOutputType, T['by']> &
5041
+ {
5042
+ [P in ((keyof T) & (keyof TaskCleanupJobGroupByOutputType))]: P extends '_count'
5043
+ ? T[P] extends boolean
5044
+ ? number
5045
+ : GetScalarType<T[P], TaskCleanupJobGroupByOutputType[P]>
5046
+ : GetScalarType<T[P], TaskCleanupJobGroupByOutputType[P]>
5047
+ }
5048
+ >
5049
+ >
5050
+
5051
+
5052
+ export type TaskCleanupJobSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
5053
+ id?: boolean
5054
+ taskId?: boolean
5055
+ projectId?: boolean
5056
+ payload?: boolean
5057
+ status?: boolean
5058
+ attempts?: boolean
5059
+ lastError?: boolean
5060
+ nextRetryAt?: boolean
5061
+ startedAt?: boolean
5062
+ completedAt?: boolean
5063
+ createdAt?: boolean
5064
+ updatedAt?: boolean
5065
+ }, ExtArgs["result"]["taskCleanupJob"]>
5066
+
5067
+ export type TaskCleanupJobSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
5068
+ id?: boolean
5069
+ taskId?: boolean
5070
+ projectId?: boolean
5071
+ payload?: boolean
5072
+ status?: boolean
5073
+ attempts?: boolean
5074
+ lastError?: boolean
5075
+ nextRetryAt?: boolean
5076
+ startedAt?: boolean
5077
+ completedAt?: boolean
5078
+ createdAt?: boolean
5079
+ updatedAt?: boolean
5080
+ }, ExtArgs["result"]["taskCleanupJob"]>
5081
+
5082
+ export type TaskCleanupJobSelectScalar = {
5083
+ id?: boolean
5084
+ taskId?: boolean
5085
+ projectId?: boolean
5086
+ payload?: boolean
5087
+ status?: boolean
5088
+ attempts?: boolean
5089
+ lastError?: boolean
5090
+ nextRetryAt?: boolean
5091
+ startedAt?: boolean
5092
+ completedAt?: boolean
5093
+ createdAt?: boolean
5094
+ updatedAt?: boolean
5095
+ }
5096
+
5097
+
5098
+ export type $TaskCleanupJobPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5099
+ name: "TaskCleanupJob"
5100
+ objects: {}
5101
+ scalars: $Extensions.GetPayloadResult<{
5102
+ id: string
5103
+ taskId: string
5104
+ projectId: string
5105
+ payload: string
5106
+ status: string
5107
+ attempts: number
5108
+ lastError: string | null
5109
+ nextRetryAt: Date | null
5110
+ startedAt: Date | null
5111
+ completedAt: Date | null
5112
+ createdAt: Date
5113
+ updatedAt: Date
5114
+ }, ExtArgs["result"]["taskCleanupJob"]>
5115
+ composites: {}
5116
+ }
5117
+
5118
+ type TaskCleanupJobGetPayload<S extends boolean | null | undefined | TaskCleanupJobDefaultArgs> = $Result.GetResult<Prisma.$TaskCleanupJobPayload, S>
5119
+
5120
+ type TaskCleanupJobCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
5121
+ Omit<TaskCleanupJobFindManyArgs, 'select' | 'include' | 'distinct'> & {
5122
+ select?: TaskCleanupJobCountAggregateInputType | true
5123
+ }
5124
+
5125
+ export interface TaskCleanupJobDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
5126
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['TaskCleanupJob'], meta: { name: 'TaskCleanupJob' } }
5127
+ /**
5128
+ * Find zero or one TaskCleanupJob that matches the filter.
5129
+ * @param {TaskCleanupJobFindUniqueArgs} args - Arguments to find a TaskCleanupJob
5130
+ * @example
5131
+ * // Get one TaskCleanupJob
5132
+ * const taskCleanupJob = await prisma.taskCleanupJob.findUnique({
5133
+ * where: {
5134
+ * // ... provide filter here
5135
+ * }
5136
+ * })
5137
+ */
5138
+ findUnique<T extends TaskCleanupJobFindUniqueArgs>(args: SelectSubset<T, TaskCleanupJobFindUniqueArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
5139
+
5140
+ /**
5141
+ * Find one TaskCleanupJob that matches the filter or throw an error with `error.code='P2025'`
5142
+ * if no matches were found.
5143
+ * @param {TaskCleanupJobFindUniqueOrThrowArgs} args - Arguments to find a TaskCleanupJob
5144
+ * @example
5145
+ * // Get one TaskCleanupJob
5146
+ * const taskCleanupJob = await prisma.taskCleanupJob.findUniqueOrThrow({
5147
+ * where: {
5148
+ * // ... provide filter here
5149
+ * }
5150
+ * })
5151
+ */
5152
+ findUniqueOrThrow<T extends TaskCleanupJobFindUniqueOrThrowArgs>(args: SelectSubset<T, TaskCleanupJobFindUniqueOrThrowArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
5153
+
5154
+ /**
5155
+ * Find the first TaskCleanupJob that matches the filter.
5156
+ * Note, that providing `undefined` is treated as the value not being there.
5157
+ * Read more here: https://pris.ly/d/null-undefined
5158
+ * @param {TaskCleanupJobFindFirstArgs} args - Arguments to find a TaskCleanupJob
5159
+ * @example
5160
+ * // Get one TaskCleanupJob
5161
+ * const taskCleanupJob = await prisma.taskCleanupJob.findFirst({
5162
+ * where: {
5163
+ * // ... provide filter here
5164
+ * }
5165
+ * })
5166
+ */
5167
+ findFirst<T extends TaskCleanupJobFindFirstArgs>(args?: SelectSubset<T, TaskCleanupJobFindFirstArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
5168
+
5169
+ /**
5170
+ * Find the first TaskCleanupJob that matches the filter or
5171
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
5172
+ * Note, that providing `undefined` is treated as the value not being there.
5173
+ * Read more here: https://pris.ly/d/null-undefined
5174
+ * @param {TaskCleanupJobFindFirstOrThrowArgs} args - Arguments to find a TaskCleanupJob
5175
+ * @example
5176
+ * // Get one TaskCleanupJob
5177
+ * const taskCleanupJob = await prisma.taskCleanupJob.findFirstOrThrow({
5178
+ * where: {
5179
+ * // ... provide filter here
5180
+ * }
5181
+ * })
5182
+ */
5183
+ findFirstOrThrow<T extends TaskCleanupJobFindFirstOrThrowArgs>(args?: SelectSubset<T, TaskCleanupJobFindFirstOrThrowArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
5184
+
5185
+ /**
5186
+ * Find zero or more TaskCleanupJobs that matches the filter.
5187
+ * Note, that providing `undefined` is treated as the value not being there.
5188
+ * Read more here: https://pris.ly/d/null-undefined
5189
+ * @param {TaskCleanupJobFindManyArgs} args - Arguments to filter and select certain fields only.
5190
+ * @example
5191
+ * // Get all TaskCleanupJobs
5192
+ * const taskCleanupJobs = await prisma.taskCleanupJob.findMany()
5193
+ *
5194
+ * // Get first 10 TaskCleanupJobs
5195
+ * const taskCleanupJobs = await prisma.taskCleanupJob.findMany({ take: 10 })
5196
+ *
5197
+ * // Only select the `id`
5198
+ * const taskCleanupJobWithIdOnly = await prisma.taskCleanupJob.findMany({ select: { id: true } })
5199
+ *
5200
+ */
5201
+ findMany<T extends TaskCleanupJobFindManyArgs>(args?: SelectSubset<T, TaskCleanupJobFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "findMany">>
5202
+
5203
+ /**
5204
+ * Create a TaskCleanupJob.
5205
+ * @param {TaskCleanupJobCreateArgs} args - Arguments to create a TaskCleanupJob.
5206
+ * @example
5207
+ * // Create one TaskCleanupJob
5208
+ * const TaskCleanupJob = await prisma.taskCleanupJob.create({
5209
+ * data: {
5210
+ * // ... data to create a TaskCleanupJob
5211
+ * }
5212
+ * })
5213
+ *
5214
+ */
5215
+ create<T extends TaskCleanupJobCreateArgs>(args: SelectSubset<T, TaskCleanupJobCreateArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "create">, never, ExtArgs>
5216
+
5217
+ /**
5218
+ * Create many TaskCleanupJobs.
5219
+ * @param {TaskCleanupJobCreateManyArgs} args - Arguments to create many TaskCleanupJobs.
5220
+ * @example
5221
+ * // Create many TaskCleanupJobs
5222
+ * const taskCleanupJob = await prisma.taskCleanupJob.createMany({
5223
+ * data: [
5224
+ * // ... provide data here
5225
+ * ]
5226
+ * })
5227
+ *
5228
+ */
5229
+ createMany<T extends TaskCleanupJobCreateManyArgs>(args?: SelectSubset<T, TaskCleanupJobCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
5230
+
5231
+ /**
5232
+ * Create many TaskCleanupJobs and returns the data saved in the database.
5233
+ * @param {TaskCleanupJobCreateManyAndReturnArgs} args - Arguments to create many TaskCleanupJobs.
5234
+ * @example
5235
+ * // Create many TaskCleanupJobs
5236
+ * const taskCleanupJob = await prisma.taskCleanupJob.createManyAndReturn({
5237
+ * data: [
5238
+ * // ... provide data here
5239
+ * ]
5240
+ * })
5241
+ *
5242
+ * // Create many TaskCleanupJobs and only return the `id`
5243
+ * const taskCleanupJobWithIdOnly = await prisma.taskCleanupJob.createManyAndReturn({
5244
+ * select: { id: true },
5245
+ * data: [
5246
+ * // ... provide data here
5247
+ * ]
5248
+ * })
5249
+ * Note, that providing `undefined` is treated as the value not being there.
5250
+ * Read more here: https://pris.ly/d/null-undefined
5251
+ *
5252
+ */
5253
+ createManyAndReturn<T extends TaskCleanupJobCreateManyAndReturnArgs>(args?: SelectSubset<T, TaskCleanupJobCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "createManyAndReturn">>
5254
+
5255
+ /**
5256
+ * Delete a TaskCleanupJob.
5257
+ * @param {TaskCleanupJobDeleteArgs} args - Arguments to delete one TaskCleanupJob.
5258
+ * @example
5259
+ * // Delete one TaskCleanupJob
5260
+ * const TaskCleanupJob = await prisma.taskCleanupJob.delete({
5261
+ * where: {
5262
+ * // ... filter to delete one TaskCleanupJob
5263
+ * }
5264
+ * })
5265
+ *
5266
+ */
5267
+ delete<T extends TaskCleanupJobDeleteArgs>(args: SelectSubset<T, TaskCleanupJobDeleteArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "delete">, never, ExtArgs>
5268
+
5269
+ /**
5270
+ * Update one TaskCleanupJob.
5271
+ * @param {TaskCleanupJobUpdateArgs} args - Arguments to update one TaskCleanupJob.
5272
+ * @example
5273
+ * // Update one TaskCleanupJob
5274
+ * const taskCleanupJob = await prisma.taskCleanupJob.update({
5275
+ * where: {
5276
+ * // ... provide filter here
5277
+ * },
5278
+ * data: {
5279
+ * // ... provide data here
5280
+ * }
5281
+ * })
5282
+ *
5283
+ */
5284
+ update<T extends TaskCleanupJobUpdateArgs>(args: SelectSubset<T, TaskCleanupJobUpdateArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "update">, never, ExtArgs>
5285
+
5286
+ /**
5287
+ * Delete zero or more TaskCleanupJobs.
5288
+ * @param {TaskCleanupJobDeleteManyArgs} args - Arguments to filter TaskCleanupJobs to delete.
5289
+ * @example
5290
+ * // Delete a few TaskCleanupJobs
5291
+ * const { count } = await prisma.taskCleanupJob.deleteMany({
5292
+ * where: {
5293
+ * // ... provide filter here
5294
+ * }
5295
+ * })
5296
+ *
5297
+ */
5298
+ deleteMany<T extends TaskCleanupJobDeleteManyArgs>(args?: SelectSubset<T, TaskCleanupJobDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
5299
+
5300
+ /**
5301
+ * Update zero or more TaskCleanupJobs.
5302
+ * Note, that providing `undefined` is treated as the value not being there.
5303
+ * Read more here: https://pris.ly/d/null-undefined
5304
+ * @param {TaskCleanupJobUpdateManyArgs} args - Arguments to update one or more rows.
5305
+ * @example
5306
+ * // Update many TaskCleanupJobs
5307
+ * const taskCleanupJob = await prisma.taskCleanupJob.updateMany({
5308
+ * where: {
5309
+ * // ... provide filter here
5310
+ * },
5311
+ * data: {
5312
+ * // ... provide data here
5313
+ * }
5314
+ * })
5315
+ *
5316
+ */
5317
+ updateMany<T extends TaskCleanupJobUpdateManyArgs>(args: SelectSubset<T, TaskCleanupJobUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
5318
+
5319
+ /**
5320
+ * Create or update one TaskCleanupJob.
5321
+ * @param {TaskCleanupJobUpsertArgs} args - Arguments to update or create a TaskCleanupJob.
5322
+ * @example
5323
+ * // Update or create a TaskCleanupJob
5324
+ * const taskCleanupJob = await prisma.taskCleanupJob.upsert({
5325
+ * create: {
5326
+ * // ... data to create a TaskCleanupJob
5327
+ * },
5328
+ * update: {
5329
+ * // ... in case it already exists, update
5330
+ * },
5331
+ * where: {
5332
+ * // ... the filter for the TaskCleanupJob we want to update
5333
+ * }
5334
+ * })
5335
+ */
5336
+ upsert<T extends TaskCleanupJobUpsertArgs>(args: SelectSubset<T, TaskCleanupJobUpsertArgs<ExtArgs>>): Prisma__TaskCleanupJobClient<$Result.GetResult<Prisma.$TaskCleanupJobPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
5337
+
5338
+
5339
+ /**
5340
+ * Count the number of TaskCleanupJobs.
5341
+ * Note, that providing `undefined` is treated as the value not being there.
5342
+ * Read more here: https://pris.ly/d/null-undefined
5343
+ * @param {TaskCleanupJobCountArgs} args - Arguments to filter TaskCleanupJobs to count.
5344
+ * @example
5345
+ * // Count the number of TaskCleanupJobs
5346
+ * const count = await prisma.taskCleanupJob.count({
5347
+ * where: {
5348
+ * // ... the filter for the TaskCleanupJobs we want to count
5349
+ * }
5350
+ * })
5351
+ **/
5352
+ count<T extends TaskCleanupJobCountArgs>(
5353
+ args?: Subset<T, TaskCleanupJobCountArgs>,
5354
+ ): Prisma.PrismaPromise<
5355
+ T extends $Utils.Record<'select', any>
5356
+ ? T['select'] extends true
5357
+ ? number
5358
+ : GetScalarType<T['select'], TaskCleanupJobCountAggregateOutputType>
5359
+ : number
5360
+ >
5361
+
5362
+ /**
5363
+ * Allows you to perform aggregations operations on a TaskCleanupJob.
5364
+ * Note, that providing `undefined` is treated as the value not being there.
5365
+ * Read more here: https://pris.ly/d/null-undefined
5366
+ * @param {TaskCleanupJobAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
5367
+ * @example
5368
+ * // Ordered by age ascending
5369
+ * // Where email contains prisma.io
5370
+ * // Limited to the 10 users
5371
+ * const aggregations = await prisma.user.aggregate({
5372
+ * _avg: {
5373
+ * age: true,
5374
+ * },
5375
+ * where: {
5376
+ * email: {
5377
+ * contains: "prisma.io",
5378
+ * },
5379
+ * },
5380
+ * orderBy: {
5381
+ * age: "asc",
5382
+ * },
5383
+ * take: 10,
5384
+ * })
5385
+ **/
5386
+ aggregate<T extends TaskCleanupJobAggregateArgs>(args: Subset<T, TaskCleanupJobAggregateArgs>): Prisma.PrismaPromise<GetTaskCleanupJobAggregateType<T>>
5387
+
5388
+ /**
5389
+ * Group by TaskCleanupJob.
5390
+ * Note, that providing `undefined` is treated as the value not being there.
5391
+ * Read more here: https://pris.ly/d/null-undefined
5392
+ * @param {TaskCleanupJobGroupByArgs} args - Group by arguments.
5393
+ * @example
5394
+ * // Group by city, order by createdAt, get count
5395
+ * const result = await prisma.user.groupBy({
5396
+ * by: ['city', 'createdAt'],
5397
+ * orderBy: {
5398
+ * createdAt: true
5399
+ * },
5400
+ * _count: {
5401
+ * _all: true
5402
+ * },
5403
+ * })
5404
+ *
5405
+ **/
5406
+ groupBy<
5407
+ T extends TaskCleanupJobGroupByArgs,
5408
+ HasSelectOrTake extends Or<
5409
+ Extends<'skip', Keys<T>>,
5410
+ Extends<'take', Keys<T>>
5411
+ >,
5412
+ OrderByArg extends True extends HasSelectOrTake
5413
+ ? { orderBy: TaskCleanupJobGroupByArgs['orderBy'] }
5414
+ : { orderBy?: TaskCleanupJobGroupByArgs['orderBy'] },
5415
+ OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
5416
+ ByFields extends MaybeTupleToUnion<T['by']>,
5417
+ ByValid extends Has<ByFields, OrderFields>,
5418
+ HavingFields extends GetHavingFields<T['having']>,
5419
+ HavingValid extends Has<ByFields, HavingFields>,
5420
+ ByEmpty extends T['by'] extends never[] ? True : False,
5421
+ InputErrors extends ByEmpty extends True
5422
+ ? `Error: "by" must not be empty.`
5423
+ : HavingValid extends False
5424
+ ? {
5425
+ [P in HavingFields]: P extends ByFields
5426
+ ? never
5427
+ : P extends string
5428
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
5429
+ : [
5430
+ Error,
5431
+ 'Field ',
5432
+ P,
5433
+ ` in "having" needs to be provided in "by"`,
5434
+ ]
5435
+ }[HavingFields]
5436
+ : 'take' extends Keys<T>
5437
+ ? 'orderBy' extends Keys<T>
5438
+ ? ByValid extends True
5439
+ ? {}
5440
+ : {
5441
+ [P in OrderFields]: P extends ByFields
5442
+ ? never
5443
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
5444
+ }[OrderFields]
5445
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
5446
+ : 'skip' extends Keys<T>
5447
+ ? 'orderBy' extends Keys<T>
5448
+ ? ByValid extends True
5449
+ ? {}
5450
+ : {
5451
+ [P in OrderFields]: P extends ByFields
5452
+ ? never
5453
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
5454
+ }[OrderFields]
5455
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
5456
+ : ByValid extends True
5457
+ ? {}
5458
+ : {
5459
+ [P in OrderFields]: P extends ByFields
5460
+ ? never
5461
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
5462
+ }[OrderFields]
5463
+ >(args: SubsetIntersection<T, TaskCleanupJobGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetTaskCleanupJobGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
5464
+ /**
5465
+ * Fields of the TaskCleanupJob model
5466
+ */
5467
+ readonly fields: TaskCleanupJobFieldRefs;
5468
+ }
5469
+
5470
+ /**
5471
+ * The delegate class that acts as a "Promise-like" for TaskCleanupJob.
5472
+ * Why is this prefixed with `Prisma__`?
5473
+ * Because we want to prevent naming conflicts as mentioned in
5474
+ * https://github.com/prisma/prisma-client-js/issues/707
5475
+ */
5476
+ export interface Prisma__TaskCleanupJobClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
5477
+ readonly [Symbol.toStringTag]: "PrismaPromise"
5478
+ /**
5479
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
5480
+ * @param onfulfilled The callback to execute when the Promise is resolved.
5481
+ * @param onrejected The callback to execute when the Promise is rejected.
5482
+ * @returns A Promise for the completion of which ever callback is executed.
5483
+ */
5484
+ then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
5485
+ /**
5486
+ * Attaches a callback for only the rejection of the Promise.
5487
+ * @param onrejected The callback to execute when the Promise is rejected.
5488
+ * @returns A Promise for the completion of the callback.
5489
+ */
5490
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
5491
+ /**
5492
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
5493
+ * resolved value cannot be modified from the callback.
5494
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
5495
+ * @returns A Promise for the completion of the callback.
5496
+ */
5497
+ finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
5498
+ }
5499
+
5500
+
5501
+
5502
+
5503
+ /**
5504
+ * Fields of the TaskCleanupJob model
5505
+ */
5506
+ interface TaskCleanupJobFieldRefs {
5507
+ readonly id: FieldRef<"TaskCleanupJob", 'String'>
5508
+ readonly taskId: FieldRef<"TaskCleanupJob", 'String'>
5509
+ readonly projectId: FieldRef<"TaskCleanupJob", 'String'>
5510
+ readonly payload: FieldRef<"TaskCleanupJob", 'String'>
5511
+ readonly status: FieldRef<"TaskCleanupJob", 'String'>
5512
+ readonly attempts: FieldRef<"TaskCleanupJob", 'Int'>
5513
+ readonly lastError: FieldRef<"TaskCleanupJob", 'String'>
5514
+ readonly nextRetryAt: FieldRef<"TaskCleanupJob", 'DateTime'>
5515
+ readonly startedAt: FieldRef<"TaskCleanupJob", 'DateTime'>
5516
+ readonly completedAt: FieldRef<"TaskCleanupJob", 'DateTime'>
5517
+ readonly createdAt: FieldRef<"TaskCleanupJob", 'DateTime'>
5518
+ readonly updatedAt: FieldRef<"TaskCleanupJob", 'DateTime'>
5519
+ }
5520
+
5521
+
5522
+ // Custom InputTypes
5523
+ /**
5524
+ * TaskCleanupJob findUnique
5525
+ */
5526
+ export type TaskCleanupJobFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5527
+ /**
5528
+ * Select specific fields to fetch from the TaskCleanupJob
5529
+ */
5530
+ select?: TaskCleanupJobSelect<ExtArgs> | null
5531
+ /**
5532
+ * Filter, which TaskCleanupJob to fetch.
5533
+ */
5534
+ where: TaskCleanupJobWhereUniqueInput
5535
+ }
5536
+
5537
+ /**
5538
+ * TaskCleanupJob findUniqueOrThrow
5539
+ */
5540
+ export type TaskCleanupJobFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5541
+ /**
5542
+ * Select specific fields to fetch from the TaskCleanupJob
5543
+ */
5544
+ select?: TaskCleanupJobSelect<ExtArgs> | null
5545
+ /**
5546
+ * Filter, which TaskCleanupJob to fetch.
5547
+ */
5548
+ where: TaskCleanupJobWhereUniqueInput
5549
+ }
5550
+
5551
+ /**
5552
+ * TaskCleanupJob findFirst
5553
+ */
5554
+ export type TaskCleanupJobFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5555
+ /**
5556
+ * Select specific fields to fetch from the TaskCleanupJob
5557
+ */
5558
+ select?: TaskCleanupJobSelect<ExtArgs> | null
5559
+ /**
5560
+ * Filter, which TaskCleanupJob to fetch.
5561
+ */
5562
+ where?: TaskCleanupJobWhereInput
5563
+ /**
5564
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
5565
+ *
5566
+ * Determine the order of TaskCleanupJobs to fetch.
5567
+ */
5568
+ orderBy?: TaskCleanupJobOrderByWithRelationInput | TaskCleanupJobOrderByWithRelationInput[]
5569
+ /**
5570
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
5571
+ *
5572
+ * Sets the position for searching for TaskCleanupJobs.
5573
+ */
5574
+ cursor?: TaskCleanupJobWhereUniqueInput
5575
+ /**
5576
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
5577
+ *
5578
+ * Take `±n` TaskCleanupJobs from the position of the cursor.
5579
+ */
5580
+ take?: number
5581
+ /**
5582
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
5583
+ *
5584
+ * Skip the first `n` TaskCleanupJobs.
5585
+ */
5586
+ skip?: number
5587
+ /**
5588
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
5589
+ *
5590
+ * Filter by unique combinations of TaskCleanupJobs.
5591
+ */
5592
+ distinct?: TaskCleanupJobScalarFieldEnum | TaskCleanupJobScalarFieldEnum[]
5593
+ }
5594
+
5595
+ /**
5596
+ * TaskCleanupJob findFirstOrThrow
5597
+ */
5598
+ export type TaskCleanupJobFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5599
+ /**
5600
+ * Select specific fields to fetch from the TaskCleanupJob
5601
+ */
5602
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4448
5603
  /**
4449
- * Filter, which Task to fetch.
5604
+ * Filter, which TaskCleanupJob to fetch.
4450
5605
  */
4451
- where?: TaskWhereInput
5606
+ where?: TaskCleanupJobWhereInput
4452
5607
  /**
4453
5608
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
4454
5609
  *
4455
- * Determine the order of Tasks to fetch.
5610
+ * Determine the order of TaskCleanupJobs to fetch.
4456
5611
  */
4457
- orderBy?: TaskOrderByWithRelationInput | TaskOrderByWithRelationInput[]
5612
+ orderBy?: TaskCleanupJobOrderByWithRelationInput | TaskCleanupJobOrderByWithRelationInput[]
4458
5613
  /**
4459
5614
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
4460
5615
  *
4461
- * Sets the position for searching for Tasks.
5616
+ * Sets the position for searching for TaskCleanupJobs.
4462
5617
  */
4463
- cursor?: TaskWhereUniqueInput
5618
+ cursor?: TaskCleanupJobWhereUniqueInput
4464
5619
  /**
4465
5620
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4466
5621
  *
4467
- * Take `±n` Tasks from the position of the cursor.
5622
+ * Take `±n` TaskCleanupJobs from the position of the cursor.
4468
5623
  */
4469
5624
  take?: number
4470
5625
  /**
4471
5626
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4472
5627
  *
4473
- * Skip the first `n` Tasks.
5628
+ * Skip the first `n` TaskCleanupJobs.
4474
5629
  */
4475
5630
  skip?: number
4476
5631
  /**
4477
5632
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
4478
5633
  *
4479
- * Filter by unique combinations of Tasks.
5634
+ * Filter by unique combinations of TaskCleanupJobs.
4480
5635
  */
4481
- distinct?: TaskScalarFieldEnum | TaskScalarFieldEnum[]
5636
+ distinct?: TaskCleanupJobScalarFieldEnum | TaskCleanupJobScalarFieldEnum[]
4482
5637
  }
4483
5638
 
4484
5639
  /**
4485
- * Task findMany
5640
+ * TaskCleanupJob findMany
4486
5641
  */
4487
- export type TaskFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4488
- /**
4489
- * Select specific fields to fetch from the Task
4490
- */
4491
- select?: TaskSelect<ExtArgs> | null
5642
+ export type TaskCleanupJobFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4492
5643
  /**
4493
- * Choose, which related nodes to fetch as well
5644
+ * Select specific fields to fetch from the TaskCleanupJob
4494
5645
  */
4495
- include?: TaskInclude<ExtArgs> | null
5646
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4496
5647
  /**
4497
- * Filter, which Tasks to fetch.
5648
+ * Filter, which TaskCleanupJobs to fetch.
4498
5649
  */
4499
- where?: TaskWhereInput
5650
+ where?: TaskCleanupJobWhereInput
4500
5651
  /**
4501
5652
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
4502
5653
  *
4503
- * Determine the order of Tasks to fetch.
5654
+ * Determine the order of TaskCleanupJobs to fetch.
4504
5655
  */
4505
- orderBy?: TaskOrderByWithRelationInput | TaskOrderByWithRelationInput[]
5656
+ orderBy?: TaskCleanupJobOrderByWithRelationInput | TaskCleanupJobOrderByWithRelationInput[]
4506
5657
  /**
4507
5658
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
4508
5659
  *
4509
- * Sets the position for listing Tasks.
5660
+ * Sets the position for listing TaskCleanupJobs.
4510
5661
  */
4511
- cursor?: TaskWhereUniqueInput
5662
+ cursor?: TaskCleanupJobWhereUniqueInput
4512
5663
  /**
4513
5664
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4514
5665
  *
4515
- * Take `±n` Tasks from the position of the cursor.
5666
+ * Take `±n` TaskCleanupJobs from the position of the cursor.
4516
5667
  */
4517
5668
  take?: number
4518
5669
  /**
4519
5670
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
4520
5671
  *
4521
- * Skip the first `n` Tasks.
5672
+ * Skip the first `n` TaskCleanupJobs.
4522
5673
  */
4523
5674
  skip?: number
4524
- distinct?: TaskScalarFieldEnum | TaskScalarFieldEnum[]
5675
+ distinct?: TaskCleanupJobScalarFieldEnum | TaskCleanupJobScalarFieldEnum[]
4525
5676
  }
4526
5677
 
4527
5678
  /**
4528
- * Task create
5679
+ * TaskCleanupJob create
4529
5680
  */
4530
- export type TaskCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4531
- /**
4532
- * Select specific fields to fetch from the Task
4533
- */
4534
- select?: TaskSelect<ExtArgs> | null
5681
+ export type TaskCleanupJobCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4535
5682
  /**
4536
- * Choose, which related nodes to fetch as well
5683
+ * Select specific fields to fetch from the TaskCleanupJob
4537
5684
  */
4538
- include?: TaskInclude<ExtArgs> | null
5685
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4539
5686
  /**
4540
- * The data needed to create a Task.
5687
+ * The data needed to create a TaskCleanupJob.
4541
5688
  */
4542
- data: XOR<TaskCreateInput, TaskUncheckedCreateInput>
5689
+ data: XOR<TaskCleanupJobCreateInput, TaskCleanupJobUncheckedCreateInput>
4543
5690
  }
4544
5691
 
4545
5692
  /**
4546
- * Task createMany
5693
+ * TaskCleanupJob createMany
4547
5694
  */
4548
- export type TaskCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5695
+ export type TaskCleanupJobCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4549
5696
  /**
4550
- * The data used to create many Tasks.
5697
+ * The data used to create many TaskCleanupJobs.
4551
5698
  */
4552
- data: TaskCreateManyInput | TaskCreateManyInput[]
5699
+ data: TaskCleanupJobCreateManyInput | TaskCleanupJobCreateManyInput[]
4553
5700
  }
4554
5701
 
4555
5702
  /**
4556
- * Task createManyAndReturn
5703
+ * TaskCleanupJob createManyAndReturn
4557
5704
  */
4558
- export type TaskCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4559
- /**
4560
- * Select specific fields to fetch from the Task
4561
- */
4562
- select?: TaskSelectCreateManyAndReturn<ExtArgs> | null
5705
+ export type TaskCleanupJobCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4563
5706
  /**
4564
- * The data used to create many Tasks.
5707
+ * Select specific fields to fetch from the TaskCleanupJob
4565
5708
  */
4566
- data: TaskCreateManyInput | TaskCreateManyInput[]
5709
+ select?: TaskCleanupJobSelectCreateManyAndReturn<ExtArgs> | null
4567
5710
  /**
4568
- * Choose, which related nodes to fetch as well
5711
+ * The data used to create many TaskCleanupJobs.
4569
5712
  */
4570
- include?: TaskIncludeCreateManyAndReturn<ExtArgs> | null
5713
+ data: TaskCleanupJobCreateManyInput | TaskCleanupJobCreateManyInput[]
4571
5714
  }
4572
5715
 
4573
5716
  /**
4574
- * Task update
5717
+ * TaskCleanupJob update
4575
5718
  */
4576
- export type TaskUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4577
- /**
4578
- * Select specific fields to fetch from the Task
4579
- */
4580
- select?: TaskSelect<ExtArgs> | null
4581
- /**
4582
- * Choose, which related nodes to fetch as well
4583
- */
4584
- include?: TaskInclude<ExtArgs> | null
4585
- /**
4586
- * The data needed to update a Task.
4587
- */
4588
- data: XOR<TaskUpdateInput, TaskUncheckedUpdateInput>
5719
+ export type TaskCleanupJobUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4589
5720
  /**
4590
- * Choose, which Task to update.
5721
+ * Select specific fields to fetch from the TaskCleanupJob
4591
5722
  */
4592
- where: TaskWhereUniqueInput
4593
- }
4594
-
4595
- /**
4596
- * Task updateMany
4597
- */
4598
- export type TaskUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5723
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4599
5724
  /**
4600
- * The data used to update Tasks.
5725
+ * The data needed to update a TaskCleanupJob.
4601
5726
  */
4602
- data: XOR<TaskUpdateManyMutationInput, TaskUncheckedUpdateManyInput>
5727
+ data: XOR<TaskCleanupJobUpdateInput, TaskCleanupJobUncheckedUpdateInput>
4603
5728
  /**
4604
- * Filter which Tasks to update
5729
+ * Choose, which TaskCleanupJob to update.
4605
5730
  */
4606
- where?: TaskWhereInput
5731
+ where: TaskCleanupJobWhereUniqueInput
4607
5732
  }
4608
5733
 
4609
5734
  /**
4610
- * Task upsert
5735
+ * TaskCleanupJob updateMany
4611
5736
  */
4612
- export type TaskUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5737
+ export type TaskCleanupJobUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4613
5738
  /**
4614
- * Select specific fields to fetch from the Task
4615
- */
4616
- select?: TaskSelect<ExtArgs> | null
4617
- /**
4618
- * Choose, which related nodes to fetch as well
4619
- */
4620
- include?: TaskInclude<ExtArgs> | null
4621
- /**
4622
- * The filter to search for the Task to update in case it exists.
4623
- */
4624
- where: TaskWhereUniqueInput
4625
- /**
4626
- * In case the Task found by the `where` argument doesn't exist, create a new Task with this data.
5739
+ * The data used to update TaskCleanupJobs.
4627
5740
  */
4628
- create: XOR<TaskCreateInput, TaskUncheckedCreateInput>
5741
+ data: XOR<TaskCleanupJobUpdateManyMutationInput, TaskCleanupJobUncheckedUpdateManyInput>
4629
5742
  /**
4630
- * In case the Task was found with the provided `where` argument, update it with this data.
5743
+ * Filter which TaskCleanupJobs to update
4631
5744
  */
4632
- update: XOR<TaskUpdateInput, TaskUncheckedUpdateInput>
5745
+ where?: TaskCleanupJobWhereInput
4633
5746
  }
4634
5747
 
4635
5748
  /**
4636
- * Task delete
5749
+ * TaskCleanupJob upsert
4637
5750
  */
4638
- export type TaskDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5751
+ export type TaskCleanupJobUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4639
5752
  /**
4640
- * Select specific fields to fetch from the Task
5753
+ * Select specific fields to fetch from the TaskCleanupJob
4641
5754
  */
4642
- select?: TaskSelect<ExtArgs> | null
5755
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4643
5756
  /**
4644
- * Choose, which related nodes to fetch as well
5757
+ * The filter to search for the TaskCleanupJob to update in case it exists.
4645
5758
  */
4646
- include?: TaskInclude<ExtArgs> | null
5759
+ where: TaskCleanupJobWhereUniqueInput
4647
5760
  /**
4648
- * Filter which Task to delete.
5761
+ * In case the TaskCleanupJob found by the `where` argument doesn't exist, create a new TaskCleanupJob with this data.
4649
5762
  */
4650
- where: TaskWhereUniqueInput
4651
- }
4652
-
4653
- /**
4654
- * Task deleteMany
4655
- */
4656
- export type TaskDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5763
+ create: XOR<TaskCleanupJobCreateInput, TaskCleanupJobUncheckedCreateInput>
4657
5764
  /**
4658
- * Filter which Tasks to delete
5765
+ * In case the TaskCleanupJob was found with the provided `where` argument, update it with this data.
4659
5766
  */
4660
- where?: TaskWhereInput
5767
+ update: XOR<TaskCleanupJobUpdateInput, TaskCleanupJobUncheckedUpdateInput>
4661
5768
  }
4662
5769
 
4663
5770
  /**
4664
- * Task.workspaces
5771
+ * TaskCleanupJob delete
4665
5772
  */
4666
- export type Task$workspacesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5773
+ export type TaskCleanupJobDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4667
5774
  /**
4668
- * Select specific fields to fetch from the Workspace
5775
+ * Select specific fields to fetch from the TaskCleanupJob
4669
5776
  */
4670
- select?: WorkspaceSelect<ExtArgs> | null
5777
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4671
5778
  /**
4672
- * Choose, which related nodes to fetch as well
5779
+ * Filter which TaskCleanupJob to delete.
4673
5780
  */
4674
- include?: WorkspaceInclude<ExtArgs> | null
4675
- where?: WorkspaceWhereInput
4676
- orderBy?: WorkspaceOrderByWithRelationInput | WorkspaceOrderByWithRelationInput[]
4677
- cursor?: WorkspaceWhereUniqueInput
4678
- take?: number
4679
- skip?: number
4680
- distinct?: WorkspaceScalarFieldEnum | WorkspaceScalarFieldEnum[]
5781
+ where: TaskCleanupJobWhereUniqueInput
4681
5782
  }
4682
5783
 
4683
5784
  /**
4684
- * Task.teamRun
5785
+ * TaskCleanupJob deleteMany
4685
5786
  */
4686
- export type Task$teamRunArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4687
- /**
4688
- * Select specific fields to fetch from the TeamRun
4689
- */
4690
- select?: TeamRunSelect<ExtArgs> | null
5787
+ export type TaskCleanupJobDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4691
5788
  /**
4692
- * Choose, which related nodes to fetch as well
5789
+ * Filter which TaskCleanupJobs to delete
4693
5790
  */
4694
- include?: TeamRunInclude<ExtArgs> | null
4695
- where?: TeamRunWhereInput
5791
+ where?: TaskCleanupJobWhereInput
4696
5792
  }
4697
5793
 
4698
5794
  /**
4699
- * Task without action
5795
+ * TaskCleanupJob without action
4700
5796
  */
4701
- export type TaskDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4702
- /**
4703
- * Select specific fields to fetch from the Task
4704
- */
4705
- select?: TaskSelect<ExtArgs> | null
5797
+ export type TaskCleanupJobDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4706
5798
  /**
4707
- * Choose, which related nodes to fetch as well
5799
+ * Select specific fields to fetch from the TaskCleanupJob
4708
5800
  */
4709
- include?: TaskInclude<ExtArgs> | null
5801
+ select?: TaskCleanupJobSelect<ExtArgs> | null
4710
5802
  }
4711
5803
 
4712
5804
 
@@ -13828,6 +14920,8 @@ export namespace Prisma {
13828
14920
  branchName: string | null
13829
14921
  baseBranch: string | null
13830
14922
  worktreePath: string | null
14923
+ workspaceKind: string | null
14924
+ workingDir: string | null
13831
14925
  status: string | null
13832
14926
  commitMessage: string | null
13833
14927
  previewTarget: string | null
@@ -13844,6 +14938,8 @@ export namespace Prisma {
13844
14938
  branchName: string | null
13845
14939
  baseBranch: string | null
13846
14940
  worktreePath: string | null
14941
+ workspaceKind: string | null
14942
+ workingDir: string | null
13847
14943
  status: string | null
13848
14944
  commitMessage: string | null
13849
14945
  previewTarget: string | null
@@ -13860,6 +14956,8 @@ export namespace Prisma {
13860
14956
  branchName: number
13861
14957
  baseBranch: number
13862
14958
  worktreePath: number
14959
+ workspaceKind: number
14960
+ workingDir: number
13863
14961
  status: number
13864
14962
  commitMessage: number
13865
14963
  previewTarget: number
@@ -13878,6 +14976,8 @@ export namespace Prisma {
13878
14976
  branchName?: true
13879
14977
  baseBranch?: true
13880
14978
  worktreePath?: true
14979
+ workspaceKind?: true
14980
+ workingDir?: true
13881
14981
  status?: true
13882
14982
  commitMessage?: true
13883
14983
  previewTarget?: true
@@ -13894,6 +14994,8 @@ export namespace Prisma {
13894
14994
  branchName?: true
13895
14995
  baseBranch?: true
13896
14996
  worktreePath?: true
14997
+ workspaceKind?: true
14998
+ workingDir?: true
13897
14999
  status?: true
13898
15000
  commitMessage?: true
13899
15001
  previewTarget?: true
@@ -13910,6 +15012,8 @@ export namespace Prisma {
13910
15012
  branchName?: true
13911
15013
  baseBranch?: true
13912
15014
  worktreePath?: true
15015
+ workspaceKind?: true
15016
+ workingDir?: true
13913
15017
  status?: true
13914
15018
  commitMessage?: true
13915
15019
  previewTarget?: true
@@ -13999,6 +15103,8 @@ export namespace Prisma {
13999
15103
  branchName: string
14000
15104
  baseBranch: string | null
14001
15105
  worktreePath: string
15106
+ workspaceKind: string
15107
+ workingDir: string
14002
15108
  status: string
14003
15109
  commitMessage: string | null
14004
15110
  previewTarget: string | null
@@ -14032,6 +15138,8 @@ export namespace Prisma {
14032
15138
  branchName?: boolean
14033
15139
  baseBranch?: boolean
14034
15140
  worktreePath?: boolean
15141
+ workspaceKind?: boolean
15142
+ workingDir?: boolean
14035
15143
  status?: boolean
14036
15144
  commitMessage?: boolean
14037
15145
  previewTarget?: boolean
@@ -14055,6 +15163,8 @@ export namespace Prisma {
14055
15163
  branchName?: boolean
14056
15164
  baseBranch?: boolean
14057
15165
  worktreePath?: boolean
15166
+ workspaceKind?: boolean
15167
+ workingDir?: boolean
14058
15168
  status?: boolean
14059
15169
  commitMessage?: boolean
14060
15170
  previewTarget?: boolean
@@ -14074,6 +15184,8 @@ export namespace Prisma {
14074
15184
  branchName?: boolean
14075
15185
  baseBranch?: boolean
14076
15186
  worktreePath?: boolean
15187
+ workspaceKind?: boolean
15188
+ workingDir?: boolean
14077
15189
  status?: boolean
14078
15190
  commitMessage?: boolean
14079
15191
  previewTarget?: boolean
@@ -14115,6 +15227,8 @@ export namespace Prisma {
14115
15227
  branchName: string
14116
15228
  baseBranch: string | null
14117
15229
  worktreePath: string
15230
+ workspaceKind: string
15231
+ workingDir: string
14118
15232
  status: string
14119
15233
  commitMessage: string | null
14120
15234
  previewTarget: string | null
@@ -14527,6 +15641,8 @@ export namespace Prisma {
14527
15641
  readonly branchName: FieldRef<"Workspace", 'String'>
14528
15642
  readonly baseBranch: FieldRef<"Workspace", 'String'>
14529
15643
  readonly worktreePath: FieldRef<"Workspace", 'String'>
15644
+ readonly workspaceKind: FieldRef<"Workspace", 'String'>
15645
+ readonly workingDir: FieldRef<"Workspace", 'String'>
14530
15646
  readonly status: FieldRef<"Workspace", 'String'>
14531
15647
  readonly commitMessage: FieldRef<"Workspace", 'String'>
14532
15648
  readonly previewTarget: FieldRef<"Workspace", 'String'>
@@ -20575,6 +21691,7 @@ export namespace Prisma {
20575
21691
  priority: 'priority',
20576
21692
  position: 'position',
20577
21693
  projectId: 'projectId',
21694
+ deletedAt: 'deletedAt',
20578
21695
  createdAt: 'createdAt',
20579
21696
  updatedAt: 'updatedAt'
20580
21697
  };
@@ -20582,6 +21699,24 @@ export namespace Prisma {
20582
21699
  export type TaskScalarFieldEnum = (typeof TaskScalarFieldEnum)[keyof typeof TaskScalarFieldEnum]
20583
21700
 
20584
21701
 
21702
+ export const TaskCleanupJobScalarFieldEnum: {
21703
+ id: 'id',
21704
+ taskId: 'taskId',
21705
+ projectId: 'projectId',
21706
+ payload: 'payload',
21707
+ status: 'status',
21708
+ attempts: 'attempts',
21709
+ lastError: 'lastError',
21710
+ nextRetryAt: 'nextRetryAt',
21711
+ startedAt: 'startedAt',
21712
+ completedAt: 'completedAt',
21713
+ createdAt: 'createdAt',
21714
+ updatedAt: 'updatedAt'
21715
+ };
21716
+
21717
+ export type TaskCleanupJobScalarFieldEnum = (typeof TaskCleanupJobScalarFieldEnum)[keyof typeof TaskCleanupJobScalarFieldEnum]
21718
+
21719
+
20585
21720
  export const MemberPresetScalarFieldEnum: {
20586
21721
  id: 'id',
20587
21722
  name: 'name',
@@ -20730,6 +21865,8 @@ export namespace Prisma {
20730
21865
  branchName: 'branchName',
20731
21866
  baseBranch: 'baseBranch',
20732
21867
  worktreePath: 'worktreePath',
21868
+ workspaceKind: 'workspaceKind',
21869
+ workingDir: 'workingDir',
20733
21870
  status: 'status',
20734
21871
  commitMessage: 'commitMessage',
20735
21872
  previewTarget: 'previewTarget',
@@ -20982,6 +22119,7 @@ export namespace Prisma {
20982
22119
  priority?: IntFilter<"Task"> | number
20983
22120
  position?: IntFilter<"Task"> | number
20984
22121
  projectId?: StringFilter<"Task"> | string
22122
+ deletedAt?: DateTimeNullableFilter<"Task"> | Date | string | null
20985
22123
  createdAt?: DateTimeFilter<"Task"> | Date | string
20986
22124
  updatedAt?: DateTimeFilter<"Task"> | Date | string
20987
22125
  project?: XOR<ProjectRelationFilter, ProjectWhereInput>
@@ -20997,6 +22135,7 @@ export namespace Prisma {
20997
22135
  priority?: SortOrder
20998
22136
  position?: SortOrder
20999
22137
  projectId?: SortOrder
22138
+ deletedAt?: SortOrderInput | SortOrder
21000
22139
  createdAt?: SortOrder
21001
22140
  updatedAt?: SortOrder
21002
22141
  project?: ProjectOrderByWithRelationInput
@@ -21015,6 +22154,7 @@ export namespace Prisma {
21015
22154
  priority?: IntFilter<"Task"> | number
21016
22155
  position?: IntFilter<"Task"> | number
21017
22156
  projectId?: StringFilter<"Task"> | string
22157
+ deletedAt?: DateTimeNullableFilter<"Task"> | Date | string | null
21018
22158
  createdAt?: DateTimeFilter<"Task"> | Date | string
21019
22159
  updatedAt?: DateTimeFilter<"Task"> | Date | string
21020
22160
  project?: XOR<ProjectRelationFilter, ProjectWhereInput>
@@ -21030,6 +22170,7 @@ export namespace Prisma {
21030
22170
  priority?: SortOrder
21031
22171
  position?: SortOrder
21032
22172
  projectId?: SortOrder
22173
+ deletedAt?: SortOrderInput | SortOrder
21033
22174
  createdAt?: SortOrder
21034
22175
  updatedAt?: SortOrder
21035
22176
  _count?: TaskCountOrderByAggregateInput
@@ -21050,10 +22191,100 @@ export namespace Prisma {
21050
22191
  priority?: IntWithAggregatesFilter<"Task"> | number
21051
22192
  position?: IntWithAggregatesFilter<"Task"> | number
21052
22193
  projectId?: StringWithAggregatesFilter<"Task"> | string
22194
+ deletedAt?: DateTimeNullableWithAggregatesFilter<"Task"> | Date | string | null
21053
22195
  createdAt?: DateTimeWithAggregatesFilter<"Task"> | Date | string
21054
22196
  updatedAt?: DateTimeWithAggregatesFilter<"Task"> | Date | string
21055
22197
  }
21056
22198
 
22199
+ export type TaskCleanupJobWhereInput = {
22200
+ AND?: TaskCleanupJobWhereInput | TaskCleanupJobWhereInput[]
22201
+ OR?: TaskCleanupJobWhereInput[]
22202
+ NOT?: TaskCleanupJobWhereInput | TaskCleanupJobWhereInput[]
22203
+ id?: StringFilter<"TaskCleanupJob"> | string
22204
+ taskId?: StringFilter<"TaskCleanupJob"> | string
22205
+ projectId?: StringFilter<"TaskCleanupJob"> | string
22206
+ payload?: StringFilter<"TaskCleanupJob"> | string
22207
+ status?: StringFilter<"TaskCleanupJob"> | string
22208
+ attempts?: IntFilter<"TaskCleanupJob"> | number
22209
+ lastError?: StringNullableFilter<"TaskCleanupJob"> | string | null
22210
+ nextRetryAt?: DateTimeNullableFilter<"TaskCleanupJob"> | Date | string | null
22211
+ startedAt?: DateTimeNullableFilter<"TaskCleanupJob"> | Date | string | null
22212
+ completedAt?: DateTimeNullableFilter<"TaskCleanupJob"> | Date | string | null
22213
+ createdAt?: DateTimeFilter<"TaskCleanupJob"> | Date | string
22214
+ updatedAt?: DateTimeFilter<"TaskCleanupJob"> | Date | string
22215
+ }
22216
+
22217
+ export type TaskCleanupJobOrderByWithRelationInput = {
22218
+ id?: SortOrder
22219
+ taskId?: SortOrder
22220
+ projectId?: SortOrder
22221
+ payload?: SortOrder
22222
+ status?: SortOrder
22223
+ attempts?: SortOrder
22224
+ lastError?: SortOrderInput | SortOrder
22225
+ nextRetryAt?: SortOrderInput | SortOrder
22226
+ startedAt?: SortOrderInput | SortOrder
22227
+ completedAt?: SortOrderInput | SortOrder
22228
+ createdAt?: SortOrder
22229
+ updatedAt?: SortOrder
22230
+ }
22231
+
22232
+ export type TaskCleanupJobWhereUniqueInput = Prisma.AtLeast<{
22233
+ id?: string
22234
+ AND?: TaskCleanupJobWhereInput | TaskCleanupJobWhereInput[]
22235
+ OR?: TaskCleanupJobWhereInput[]
22236
+ NOT?: TaskCleanupJobWhereInput | TaskCleanupJobWhereInput[]
22237
+ taskId?: StringFilter<"TaskCleanupJob"> | string
22238
+ projectId?: StringFilter<"TaskCleanupJob"> | string
22239
+ payload?: StringFilter<"TaskCleanupJob"> | string
22240
+ status?: StringFilter<"TaskCleanupJob"> | string
22241
+ attempts?: IntFilter<"TaskCleanupJob"> | number
22242
+ lastError?: StringNullableFilter<"TaskCleanupJob"> | string | null
22243
+ nextRetryAt?: DateTimeNullableFilter<"TaskCleanupJob"> | Date | string | null
22244
+ startedAt?: DateTimeNullableFilter<"TaskCleanupJob"> | Date | string | null
22245
+ completedAt?: DateTimeNullableFilter<"TaskCleanupJob"> | Date | string | null
22246
+ createdAt?: DateTimeFilter<"TaskCleanupJob"> | Date | string
22247
+ updatedAt?: DateTimeFilter<"TaskCleanupJob"> | Date | string
22248
+ }, "id">
22249
+
22250
+ export type TaskCleanupJobOrderByWithAggregationInput = {
22251
+ id?: SortOrder
22252
+ taskId?: SortOrder
22253
+ projectId?: SortOrder
22254
+ payload?: SortOrder
22255
+ status?: SortOrder
22256
+ attempts?: SortOrder
22257
+ lastError?: SortOrderInput | SortOrder
22258
+ nextRetryAt?: SortOrderInput | SortOrder
22259
+ startedAt?: SortOrderInput | SortOrder
22260
+ completedAt?: SortOrderInput | SortOrder
22261
+ createdAt?: SortOrder
22262
+ updatedAt?: SortOrder
22263
+ _count?: TaskCleanupJobCountOrderByAggregateInput
22264
+ _avg?: TaskCleanupJobAvgOrderByAggregateInput
22265
+ _max?: TaskCleanupJobMaxOrderByAggregateInput
22266
+ _min?: TaskCleanupJobMinOrderByAggregateInput
22267
+ _sum?: TaskCleanupJobSumOrderByAggregateInput
22268
+ }
22269
+
22270
+ export type TaskCleanupJobScalarWhereWithAggregatesInput = {
22271
+ AND?: TaskCleanupJobScalarWhereWithAggregatesInput | TaskCleanupJobScalarWhereWithAggregatesInput[]
22272
+ OR?: TaskCleanupJobScalarWhereWithAggregatesInput[]
22273
+ NOT?: TaskCleanupJobScalarWhereWithAggregatesInput | TaskCleanupJobScalarWhereWithAggregatesInput[]
22274
+ id?: StringWithAggregatesFilter<"TaskCleanupJob"> | string
22275
+ taskId?: StringWithAggregatesFilter<"TaskCleanupJob"> | string
22276
+ projectId?: StringWithAggregatesFilter<"TaskCleanupJob"> | string
22277
+ payload?: StringWithAggregatesFilter<"TaskCleanupJob"> | string
22278
+ status?: StringWithAggregatesFilter<"TaskCleanupJob"> | string
22279
+ attempts?: IntWithAggregatesFilter<"TaskCleanupJob"> | number
22280
+ lastError?: StringNullableWithAggregatesFilter<"TaskCleanupJob"> | string | null
22281
+ nextRetryAt?: DateTimeNullableWithAggregatesFilter<"TaskCleanupJob"> | Date | string | null
22282
+ startedAt?: DateTimeNullableWithAggregatesFilter<"TaskCleanupJob"> | Date | string | null
22283
+ completedAt?: DateTimeNullableWithAggregatesFilter<"TaskCleanupJob"> | Date | string | null
22284
+ createdAt?: DateTimeWithAggregatesFilter<"TaskCleanupJob"> | Date | string
22285
+ updatedAt?: DateTimeWithAggregatesFilter<"TaskCleanupJob"> | Date | string
22286
+ }
22287
+
21057
22288
  export type MemberPresetWhereInput = {
21058
22289
  AND?: MemberPresetWhereInput | MemberPresetWhereInput[]
21059
22290
  OR?: MemberPresetWhereInput[]
@@ -21794,6 +23025,8 @@ export namespace Prisma {
21794
23025
  branchName?: StringFilter<"Workspace"> | string
21795
23026
  baseBranch?: StringNullableFilter<"Workspace"> | string | null
21796
23027
  worktreePath?: StringFilter<"Workspace"> | string
23028
+ workspaceKind?: StringFilter<"Workspace"> | string
23029
+ workingDir?: StringFilter<"Workspace"> | string
21797
23030
  status?: StringFilter<"Workspace"> | string
21798
23031
  commitMessage?: StringNullableFilter<"Workspace"> | string | null
21799
23032
  previewTarget?: StringNullableFilter<"Workspace"> | string | null
@@ -21816,6 +23049,8 @@ export namespace Prisma {
21816
23049
  branchName?: SortOrder
21817
23050
  baseBranch?: SortOrderInput | SortOrder
21818
23051
  worktreePath?: SortOrder
23052
+ workspaceKind?: SortOrder
23053
+ workingDir?: SortOrder
21819
23054
  status?: SortOrder
21820
23055
  commitMessage?: SortOrderInput | SortOrder
21821
23056
  previewTarget?: SortOrderInput | SortOrder
@@ -21842,6 +23077,8 @@ export namespace Prisma {
21842
23077
  branchName?: StringFilter<"Workspace"> | string
21843
23078
  baseBranch?: StringNullableFilter<"Workspace"> | string | null
21844
23079
  worktreePath?: StringFilter<"Workspace"> | string
23080
+ workspaceKind?: StringFilter<"Workspace"> | string
23081
+ workingDir?: StringFilter<"Workspace"> | string
21845
23082
  status?: StringFilter<"Workspace"> | string
21846
23083
  commitMessage?: StringNullableFilter<"Workspace"> | string | null
21847
23084
  previewTarget?: StringNullableFilter<"Workspace"> | string | null
@@ -21864,6 +23101,8 @@ export namespace Prisma {
21864
23101
  branchName?: SortOrder
21865
23102
  baseBranch?: SortOrderInput | SortOrder
21866
23103
  worktreePath?: SortOrder
23104
+ workspaceKind?: SortOrder
23105
+ workingDir?: SortOrder
21867
23106
  status?: SortOrder
21868
23107
  commitMessage?: SortOrderInput | SortOrder
21869
23108
  previewTarget?: SortOrderInput | SortOrder
@@ -21886,6 +23125,8 @@ export namespace Prisma {
21886
23125
  branchName?: StringWithAggregatesFilter<"Workspace"> | string
21887
23126
  baseBranch?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
21888
23127
  worktreePath?: StringWithAggregatesFilter<"Workspace"> | string
23128
+ workspaceKind?: StringWithAggregatesFilter<"Workspace"> | string
23129
+ workingDir?: StringWithAggregatesFilter<"Workspace"> | string
21889
23130
  status?: StringWithAggregatesFilter<"Workspace"> | string
21890
23131
  commitMessage?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
21891
23132
  previewTarget?: StringNullableWithAggregatesFilter<"Workspace"> | string | null
@@ -22392,6 +23633,7 @@ export namespace Prisma {
22392
23633
  status?: string
22393
23634
  priority?: number
22394
23635
  position?: number
23636
+ deletedAt?: Date | string | null
22395
23637
  createdAt?: Date | string
22396
23638
  updatedAt?: Date | string
22397
23639
  project: ProjectCreateNestedOneWithoutTasksInput
@@ -22407,6 +23649,7 @@ export namespace Prisma {
22407
23649
  priority?: number
22408
23650
  position?: number
22409
23651
  projectId: string
23652
+ deletedAt?: Date | string | null
22410
23653
  createdAt?: Date | string
22411
23654
  updatedAt?: Date | string
22412
23655
  workspaces?: WorkspaceUncheckedCreateNestedManyWithoutTaskInput
@@ -22420,6 +23663,7 @@ export namespace Prisma {
22420
23663
  status?: StringFieldUpdateOperationsInput | string
22421
23664
  priority?: IntFieldUpdateOperationsInput | number
22422
23665
  position?: IntFieldUpdateOperationsInput | number
23666
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
22423
23667
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
22424
23668
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
22425
23669
  project?: ProjectUpdateOneRequiredWithoutTasksNestedInput
@@ -22435,6 +23679,7 @@ export namespace Prisma {
22435
23679
  priority?: IntFieldUpdateOperationsInput | number
22436
23680
  position?: IntFieldUpdateOperationsInput | number
22437
23681
  projectId?: StringFieldUpdateOperationsInput | string
23682
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
22438
23683
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
22439
23684
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
22440
23685
  workspaces?: WorkspaceUncheckedUpdateManyWithoutTaskNestedInput
@@ -22449,6 +23694,7 @@ export namespace Prisma {
22449
23694
  priority?: number
22450
23695
  position?: number
22451
23696
  projectId: string
23697
+ deletedAt?: Date | string | null
22452
23698
  createdAt?: Date | string
22453
23699
  updatedAt?: Date | string
22454
23700
  }
@@ -22460,6 +23706,7 @@ export namespace Prisma {
22460
23706
  status?: StringFieldUpdateOperationsInput | string
22461
23707
  priority?: IntFieldUpdateOperationsInput | number
22462
23708
  position?: IntFieldUpdateOperationsInput | number
23709
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
22463
23710
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
22464
23711
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
22465
23712
  }
@@ -22472,6 +23719,112 @@ export namespace Prisma {
22472
23719
  priority?: IntFieldUpdateOperationsInput | number
22473
23720
  position?: IntFieldUpdateOperationsInput | number
22474
23721
  projectId?: StringFieldUpdateOperationsInput | string
23722
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23723
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23724
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
23725
+ }
23726
+
23727
+ export type TaskCleanupJobCreateInput = {
23728
+ id?: string
23729
+ taskId: string
23730
+ projectId: string
23731
+ payload: string
23732
+ status?: string
23733
+ attempts?: number
23734
+ lastError?: string | null
23735
+ nextRetryAt?: Date | string | null
23736
+ startedAt?: Date | string | null
23737
+ completedAt?: Date | string | null
23738
+ createdAt?: Date | string
23739
+ updatedAt?: Date | string
23740
+ }
23741
+
23742
+ export type TaskCleanupJobUncheckedCreateInput = {
23743
+ id?: string
23744
+ taskId: string
23745
+ projectId: string
23746
+ payload: string
23747
+ status?: string
23748
+ attempts?: number
23749
+ lastError?: string | null
23750
+ nextRetryAt?: Date | string | null
23751
+ startedAt?: Date | string | null
23752
+ completedAt?: Date | string | null
23753
+ createdAt?: Date | string
23754
+ updatedAt?: Date | string
23755
+ }
23756
+
23757
+ export type TaskCleanupJobUpdateInput = {
23758
+ id?: StringFieldUpdateOperationsInput | string
23759
+ taskId?: StringFieldUpdateOperationsInput | string
23760
+ projectId?: StringFieldUpdateOperationsInput | string
23761
+ payload?: StringFieldUpdateOperationsInput | string
23762
+ status?: StringFieldUpdateOperationsInput | string
23763
+ attempts?: IntFieldUpdateOperationsInput | number
23764
+ lastError?: NullableStringFieldUpdateOperationsInput | string | null
23765
+ nextRetryAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23766
+ startedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23767
+ completedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23768
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23769
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
23770
+ }
23771
+
23772
+ export type TaskCleanupJobUncheckedUpdateInput = {
23773
+ id?: StringFieldUpdateOperationsInput | string
23774
+ taskId?: StringFieldUpdateOperationsInput | string
23775
+ projectId?: StringFieldUpdateOperationsInput | string
23776
+ payload?: StringFieldUpdateOperationsInput | string
23777
+ status?: StringFieldUpdateOperationsInput | string
23778
+ attempts?: IntFieldUpdateOperationsInput | number
23779
+ lastError?: NullableStringFieldUpdateOperationsInput | string | null
23780
+ nextRetryAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23781
+ startedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23782
+ completedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23783
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23784
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
23785
+ }
23786
+
23787
+ export type TaskCleanupJobCreateManyInput = {
23788
+ id?: string
23789
+ taskId: string
23790
+ projectId: string
23791
+ payload: string
23792
+ status?: string
23793
+ attempts?: number
23794
+ lastError?: string | null
23795
+ nextRetryAt?: Date | string | null
23796
+ startedAt?: Date | string | null
23797
+ completedAt?: Date | string | null
23798
+ createdAt?: Date | string
23799
+ updatedAt?: Date | string
23800
+ }
23801
+
23802
+ export type TaskCleanupJobUpdateManyMutationInput = {
23803
+ id?: StringFieldUpdateOperationsInput | string
23804
+ taskId?: StringFieldUpdateOperationsInput | string
23805
+ projectId?: StringFieldUpdateOperationsInput | string
23806
+ payload?: StringFieldUpdateOperationsInput | string
23807
+ status?: StringFieldUpdateOperationsInput | string
23808
+ attempts?: IntFieldUpdateOperationsInput | number
23809
+ lastError?: NullableStringFieldUpdateOperationsInput | string | null
23810
+ nextRetryAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23811
+ startedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23812
+ completedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23813
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23814
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
23815
+ }
23816
+
23817
+ export type TaskCleanupJobUncheckedUpdateManyInput = {
23818
+ id?: StringFieldUpdateOperationsInput | string
23819
+ taskId?: StringFieldUpdateOperationsInput | string
23820
+ projectId?: StringFieldUpdateOperationsInput | string
23821
+ payload?: StringFieldUpdateOperationsInput | string
23822
+ status?: StringFieldUpdateOperationsInput | string
23823
+ attempts?: IntFieldUpdateOperationsInput | number
23824
+ lastError?: NullableStringFieldUpdateOperationsInput | string | null
23825
+ nextRetryAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23826
+ startedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
23827
+ completedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
22475
23828
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
22476
23829
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
22477
23830
  }
@@ -23295,6 +24648,8 @@ export namespace Prisma {
23295
24648
  branchName: string
23296
24649
  baseBranch?: string | null
23297
24650
  worktreePath: string
24651
+ workspaceKind?: string
24652
+ workingDir?: string
23298
24653
  status?: string
23299
24654
  commitMessage?: string | null
23300
24655
  previewTarget?: string | null
@@ -23317,6 +24672,8 @@ export namespace Prisma {
23317
24672
  branchName: string
23318
24673
  baseBranch?: string | null
23319
24674
  worktreePath: string
24675
+ workspaceKind?: string
24676
+ workingDir?: string
23320
24677
  status?: string
23321
24678
  commitMessage?: string | null
23322
24679
  previewTarget?: string | null
@@ -23333,6 +24690,8 @@ export namespace Prisma {
23333
24690
  branchName?: StringFieldUpdateOperationsInput | string
23334
24691
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
23335
24692
  worktreePath?: StringFieldUpdateOperationsInput | string
24693
+ workspaceKind?: StringFieldUpdateOperationsInput | string
24694
+ workingDir?: StringFieldUpdateOperationsInput | string
23336
24695
  status?: StringFieldUpdateOperationsInput | string
23337
24696
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
23338
24697
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -23355,6 +24714,8 @@ export namespace Prisma {
23355
24714
  branchName?: StringFieldUpdateOperationsInput | string
23356
24715
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
23357
24716
  worktreePath?: StringFieldUpdateOperationsInput | string
24717
+ workspaceKind?: StringFieldUpdateOperationsInput | string
24718
+ workingDir?: StringFieldUpdateOperationsInput | string
23358
24719
  status?: StringFieldUpdateOperationsInput | string
23359
24720
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
23360
24721
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -23374,6 +24735,8 @@ export namespace Prisma {
23374
24735
  branchName: string
23375
24736
  baseBranch?: string | null
23376
24737
  worktreePath: string
24738
+ workspaceKind?: string
24739
+ workingDir?: string
23377
24740
  status?: string
23378
24741
  commitMessage?: string | null
23379
24742
  previewTarget?: string | null
@@ -23387,6 +24750,8 @@ export namespace Prisma {
23387
24750
  branchName?: StringFieldUpdateOperationsInput | string
23388
24751
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
23389
24752
  worktreePath?: StringFieldUpdateOperationsInput | string
24753
+ workspaceKind?: StringFieldUpdateOperationsInput | string
24754
+ workingDir?: StringFieldUpdateOperationsInput | string
23390
24755
  status?: StringFieldUpdateOperationsInput | string
23391
24756
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
23392
24757
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -23403,6 +24768,8 @@ export namespace Prisma {
23403
24768
  branchName?: StringFieldUpdateOperationsInput | string
23404
24769
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
23405
24770
  worktreePath?: StringFieldUpdateOperationsInput | string
24771
+ workspaceKind?: StringFieldUpdateOperationsInput | string
24772
+ workingDir?: StringFieldUpdateOperationsInput | string
23406
24773
  status?: StringFieldUpdateOperationsInput | string
23407
24774
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
23408
24775
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24033,6 +25400,7 @@ export namespace Prisma {
24033
25400
  priority?: SortOrder
24034
25401
  position?: SortOrder
24035
25402
  projectId?: SortOrder
25403
+ deletedAt?: SortOrder
24036
25404
  createdAt?: SortOrder
24037
25405
  updatedAt?: SortOrder
24038
25406
  }
@@ -24050,6 +25418,7 @@ export namespace Prisma {
24050
25418
  priority?: SortOrder
24051
25419
  position?: SortOrder
24052
25420
  projectId?: SortOrder
25421
+ deletedAt?: SortOrder
24053
25422
  createdAt?: SortOrder
24054
25423
  updatedAt?: SortOrder
24055
25424
  }
@@ -24062,6 +25431,7 @@ export namespace Prisma {
24062
25431
  priority?: SortOrder
24063
25432
  position?: SortOrder
24064
25433
  projectId?: SortOrder
25434
+ deletedAt?: SortOrder
24065
25435
  createdAt?: SortOrder
24066
25436
  updatedAt?: SortOrder
24067
25437
  }
@@ -24087,6 +25457,59 @@ export namespace Prisma {
24087
25457
  _max?: NestedIntFilter<$PrismaModel>
24088
25458
  }
24089
25459
 
25460
+ export type TaskCleanupJobCountOrderByAggregateInput = {
25461
+ id?: SortOrder
25462
+ taskId?: SortOrder
25463
+ projectId?: SortOrder
25464
+ payload?: SortOrder
25465
+ status?: SortOrder
25466
+ attempts?: SortOrder
25467
+ lastError?: SortOrder
25468
+ nextRetryAt?: SortOrder
25469
+ startedAt?: SortOrder
25470
+ completedAt?: SortOrder
25471
+ createdAt?: SortOrder
25472
+ updatedAt?: SortOrder
25473
+ }
25474
+
25475
+ export type TaskCleanupJobAvgOrderByAggregateInput = {
25476
+ attempts?: SortOrder
25477
+ }
25478
+
25479
+ export type TaskCleanupJobMaxOrderByAggregateInput = {
25480
+ id?: SortOrder
25481
+ taskId?: SortOrder
25482
+ projectId?: SortOrder
25483
+ payload?: SortOrder
25484
+ status?: SortOrder
25485
+ attempts?: SortOrder
25486
+ lastError?: SortOrder
25487
+ nextRetryAt?: SortOrder
25488
+ startedAt?: SortOrder
25489
+ completedAt?: SortOrder
25490
+ createdAt?: SortOrder
25491
+ updatedAt?: SortOrder
25492
+ }
25493
+
25494
+ export type TaskCleanupJobMinOrderByAggregateInput = {
25495
+ id?: SortOrder
25496
+ taskId?: SortOrder
25497
+ projectId?: SortOrder
25498
+ payload?: SortOrder
25499
+ status?: SortOrder
25500
+ attempts?: SortOrder
25501
+ lastError?: SortOrder
25502
+ nextRetryAt?: SortOrder
25503
+ startedAt?: SortOrder
25504
+ completedAt?: SortOrder
25505
+ createdAt?: SortOrder
25506
+ updatedAt?: SortOrder
25507
+ }
25508
+
25509
+ export type TaskCleanupJobSumOrderByAggregateInput = {
25510
+ attempts?: SortOrder
25511
+ }
25512
+
24090
25513
  export type MemberPresetCountOrderByAggregateInput = {
24091
25514
  id?: SortOrder
24092
25515
  name?: SortOrder
@@ -24588,6 +26011,8 @@ export namespace Prisma {
24588
26011
  branchName?: SortOrder
24589
26012
  baseBranch?: SortOrder
24590
26013
  worktreePath?: SortOrder
26014
+ workspaceKind?: SortOrder
26015
+ workingDir?: SortOrder
24591
26016
  status?: SortOrder
24592
26017
  commitMessage?: SortOrder
24593
26018
  previewTarget?: SortOrder
@@ -24604,6 +26029,8 @@ export namespace Prisma {
24604
26029
  branchName?: SortOrder
24605
26030
  baseBranch?: SortOrder
24606
26031
  worktreePath?: SortOrder
26032
+ workspaceKind?: SortOrder
26033
+ workingDir?: SortOrder
24607
26034
  status?: SortOrder
24608
26035
  commitMessage?: SortOrder
24609
26036
  previewTarget?: SortOrder
@@ -24620,6 +26047,8 @@ export namespace Prisma {
24620
26047
  branchName?: SortOrder
24621
26048
  baseBranch?: SortOrder
24622
26049
  worktreePath?: SortOrder
26050
+ workspaceKind?: SortOrder
26051
+ workingDir?: SortOrder
24623
26052
  status?: SortOrder
24624
26053
  commitMessage?: SortOrder
24625
26054
  previewTarget?: SortOrder
@@ -25947,6 +27376,7 @@ export namespace Prisma {
25947
27376
  status?: string
25948
27377
  priority?: number
25949
27378
  position?: number
27379
+ deletedAt?: Date | string | null
25950
27380
  createdAt?: Date | string
25951
27381
  updatedAt?: Date | string
25952
27382
  workspaces?: WorkspaceCreateNestedManyWithoutTaskInput
@@ -25960,6 +27390,7 @@ export namespace Prisma {
25960
27390
  status?: string
25961
27391
  priority?: number
25962
27392
  position?: number
27393
+ deletedAt?: Date | string | null
25963
27394
  createdAt?: Date | string
25964
27395
  updatedAt?: Date | string
25965
27396
  workspaces?: WorkspaceUncheckedCreateNestedManyWithoutTaskInput
@@ -26002,6 +27433,7 @@ export namespace Prisma {
26002
27433
  priority?: IntFilter<"Task"> | number
26003
27434
  position?: IntFilter<"Task"> | number
26004
27435
  projectId?: StringFilter<"Task"> | string
27436
+ deletedAt?: DateTimeNullableFilter<"Task"> | Date | string | null
26005
27437
  createdAt?: DateTimeFilter<"Task"> | Date | string
26006
27438
  updatedAt?: DateTimeFilter<"Task"> | Date | string
26007
27439
  }
@@ -26048,6 +27480,8 @@ export namespace Prisma {
26048
27480
  branchName: string
26049
27481
  baseBranch?: string | null
26050
27482
  worktreePath: string
27483
+ workspaceKind?: string
27484
+ workingDir?: string
26051
27485
  status?: string
26052
27486
  commitMessage?: string | null
26053
27487
  previewTarget?: string | null
@@ -26068,6 +27502,8 @@ export namespace Prisma {
26068
27502
  branchName: string
26069
27503
  baseBranch?: string | null
26070
27504
  worktreePath: string
27505
+ workspaceKind?: string
27506
+ workingDir?: string
26071
27507
  status?: string
26072
27508
  commitMessage?: string | null
26073
27509
  previewTarget?: string | null
@@ -26189,6 +27625,8 @@ export namespace Prisma {
26189
27625
  branchName?: StringFilter<"Workspace"> | string
26190
27626
  baseBranch?: StringNullableFilter<"Workspace"> | string | null
26191
27627
  worktreePath?: StringFilter<"Workspace"> | string
27628
+ workspaceKind?: StringFilter<"Workspace"> | string
27629
+ workingDir?: StringFilter<"Workspace"> | string
26192
27630
  status?: StringFilter<"Workspace"> | string
26193
27631
  commitMessage?: StringNullableFilter<"Workspace"> | string | null
26194
27632
  previewTarget?: StringNullableFilter<"Workspace"> | string | null
@@ -26332,6 +27770,7 @@ export namespace Prisma {
26332
27770
  status?: string
26333
27771
  priority?: number
26334
27772
  position?: number
27773
+ deletedAt?: Date | string | null
26335
27774
  createdAt?: Date | string
26336
27775
  updatedAt?: Date | string
26337
27776
  project: ProjectCreateNestedOneWithoutTasksInput
@@ -26346,6 +27785,7 @@ export namespace Prisma {
26346
27785
  priority?: number
26347
27786
  position?: number
26348
27787
  projectId: string
27788
+ deletedAt?: Date | string | null
26349
27789
  createdAt?: Date | string
26350
27790
  updatedAt?: Date | string
26351
27791
  workspaces?: WorkspaceUncheckedCreateNestedManyWithoutTaskInput
@@ -26361,6 +27801,8 @@ export namespace Prisma {
26361
27801
  branchName: string
26362
27802
  baseBranch?: string | null
26363
27803
  worktreePath: string
27804
+ workspaceKind?: string
27805
+ workingDir?: string
26364
27806
  status?: string
26365
27807
  commitMessage?: string | null
26366
27808
  previewTarget?: string | null
@@ -26382,6 +27824,8 @@ export namespace Prisma {
26382
27824
  branchName: string
26383
27825
  baseBranch?: string | null
26384
27826
  worktreePath: string
27827
+ workspaceKind?: string
27828
+ workingDir?: string
26385
27829
  status?: string
26386
27830
  commitMessage?: string | null
26387
27831
  previewTarget?: string | null
@@ -26577,6 +28021,7 @@ export namespace Prisma {
26577
28021
  status?: StringFieldUpdateOperationsInput | string
26578
28022
  priority?: IntFieldUpdateOperationsInput | number
26579
28023
  position?: IntFieldUpdateOperationsInput | number
28024
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26580
28025
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
26581
28026
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
26582
28027
  project?: ProjectUpdateOneRequiredWithoutTasksNestedInput
@@ -26591,6 +28036,7 @@ export namespace Prisma {
26591
28036
  priority?: IntFieldUpdateOperationsInput | number
26592
28037
  position?: IntFieldUpdateOperationsInput | number
26593
28038
  projectId?: StringFieldUpdateOperationsInput | string
28039
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26594
28040
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
26595
28041
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
26596
28042
  workspaces?: WorkspaceUncheckedUpdateManyWithoutTaskNestedInput
@@ -26612,6 +28058,8 @@ export namespace Prisma {
26612
28058
  branchName?: StringFieldUpdateOperationsInput | string
26613
28059
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
26614
28060
  worktreePath?: StringFieldUpdateOperationsInput | string
28061
+ workspaceKind?: StringFieldUpdateOperationsInput | string
28062
+ workingDir?: StringFieldUpdateOperationsInput | string
26615
28063
  status?: StringFieldUpdateOperationsInput | string
26616
28064
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
26617
28065
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26633,6 +28081,8 @@ export namespace Prisma {
26633
28081
  branchName?: StringFieldUpdateOperationsInput | string
26634
28082
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
26635
28083
  worktreePath?: StringFieldUpdateOperationsInput | string
28084
+ workspaceKind?: StringFieldUpdateOperationsInput | string
28085
+ workingDir?: StringFieldUpdateOperationsInput | string
26636
28086
  status?: StringFieldUpdateOperationsInput | string
26637
28087
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
26638
28088
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26819,6 +28269,8 @@ export namespace Prisma {
26819
28269
  branchName: string
26820
28270
  baseBranch?: string | null
26821
28271
  worktreePath: string
28272
+ workspaceKind?: string
28273
+ workingDir?: string
26822
28274
  status?: string
26823
28275
  commitMessage?: string | null
26824
28276
  previewTarget?: string | null
@@ -26839,6 +28291,8 @@ export namespace Prisma {
26839
28291
  branchName: string
26840
28292
  baseBranch?: string | null
26841
28293
  worktreePath: string
28294
+ workspaceKind?: string
28295
+ workingDir?: string
26842
28296
  status?: string
26843
28297
  commitMessage?: string | null
26844
28298
  previewTarget?: string | null
@@ -27393,6 +28847,7 @@ export namespace Prisma {
27393
28847
  status?: string
27394
28848
  priority?: number
27395
28849
  position?: number
28850
+ deletedAt?: Date | string | null
27396
28851
  createdAt?: Date | string
27397
28852
  updatedAt?: Date | string
27398
28853
  project: ProjectCreateNestedOneWithoutTasksInput
@@ -27407,6 +28862,7 @@ export namespace Prisma {
27407
28862
  priority?: number
27408
28863
  position?: number
27409
28864
  projectId: string
28865
+ deletedAt?: Date | string | null
27410
28866
  createdAt?: Date | string
27411
28867
  updatedAt?: Date | string
27412
28868
  teamRun?: TeamRunUncheckedCreateNestedOneWithoutTaskInput
@@ -27422,6 +28878,8 @@ export namespace Prisma {
27422
28878
  branchName: string
27423
28879
  baseBranch?: string | null
27424
28880
  worktreePath: string
28881
+ workspaceKind?: string
28882
+ workingDir?: string
27425
28883
  status?: string
27426
28884
  commitMessage?: string | null
27427
28885
  previewTarget?: string | null
@@ -27443,6 +28901,8 @@ export namespace Prisma {
27443
28901
  branchName: string
27444
28902
  baseBranch?: string | null
27445
28903
  worktreePath: string
28904
+ workspaceKind?: string
28905
+ workingDir?: string
27446
28906
  status?: string
27447
28907
  commitMessage?: string | null
27448
28908
  previewTarget?: string | null
@@ -27463,6 +28923,8 @@ export namespace Prisma {
27463
28923
  branchName: string
27464
28924
  baseBranch?: string | null
27465
28925
  worktreePath: string
28926
+ workspaceKind?: string
28927
+ workingDir?: string
27466
28928
  status?: string
27467
28929
  commitMessage?: string | null
27468
28930
  previewTarget?: string | null
@@ -27483,6 +28945,8 @@ export namespace Prisma {
27483
28945
  branchName: string
27484
28946
  baseBranch?: string | null
27485
28947
  worktreePath: string
28948
+ workspaceKind?: string
28949
+ workingDir?: string
27486
28950
  status?: string
27487
28951
  commitMessage?: string | null
27488
28952
  previewTarget?: string | null
@@ -27640,6 +29104,7 @@ export namespace Prisma {
27640
29104
  status?: StringFieldUpdateOperationsInput | string
27641
29105
  priority?: IntFieldUpdateOperationsInput | number
27642
29106
  position?: IntFieldUpdateOperationsInput | number
29107
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
27643
29108
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
27644
29109
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
27645
29110
  project?: ProjectUpdateOneRequiredWithoutTasksNestedInput
@@ -27654,6 +29119,7 @@ export namespace Prisma {
27654
29119
  priority?: IntFieldUpdateOperationsInput | number
27655
29120
  position?: IntFieldUpdateOperationsInput | number
27656
29121
  projectId?: StringFieldUpdateOperationsInput | string
29122
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
27657
29123
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
27658
29124
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
27659
29125
  teamRun?: TeamRunUncheckedUpdateOneWithoutTaskNestedInput
@@ -27675,6 +29141,8 @@ export namespace Prisma {
27675
29141
  branchName?: StringFieldUpdateOperationsInput | string
27676
29142
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
27677
29143
  worktreePath?: StringFieldUpdateOperationsInput | string
29144
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29145
+ workingDir?: StringFieldUpdateOperationsInput | string
27678
29146
  status?: StringFieldUpdateOperationsInput | string
27679
29147
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
27680
29148
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27696,6 +29164,8 @@ export namespace Prisma {
27696
29164
  branchName?: StringFieldUpdateOperationsInput | string
27697
29165
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
27698
29166
  worktreePath?: StringFieldUpdateOperationsInput | string
29167
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29168
+ workingDir?: StringFieldUpdateOperationsInput | string
27699
29169
  status?: StringFieldUpdateOperationsInput | string
27700
29170
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
27701
29171
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27841,6 +29311,8 @@ export namespace Prisma {
27841
29311
  branchName: string
27842
29312
  baseBranch?: string | null
27843
29313
  worktreePath: string
29314
+ workspaceKind?: string
29315
+ workingDir?: string
27844
29316
  status?: string
27845
29317
  commitMessage?: string | null
27846
29318
  previewTarget?: string | null
@@ -27862,6 +29334,8 @@ export namespace Prisma {
27862
29334
  branchName: string
27863
29335
  baseBranch?: string | null
27864
29336
  worktreePath: string
29337
+ workspaceKind?: string
29338
+ workingDir?: string
27865
29339
  status?: string
27866
29340
  commitMessage?: string | null
27867
29341
  previewTarget?: string | null
@@ -27918,6 +29392,8 @@ export namespace Prisma {
27918
29392
  branchName?: StringFieldUpdateOperationsInput | string
27919
29393
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
27920
29394
  worktreePath?: StringFieldUpdateOperationsInput | string
29395
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29396
+ workingDir?: StringFieldUpdateOperationsInput | string
27921
29397
  status?: StringFieldUpdateOperationsInput | string
27922
29398
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
27923
29399
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27939,6 +29415,8 @@ export namespace Prisma {
27939
29415
  branchName?: StringFieldUpdateOperationsInput | string
27940
29416
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
27941
29417
  worktreePath?: StringFieldUpdateOperationsInput | string
29418
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29419
+ workingDir?: StringFieldUpdateOperationsInput | string
27942
29420
  status?: StringFieldUpdateOperationsInput | string
27943
29421
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
27944
29422
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28060,6 +29538,7 @@ export namespace Prisma {
28060
29538
  status?: string
28061
29539
  priority?: number
28062
29540
  position?: number
29541
+ deletedAt?: Date | string | null
28063
29542
  createdAt?: Date | string
28064
29543
  updatedAt?: Date | string
28065
29544
  }
@@ -28071,6 +29550,7 @@ export namespace Prisma {
28071
29550
  status?: StringFieldUpdateOperationsInput | string
28072
29551
  priority?: IntFieldUpdateOperationsInput | number
28073
29552
  position?: IntFieldUpdateOperationsInput | number
29553
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
28074
29554
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
28075
29555
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
28076
29556
  workspaces?: WorkspaceUpdateManyWithoutTaskNestedInput
@@ -28084,6 +29564,7 @@ export namespace Prisma {
28084
29564
  status?: StringFieldUpdateOperationsInput | string
28085
29565
  priority?: IntFieldUpdateOperationsInput | number
28086
29566
  position?: IntFieldUpdateOperationsInput | number
29567
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
28087
29568
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
28088
29569
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
28089
29570
  workspaces?: WorkspaceUncheckedUpdateManyWithoutTaskNestedInput
@@ -28097,6 +29578,7 @@ export namespace Prisma {
28097
29578
  status?: StringFieldUpdateOperationsInput | string
28098
29579
  priority?: IntFieldUpdateOperationsInput | number
28099
29580
  position?: IntFieldUpdateOperationsInput | number
29581
+ deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
28100
29582
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
28101
29583
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
28102
29584
  }
@@ -28108,6 +29590,8 @@ export namespace Prisma {
28108
29590
  branchName: string
28109
29591
  baseBranch?: string | null
28110
29592
  worktreePath: string
29593
+ workspaceKind?: string
29594
+ workingDir?: string
28111
29595
  status?: string
28112
29596
  commitMessage?: string | null
28113
29597
  previewTarget?: string | null
@@ -28121,6 +29605,8 @@ export namespace Prisma {
28121
29605
  branchName?: StringFieldUpdateOperationsInput | string
28122
29606
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28123
29607
  worktreePath?: StringFieldUpdateOperationsInput | string
29608
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29609
+ workingDir?: StringFieldUpdateOperationsInput | string
28124
29610
  status?: StringFieldUpdateOperationsInput | string
28125
29611
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28126
29612
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28141,6 +29627,8 @@ export namespace Prisma {
28141
29627
  branchName?: StringFieldUpdateOperationsInput | string
28142
29628
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28143
29629
  worktreePath?: StringFieldUpdateOperationsInput | string
29630
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29631
+ workingDir?: StringFieldUpdateOperationsInput | string
28144
29632
  status?: StringFieldUpdateOperationsInput | string
28145
29633
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28146
29634
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28159,6 +29647,8 @@ export namespace Prisma {
28159
29647
  branchName?: StringFieldUpdateOperationsInput | string
28160
29648
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28161
29649
  worktreePath?: StringFieldUpdateOperationsInput | string
29650
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29651
+ workingDir?: StringFieldUpdateOperationsInput | string
28162
29652
  status?: StringFieldUpdateOperationsInput | string
28163
29653
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28164
29654
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28444,6 +29934,8 @@ export namespace Prisma {
28444
29934
  branchName: string
28445
29935
  baseBranch?: string | null
28446
29936
  worktreePath: string
29937
+ workspaceKind?: string
29938
+ workingDir?: string
28447
29939
  status?: string
28448
29940
  commitMessage?: string | null
28449
29941
  previewTarget?: string | null
@@ -28465,6 +29957,8 @@ export namespace Prisma {
28465
29957
  branchName?: StringFieldUpdateOperationsInput | string
28466
29958
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28467
29959
  worktreePath?: StringFieldUpdateOperationsInput | string
29960
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29961
+ workingDir?: StringFieldUpdateOperationsInput | string
28468
29962
  status?: StringFieldUpdateOperationsInput | string
28469
29963
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28470
29964
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28485,6 +29979,8 @@ export namespace Prisma {
28485
29979
  branchName?: StringFieldUpdateOperationsInput | string
28486
29980
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28487
29981
  worktreePath?: StringFieldUpdateOperationsInput | string
29982
+ workspaceKind?: StringFieldUpdateOperationsInput | string
29983
+ workingDir?: StringFieldUpdateOperationsInput | string
28488
29984
  status?: StringFieldUpdateOperationsInput | string
28489
29985
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28490
29986
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28503,6 +29999,8 @@ export namespace Prisma {
28503
29999
  branchName?: StringFieldUpdateOperationsInput | string
28504
30000
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28505
30001
  worktreePath?: StringFieldUpdateOperationsInput | string
30002
+ workspaceKind?: StringFieldUpdateOperationsInput | string
30003
+ workingDir?: StringFieldUpdateOperationsInput | string
28506
30004
  status?: StringFieldUpdateOperationsInput | string
28507
30005
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28508
30006
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28574,6 +30072,8 @@ export namespace Prisma {
28574
30072
  branchName: string
28575
30073
  baseBranch?: string | null
28576
30074
  worktreePath: string
30075
+ workspaceKind?: string
30076
+ workingDir?: string
28577
30077
  status?: string
28578
30078
  commitMessage?: string | null
28579
30079
  previewTarget?: string | null
@@ -28610,6 +30110,8 @@ export namespace Prisma {
28610
30110
  branchName?: StringFieldUpdateOperationsInput | string
28611
30111
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28612
30112
  worktreePath?: StringFieldUpdateOperationsInput | string
30113
+ workspaceKind?: StringFieldUpdateOperationsInput | string
30114
+ workingDir?: StringFieldUpdateOperationsInput | string
28613
30115
  status?: StringFieldUpdateOperationsInput | string
28614
30116
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28615
30117
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28630,6 +30132,8 @@ export namespace Prisma {
28630
30132
  branchName?: StringFieldUpdateOperationsInput | string
28631
30133
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28632
30134
  worktreePath?: StringFieldUpdateOperationsInput | string
30135
+ workspaceKind?: StringFieldUpdateOperationsInput | string
30136
+ workingDir?: StringFieldUpdateOperationsInput | string
28633
30137
  status?: StringFieldUpdateOperationsInput | string
28634
30138
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28635
30139
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28648,6 +30152,8 @@ export namespace Prisma {
28648
30152
  branchName?: StringFieldUpdateOperationsInput | string
28649
30153
  baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
28650
30154
  worktreePath?: StringFieldUpdateOperationsInput | string
30155
+ workspaceKind?: StringFieldUpdateOperationsInput | string
30156
+ workingDir?: StringFieldUpdateOperationsInput | string
28651
30157
  status?: StringFieldUpdateOperationsInput | string
28652
30158
  commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
28653
30159
  previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
@@ -28812,6 +30318,10 @@ export namespace Prisma {
28812
30318
  * @deprecated Use TaskDefaultArgs instead
28813
30319
  */
28814
30320
  export type TaskArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TaskDefaultArgs<ExtArgs>
30321
+ /**
30322
+ * @deprecated Use TaskCleanupJobDefaultArgs instead
30323
+ */
30324
+ export type TaskCleanupJobArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TaskCleanupJobDefaultArgs<ExtArgs>
28815
30325
  /**
28816
30326
  * @deprecated Use MemberPresetDefaultArgs instead
28817
30327
  */