@brianli/kimaki 0.4.72-brianli.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 (328) hide show
  1. package/bin.js +2 -0
  2. package/dist/ai-tool-to-genai.js +233 -0
  3. package/dist/ai-tool-to-genai.test.js +267 -0
  4. package/dist/ai-tool.js +6 -0
  5. package/dist/bin.js +87 -0
  6. package/dist/bot-token.js +121 -0
  7. package/dist/bot-token.test.js +134 -0
  8. package/dist/channel-management.js +101 -0
  9. package/dist/cli-parsing.test.js +89 -0
  10. package/dist/cli.js +2529 -0
  11. package/dist/commands/abort.js +82 -0
  12. package/dist/commands/action-buttons.js +257 -0
  13. package/dist/commands/add-project.js +114 -0
  14. package/dist/commands/agent.js +291 -0
  15. package/dist/commands/ask-question.js +223 -0
  16. package/dist/commands/compact.js +120 -0
  17. package/dist/commands/context-usage.js +140 -0
  18. package/dist/commands/create-new-project.js +118 -0
  19. package/dist/commands/diff.js +128 -0
  20. package/dist/commands/file-upload.js +275 -0
  21. package/dist/commands/fork.js +217 -0
  22. package/dist/commands/gemini-apikey.js +70 -0
  23. package/dist/commands/login.js +490 -0
  24. package/dist/commands/mention-mode.js +51 -0
  25. package/dist/commands/merge-worktree.js +124 -0
  26. package/dist/commands/model.js +694 -0
  27. package/dist/commands/permissions.js +163 -0
  28. package/dist/commands/queue.js +217 -0
  29. package/dist/commands/remove-project.js +115 -0
  30. package/dist/commands/restart-opencode-server.js +116 -0
  31. package/dist/commands/resume.js +159 -0
  32. package/dist/commands/run-command.js +79 -0
  33. package/dist/commands/session-id.js +78 -0
  34. package/dist/commands/session.js +192 -0
  35. package/dist/commands/share.js +80 -0
  36. package/dist/commands/types.js +2 -0
  37. package/dist/commands/undo-redo.js +159 -0
  38. package/dist/commands/unset-model.js +152 -0
  39. package/dist/commands/upgrade.js +42 -0
  40. package/dist/commands/user-command.js +148 -0
  41. package/dist/commands/verbosity.js +60 -0
  42. package/dist/commands/worktree-settings.js +50 -0
  43. package/dist/commands/worktree.js +299 -0
  44. package/dist/condense-memory.js +33 -0
  45. package/dist/config.js +110 -0
  46. package/dist/database.js +1050 -0
  47. package/dist/db.js +159 -0
  48. package/dist/db.test.js +49 -0
  49. package/dist/discord-api.js +28 -0
  50. package/dist/discord-auth.js +231 -0
  51. package/dist/discord-auth.test.js +80 -0
  52. package/dist/discord-bot.js +997 -0
  53. package/dist/discord-utils.js +560 -0
  54. package/dist/discord-utils.test.js +115 -0
  55. package/dist/errors.js +167 -0
  56. package/dist/escape-backticks.test.js +429 -0
  57. package/dist/format-tables.js +122 -0
  58. package/dist/format-tables.test.js +199 -0
  59. package/dist/forum-sync/config.js +79 -0
  60. package/dist/forum-sync/discord-operations.js +154 -0
  61. package/dist/forum-sync/index.js +5 -0
  62. package/dist/forum-sync/markdown.js +117 -0
  63. package/dist/forum-sync/sync-to-discord.js +417 -0
  64. package/dist/forum-sync/sync-to-files.js +190 -0
  65. package/dist/forum-sync/types.js +53 -0
  66. package/dist/forum-sync/watchers.js +307 -0
  67. package/dist/gateway-consumer.js +232 -0
  68. package/dist/gateway-consumer.test.js +18 -0
  69. package/dist/genai-worker-wrapper.js +111 -0
  70. package/dist/genai-worker.js +311 -0
  71. package/dist/genai.js +232 -0
  72. package/dist/generated/browser.js +17 -0
  73. package/dist/generated/client.js +35 -0
  74. package/dist/generated/commonInputTypes.js +10 -0
  75. package/dist/generated/enums.js +30 -0
  76. package/dist/generated/internal/class.js +41 -0
  77. package/dist/generated/internal/prismaNamespace.js +239 -0
  78. package/dist/generated/internal/prismaNamespaceBrowser.js +209 -0
  79. package/dist/generated/models/bot_api_keys.js +1 -0
  80. package/dist/generated/models/bot_tokens.js +1 -0
  81. package/dist/generated/models/channel_agents.js +1 -0
  82. package/dist/generated/models/channel_directories.js +1 -0
  83. package/dist/generated/models/channel_mention_mode.js +1 -0
  84. package/dist/generated/models/channel_models.js +1 -0
  85. package/dist/generated/models/channel_verbosity.js +1 -0
  86. package/dist/generated/models/channel_worktrees.js +1 -0
  87. package/dist/generated/models/forum_sync_configs.js +1 -0
  88. package/dist/generated/models/global_models.js +1 -0
  89. package/dist/generated/models/ipc_requests.js +1 -0
  90. package/dist/generated/models/part_messages.js +1 -0
  91. package/dist/generated/models/scheduled_tasks.js +1 -0
  92. package/dist/generated/models/session_agents.js +1 -0
  93. package/dist/generated/models/session_models.js +1 -0
  94. package/dist/generated/models/session_start_sources.js +1 -0
  95. package/dist/generated/models/thread_sessions.js +1 -0
  96. package/dist/generated/models/thread_worktrees.js +1 -0
  97. package/dist/generated/models.js +1 -0
  98. package/dist/heap-monitor.js +95 -0
  99. package/dist/hrana-server.js +416 -0
  100. package/dist/hrana-server.test.js +368 -0
  101. package/dist/image-utils.js +112 -0
  102. package/dist/interaction-handler.js +327 -0
  103. package/dist/ipc-polling.js +251 -0
  104. package/dist/kimaki-digital-twin.e2e.test.js +165 -0
  105. package/dist/limit-heading-depth.js +25 -0
  106. package/dist/limit-heading-depth.test.js +105 -0
  107. package/dist/logger.js +160 -0
  108. package/dist/markdown.js +342 -0
  109. package/dist/markdown.test.js +253 -0
  110. package/dist/message-formatting.js +433 -0
  111. package/dist/message-formatting.test.js +73 -0
  112. package/dist/openai-realtime.js +228 -0
  113. package/dist/opencode-plugin-loading.e2e.test.js +91 -0
  114. package/dist/opencode-plugin.js +536 -0
  115. package/dist/opencode-plugin.test.js +98 -0
  116. package/dist/opencode.js +409 -0
  117. package/dist/privacy-sanitizer.js +105 -0
  118. package/dist/runtime-mode.js +51 -0
  119. package/dist/runtime-mode.test.js +115 -0
  120. package/dist/sentry.js +127 -0
  121. package/dist/session-handler/state.js +151 -0
  122. package/dist/session-handler.js +1874 -0
  123. package/dist/session-search.js +100 -0
  124. package/dist/session-search.test.js +40 -0
  125. package/dist/startup-service.js +153 -0
  126. package/dist/system-message.js +499 -0
  127. package/dist/task-runner.js +282 -0
  128. package/dist/task-schedule.js +191 -0
  129. package/dist/task-schedule.test.js +71 -0
  130. package/dist/thinking-utils.js +35 -0
  131. package/dist/thread-message-queue.e2e.test.js +781 -0
  132. package/dist/tools.js +359 -0
  133. package/dist/unnest-code-blocks.js +136 -0
  134. package/dist/unnest-code-blocks.test.js +641 -0
  135. package/dist/upgrade.js +114 -0
  136. package/dist/utils.js +109 -0
  137. package/dist/voice-handler.js +606 -0
  138. package/dist/voice.js +304 -0
  139. package/dist/voice.test.js +187 -0
  140. package/dist/wait-session.js +94 -0
  141. package/dist/worker-types.js +4 -0
  142. package/dist/worktree-utils.js +727 -0
  143. package/dist/xml.js +92 -0
  144. package/dist/xml.test.js +32 -0
  145. package/package.json +82 -0
  146. package/schema.prisma +246 -0
  147. package/skills/batch/SKILL.md +87 -0
  148. package/skills/critique/SKILL.md +129 -0
  149. package/skills/errore/SKILL.md +589 -0
  150. package/skills/goke/.prettierrc +5 -0
  151. package/skills/goke/CHANGELOG.md +40 -0
  152. package/skills/goke/LICENSE +21 -0
  153. package/skills/goke/README.md +666 -0
  154. package/skills/goke/SKILL.md +458 -0
  155. package/skills/goke/package.json +43 -0
  156. package/skills/goke/src/__test__/coerce.test.ts +411 -0
  157. package/skills/goke/src/__test__/index.test.ts +1798 -0
  158. package/skills/goke/src/__test__/types.test-d.ts +111 -0
  159. package/skills/goke/src/coerce.ts +547 -0
  160. package/skills/goke/src/goke.ts +1362 -0
  161. package/skills/goke/src/index.ts +16 -0
  162. package/skills/goke/src/mri.ts +164 -0
  163. package/skills/goke/tsconfig.json +15 -0
  164. package/skills/jitter/EDITOR.md +219 -0
  165. package/skills/jitter/EXPORT-INTERNALS.md +309 -0
  166. package/skills/jitter/SKILL.md +158 -0
  167. package/skills/jitter/jitter-clipboard.json +1042 -0
  168. package/skills/jitter/package.json +14 -0
  169. package/skills/jitter/tsconfig.json +15 -0
  170. package/skills/jitter/utils/actions.ts +212 -0
  171. package/skills/jitter/utils/export.ts +114 -0
  172. package/skills/jitter/utils/index.ts +141 -0
  173. package/skills/jitter/utils/snapshot.ts +154 -0
  174. package/skills/jitter/utils/traverse.ts +246 -0
  175. package/skills/jitter/utils/types.ts +279 -0
  176. package/skills/jitter/utils/wait.ts +133 -0
  177. package/skills/playwriter/SKILL.md +31 -0
  178. package/skills/security-review/SKILL.md +208 -0
  179. package/skills/simplify/SKILL.md +58 -0
  180. package/skills/termcast/SKILL.md +945 -0
  181. package/skills/tuistory/SKILL.md +250 -0
  182. package/skills/zustand-centralized-state/SKILL.md +582 -0
  183. package/src/__snapshots__/compact-session-context-no-system.md +35 -0
  184. package/src/__snapshots__/compact-session-context.md +41 -0
  185. package/src/__snapshots__/first-session-no-info.md +17 -0
  186. package/src/__snapshots__/first-session-with-info.md +23 -0
  187. package/src/__snapshots__/session-1.md +17 -0
  188. package/src/__snapshots__/session-2.md +5871 -0
  189. package/src/__snapshots__/session-3.md +17 -0
  190. package/src/__snapshots__/session-with-tools.md +5871 -0
  191. package/src/ai-tool-to-genai.test.ts +296 -0
  192. package/src/ai-tool-to-genai.ts +282 -0
  193. package/src/ai-tool.ts +39 -0
  194. package/src/bin.ts +108 -0
  195. package/src/bot-token.test.ts +171 -0
  196. package/src/bot-token.ts +159 -0
  197. package/src/channel-management.ts +172 -0
  198. package/src/cli-parsing.test.ts +132 -0
  199. package/src/cli.ts +3605 -0
  200. package/src/commands/abort.ts +112 -0
  201. package/src/commands/action-buttons.ts +376 -0
  202. package/src/commands/add-project.ts +152 -0
  203. package/src/commands/agent.ts +404 -0
  204. package/src/commands/ask-question.ts +330 -0
  205. package/src/commands/compact.ts +157 -0
  206. package/src/commands/context-usage.ts +199 -0
  207. package/src/commands/create-new-project.ts +179 -0
  208. package/src/commands/diff.ts +165 -0
  209. package/src/commands/file-upload.ts +389 -0
  210. package/src/commands/fork.ts +320 -0
  211. package/src/commands/gemini-apikey.ts +104 -0
  212. package/src/commands/login.ts +634 -0
  213. package/src/commands/mention-mode.ts +77 -0
  214. package/src/commands/merge-worktree.ts +177 -0
  215. package/src/commands/model.ts +961 -0
  216. package/src/commands/permissions.ts +261 -0
  217. package/src/commands/queue.ts +296 -0
  218. package/src/commands/remove-project.ts +155 -0
  219. package/src/commands/restart-opencode-server.ts +162 -0
  220. package/src/commands/resume.ts +242 -0
  221. package/src/commands/run-command.ts +123 -0
  222. package/src/commands/session-id.ts +109 -0
  223. package/src/commands/session.ts +250 -0
  224. package/src/commands/share.ts +106 -0
  225. package/src/commands/types.ts +25 -0
  226. package/src/commands/undo-redo.ts +221 -0
  227. package/src/commands/unset-model.ts +189 -0
  228. package/src/commands/upgrade.ts +52 -0
  229. package/src/commands/user-command.ts +193 -0
  230. package/src/commands/verbosity.ts +88 -0
  231. package/src/commands/worktree-settings.ts +79 -0
  232. package/src/commands/worktree.ts +431 -0
  233. package/src/condense-memory.ts +36 -0
  234. package/src/config.ts +148 -0
  235. package/src/database.ts +1530 -0
  236. package/src/db.test.ts +60 -0
  237. package/src/db.ts +190 -0
  238. package/src/discord-api.ts +35 -0
  239. package/src/discord-bot.ts +1316 -0
  240. package/src/discord-utils.test.ts +132 -0
  241. package/src/discord-utils.ts +767 -0
  242. package/src/errors.ts +213 -0
  243. package/src/escape-backticks.test.ts +469 -0
  244. package/src/format-tables.test.ts +223 -0
  245. package/src/format-tables.ts +145 -0
  246. package/src/forum-sync/config.ts +92 -0
  247. package/src/forum-sync/discord-operations.ts +241 -0
  248. package/src/forum-sync/index.ts +9 -0
  249. package/src/forum-sync/markdown.ts +176 -0
  250. package/src/forum-sync/sync-to-discord.ts +595 -0
  251. package/src/forum-sync/sync-to-files.ts +294 -0
  252. package/src/forum-sync/types.ts +175 -0
  253. package/src/forum-sync/watchers.ts +454 -0
  254. package/src/genai-worker-wrapper.ts +164 -0
  255. package/src/genai-worker.ts +386 -0
  256. package/src/genai.ts +321 -0
  257. package/src/generated/browser.ts +109 -0
  258. package/src/generated/client.ts +131 -0
  259. package/src/generated/commonInputTypes.ts +512 -0
  260. package/src/generated/enums.ts +46 -0
  261. package/src/generated/internal/class.ts +362 -0
  262. package/src/generated/internal/prismaNamespace.ts +2251 -0
  263. package/src/generated/internal/prismaNamespaceBrowser.ts +308 -0
  264. package/src/generated/models/bot_api_keys.ts +1288 -0
  265. package/src/generated/models/bot_tokens.ts +1577 -0
  266. package/src/generated/models/channel_agents.ts +1256 -0
  267. package/src/generated/models/channel_directories.ts +2104 -0
  268. package/src/generated/models/channel_mention_mode.ts +1300 -0
  269. package/src/generated/models/channel_models.ts +1288 -0
  270. package/src/generated/models/channel_verbosity.ts +1224 -0
  271. package/src/generated/models/channel_worktrees.ts +1308 -0
  272. package/src/generated/models/forum_sync_configs.ts +1452 -0
  273. package/src/generated/models/global_models.ts +1288 -0
  274. package/src/generated/models/ipc_requests.ts +1485 -0
  275. package/src/generated/models/part_messages.ts +1302 -0
  276. package/src/generated/models/scheduled_tasks.ts +2320 -0
  277. package/src/generated/models/session_agents.ts +1086 -0
  278. package/src/generated/models/session_models.ts +1114 -0
  279. package/src/generated/models/session_start_sources.ts +1408 -0
  280. package/src/generated/models/thread_sessions.ts +1599 -0
  281. package/src/generated/models/thread_worktrees.ts +1352 -0
  282. package/src/generated/models.ts +29 -0
  283. package/src/heap-monitor.ts +121 -0
  284. package/src/hrana-server.test.ts +428 -0
  285. package/src/hrana-server.ts +547 -0
  286. package/src/image-utils.ts +149 -0
  287. package/src/interaction-handler.ts +461 -0
  288. package/src/ipc-polling.ts +325 -0
  289. package/src/kimaki-digital-twin.e2e.test.ts +201 -0
  290. package/src/limit-heading-depth.test.ts +116 -0
  291. package/src/limit-heading-depth.ts +26 -0
  292. package/src/logger.ts +203 -0
  293. package/src/markdown.test.ts +360 -0
  294. package/src/markdown.ts +410 -0
  295. package/src/message-formatting.test.ts +81 -0
  296. package/src/message-formatting.ts +549 -0
  297. package/src/openai-realtime.ts +362 -0
  298. package/src/opencode-plugin-loading.e2e.test.ts +112 -0
  299. package/src/opencode-plugin.test.ts +108 -0
  300. package/src/opencode-plugin.ts +652 -0
  301. package/src/opencode.ts +554 -0
  302. package/src/privacy-sanitizer.ts +142 -0
  303. package/src/schema.sql +158 -0
  304. package/src/sentry.ts +137 -0
  305. package/src/session-handler/state.ts +232 -0
  306. package/src/session-handler.ts +2668 -0
  307. package/src/session-search.test.ts +50 -0
  308. package/src/session-search.ts +148 -0
  309. package/src/startup-service.ts +200 -0
  310. package/src/system-message.ts +568 -0
  311. package/src/task-runner.ts +425 -0
  312. package/src/task-schedule.test.ts +84 -0
  313. package/src/task-schedule.ts +287 -0
  314. package/src/thinking-utils.ts +61 -0
  315. package/src/thread-message-queue.e2e.test.ts +997 -0
  316. package/src/tools.ts +432 -0
  317. package/src/unnest-code-blocks.test.ts +679 -0
  318. package/src/unnest-code-blocks.ts +168 -0
  319. package/src/upgrade.ts +127 -0
  320. package/src/utils.ts +145 -0
  321. package/src/voice-handler.ts +852 -0
  322. package/src/voice.test.ts +219 -0
  323. package/src/voice.ts +444 -0
  324. package/src/wait-session.ts +147 -0
  325. package/src/worker-types.ts +64 -0
  326. package/src/worktree-utils.ts +988 -0
  327. package/src/xml.test.ts +38 -0
  328. package/src/xml.ts +121 -0
@@ -0,0 +1,2104 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!! */
3
+ /* eslint-disable */
4
+ // biome-ignore-all lint: generated file
5
+ // @ts-nocheck
6
+ /*
7
+ * This file exports the `channel_directories` model and its related types.
8
+ *
9
+ * 🟢 You can import this file directly.
10
+ */
11
+ import type * as runtime from "@prisma/client/runtime/client"
12
+ import type * as $Enums from "../enums.js"
13
+ import type * as Prisma from "../internal/prismaNamespace.js"
14
+
15
+ /**
16
+ * Model channel_directories
17
+ *
18
+ */
19
+ export type channel_directoriesModel = runtime.Types.Result.DefaultSelection<Prisma.$channel_directoriesPayload>
20
+
21
+ export type AggregateChannel_directories = {
22
+ _count: Channel_directoriesCountAggregateOutputType | null
23
+ _min: Channel_directoriesMinAggregateOutputType | null
24
+ _max: Channel_directoriesMaxAggregateOutputType | null
25
+ }
26
+
27
+ export type Channel_directoriesMinAggregateOutputType = {
28
+ channel_id: string | null
29
+ directory: string | null
30
+ channel_type: string | null
31
+ app_id: string | null
32
+ created_at: Date | null
33
+ }
34
+
35
+ export type Channel_directoriesMaxAggregateOutputType = {
36
+ channel_id: string | null
37
+ directory: string | null
38
+ channel_type: string | null
39
+ app_id: string | null
40
+ created_at: Date | null
41
+ }
42
+
43
+ export type Channel_directoriesCountAggregateOutputType = {
44
+ channel_id: number
45
+ directory: number
46
+ channel_type: number
47
+ app_id: number
48
+ created_at: number
49
+ _all: number
50
+ }
51
+
52
+
53
+ export type Channel_directoriesMinAggregateInputType = {
54
+ channel_id?: true
55
+ directory?: true
56
+ channel_type?: true
57
+ app_id?: true
58
+ created_at?: true
59
+ }
60
+
61
+ export type Channel_directoriesMaxAggregateInputType = {
62
+ channel_id?: true
63
+ directory?: true
64
+ channel_type?: true
65
+ app_id?: true
66
+ created_at?: true
67
+ }
68
+
69
+ export type Channel_directoriesCountAggregateInputType = {
70
+ channel_id?: true
71
+ directory?: true
72
+ channel_type?: true
73
+ app_id?: true
74
+ created_at?: true
75
+ _all?: true
76
+ }
77
+
78
+ export type Channel_directoriesAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
79
+ /**
80
+ * Filter which channel_directories to aggregate.
81
+ */
82
+ where?: Prisma.channel_directoriesWhereInput
83
+ /**
84
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
85
+ *
86
+ * Determine the order of channel_directories to fetch.
87
+ */
88
+ orderBy?: Prisma.channel_directoriesOrderByWithRelationInput | Prisma.channel_directoriesOrderByWithRelationInput[]
89
+ /**
90
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
91
+ *
92
+ * Sets the start position
93
+ */
94
+ cursor?: Prisma.channel_directoriesWhereUniqueInput
95
+ /**
96
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
97
+ *
98
+ * Take `±n` channel_directories from the position of the cursor.
99
+ */
100
+ take?: number
101
+ /**
102
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
103
+ *
104
+ * Skip the first `n` channel_directories.
105
+ */
106
+ skip?: number
107
+ /**
108
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
109
+ *
110
+ * Count returned channel_directories
111
+ **/
112
+ _count?: true | Channel_directoriesCountAggregateInputType
113
+ /**
114
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
115
+ *
116
+ * Select which fields to find the minimum value
117
+ **/
118
+ _min?: Channel_directoriesMinAggregateInputType
119
+ /**
120
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
121
+ *
122
+ * Select which fields to find the maximum value
123
+ **/
124
+ _max?: Channel_directoriesMaxAggregateInputType
125
+ }
126
+
127
+ export type GetChannel_directoriesAggregateType<T extends Channel_directoriesAggregateArgs> = {
128
+ [P in keyof T & keyof AggregateChannel_directories]: P extends '_count' | 'count'
129
+ ? T[P] extends true
130
+ ? number
131
+ : Prisma.GetScalarType<T[P], AggregateChannel_directories[P]>
132
+ : Prisma.GetScalarType<T[P], AggregateChannel_directories[P]>
133
+ }
134
+
135
+
136
+
137
+
138
+ export type channel_directoriesGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
139
+ where?: Prisma.channel_directoriesWhereInput
140
+ orderBy?: Prisma.channel_directoriesOrderByWithAggregationInput | Prisma.channel_directoriesOrderByWithAggregationInput[]
141
+ by: Prisma.Channel_directoriesScalarFieldEnum[] | Prisma.Channel_directoriesScalarFieldEnum
142
+ having?: Prisma.channel_directoriesScalarWhereWithAggregatesInput
143
+ take?: number
144
+ skip?: number
145
+ _count?: Channel_directoriesCountAggregateInputType | true
146
+ _min?: Channel_directoriesMinAggregateInputType
147
+ _max?: Channel_directoriesMaxAggregateInputType
148
+ }
149
+
150
+ export type Channel_directoriesGroupByOutputType = {
151
+ channel_id: string
152
+ directory: string
153
+ channel_type: string
154
+ app_id: string | null
155
+ created_at: Date | null
156
+ _count: Channel_directoriesCountAggregateOutputType | null
157
+ _min: Channel_directoriesMinAggregateOutputType | null
158
+ _max: Channel_directoriesMaxAggregateOutputType | null
159
+ }
160
+
161
+ type GetChannel_directoriesGroupByPayload<T extends channel_directoriesGroupByArgs> = Prisma.PrismaPromise<
162
+ Array<
163
+ Prisma.PickEnumerable<Channel_directoriesGroupByOutputType, T['by']> &
164
+ {
165
+ [P in ((keyof T) & (keyof Channel_directoriesGroupByOutputType))]: P extends '_count'
166
+ ? T[P] extends boolean
167
+ ? number
168
+ : Prisma.GetScalarType<T[P], Channel_directoriesGroupByOutputType[P]>
169
+ : Prisma.GetScalarType<T[P], Channel_directoriesGroupByOutputType[P]>
170
+ }
171
+ >
172
+ >
173
+
174
+
175
+
176
+ export type channel_directoriesWhereInput = {
177
+ AND?: Prisma.channel_directoriesWhereInput | Prisma.channel_directoriesWhereInput[]
178
+ OR?: Prisma.channel_directoriesWhereInput[]
179
+ NOT?: Prisma.channel_directoriesWhereInput | Prisma.channel_directoriesWhereInput[]
180
+ channel_id?: Prisma.StringFilter<"channel_directories"> | string
181
+ directory?: Prisma.StringFilter<"channel_directories"> | string
182
+ channel_type?: Prisma.StringFilter<"channel_directories"> | string
183
+ app_id?: Prisma.StringNullableFilter<"channel_directories"> | string | null
184
+ created_at?: Prisma.DateTimeNullableFilter<"channel_directories"> | Date | string | null
185
+ bot?: Prisma.XOR<Prisma.Bot_tokensNullableScalarRelationFilter, Prisma.bot_tokensWhereInput> | null
186
+ channel_model?: Prisma.XOR<Prisma.Channel_modelsNullableScalarRelationFilter, Prisma.channel_modelsWhereInput> | null
187
+ channel_agent?: Prisma.XOR<Prisma.Channel_agentsNullableScalarRelationFilter, Prisma.channel_agentsWhereInput> | null
188
+ channel_worktree?: Prisma.XOR<Prisma.Channel_worktreesNullableScalarRelationFilter, Prisma.channel_worktreesWhereInput> | null
189
+ channel_verbosity?: Prisma.XOR<Prisma.Channel_verbosityNullableScalarRelationFilter, Prisma.channel_verbosityWhereInput> | null
190
+ channel_mention_mode?: Prisma.XOR<Prisma.Channel_mention_modeNullableScalarRelationFilter, Prisma.channel_mention_modeWhereInput> | null
191
+ scheduled_tasks?: Prisma.Scheduled_tasksListRelationFilter
192
+ }
193
+
194
+ export type channel_directoriesOrderByWithRelationInput = {
195
+ channel_id?: Prisma.SortOrder
196
+ directory?: Prisma.SortOrder
197
+ channel_type?: Prisma.SortOrder
198
+ app_id?: Prisma.SortOrderInput | Prisma.SortOrder
199
+ created_at?: Prisma.SortOrderInput | Prisma.SortOrder
200
+ bot?: Prisma.bot_tokensOrderByWithRelationInput
201
+ channel_model?: Prisma.channel_modelsOrderByWithRelationInput
202
+ channel_agent?: Prisma.channel_agentsOrderByWithRelationInput
203
+ channel_worktree?: Prisma.channel_worktreesOrderByWithRelationInput
204
+ channel_verbosity?: Prisma.channel_verbosityOrderByWithRelationInput
205
+ channel_mention_mode?: Prisma.channel_mention_modeOrderByWithRelationInput
206
+ scheduled_tasks?: Prisma.scheduled_tasksOrderByRelationAggregateInput
207
+ }
208
+
209
+ export type channel_directoriesWhereUniqueInput = Prisma.AtLeast<{
210
+ channel_id?: string
211
+ AND?: Prisma.channel_directoriesWhereInput | Prisma.channel_directoriesWhereInput[]
212
+ OR?: Prisma.channel_directoriesWhereInput[]
213
+ NOT?: Prisma.channel_directoriesWhereInput | Prisma.channel_directoriesWhereInput[]
214
+ directory?: Prisma.StringFilter<"channel_directories"> | string
215
+ channel_type?: Prisma.StringFilter<"channel_directories"> | string
216
+ app_id?: Prisma.StringNullableFilter<"channel_directories"> | string | null
217
+ created_at?: Prisma.DateTimeNullableFilter<"channel_directories"> | Date | string | null
218
+ bot?: Prisma.XOR<Prisma.Bot_tokensNullableScalarRelationFilter, Prisma.bot_tokensWhereInput> | null
219
+ channel_model?: Prisma.XOR<Prisma.Channel_modelsNullableScalarRelationFilter, Prisma.channel_modelsWhereInput> | null
220
+ channel_agent?: Prisma.XOR<Prisma.Channel_agentsNullableScalarRelationFilter, Prisma.channel_agentsWhereInput> | null
221
+ channel_worktree?: Prisma.XOR<Prisma.Channel_worktreesNullableScalarRelationFilter, Prisma.channel_worktreesWhereInput> | null
222
+ channel_verbosity?: Prisma.XOR<Prisma.Channel_verbosityNullableScalarRelationFilter, Prisma.channel_verbosityWhereInput> | null
223
+ channel_mention_mode?: Prisma.XOR<Prisma.Channel_mention_modeNullableScalarRelationFilter, Prisma.channel_mention_modeWhereInput> | null
224
+ scheduled_tasks?: Prisma.Scheduled_tasksListRelationFilter
225
+ }, "channel_id">
226
+
227
+ export type channel_directoriesOrderByWithAggregationInput = {
228
+ channel_id?: Prisma.SortOrder
229
+ directory?: Prisma.SortOrder
230
+ channel_type?: Prisma.SortOrder
231
+ app_id?: Prisma.SortOrderInput | Prisma.SortOrder
232
+ created_at?: Prisma.SortOrderInput | Prisma.SortOrder
233
+ _count?: Prisma.channel_directoriesCountOrderByAggregateInput
234
+ _max?: Prisma.channel_directoriesMaxOrderByAggregateInput
235
+ _min?: Prisma.channel_directoriesMinOrderByAggregateInput
236
+ }
237
+
238
+ export type channel_directoriesScalarWhereWithAggregatesInput = {
239
+ AND?: Prisma.channel_directoriesScalarWhereWithAggregatesInput | Prisma.channel_directoriesScalarWhereWithAggregatesInput[]
240
+ OR?: Prisma.channel_directoriesScalarWhereWithAggregatesInput[]
241
+ NOT?: Prisma.channel_directoriesScalarWhereWithAggregatesInput | Prisma.channel_directoriesScalarWhereWithAggregatesInput[]
242
+ channel_id?: Prisma.StringWithAggregatesFilter<"channel_directories"> | string
243
+ directory?: Prisma.StringWithAggregatesFilter<"channel_directories"> | string
244
+ channel_type?: Prisma.StringWithAggregatesFilter<"channel_directories"> | string
245
+ app_id?: Prisma.StringNullableWithAggregatesFilter<"channel_directories"> | string | null
246
+ created_at?: Prisma.DateTimeNullableWithAggregatesFilter<"channel_directories"> | Date | string | null
247
+ }
248
+
249
+ export type channel_directoriesCreateInput = {
250
+ channel_id: string
251
+ directory: string
252
+ channel_type: string
253
+ created_at?: Date | string | null
254
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
255
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
256
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
257
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
258
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
259
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
260
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
261
+ }
262
+
263
+ export type channel_directoriesUncheckedCreateInput = {
264
+ channel_id: string
265
+ directory: string
266
+ channel_type: string
267
+ app_id?: string | null
268
+ created_at?: Date | string | null
269
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
270
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
271
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
272
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
273
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
274
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
275
+ }
276
+
277
+ export type channel_directoriesUpdateInput = {
278
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
279
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
280
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
281
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
282
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
283
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
284
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
285
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
286
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
287
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
288
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
289
+ }
290
+
291
+ export type channel_directoriesUncheckedUpdateInput = {
292
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
293
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
294
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
295
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
296
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
297
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
298
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
299
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
300
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
301
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
302
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
303
+ }
304
+
305
+ export type channel_directoriesCreateManyInput = {
306
+ channel_id: string
307
+ directory: string
308
+ channel_type: string
309
+ app_id?: string | null
310
+ created_at?: Date | string | null
311
+ }
312
+
313
+ export type channel_directoriesUpdateManyMutationInput = {
314
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
315
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
316
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
317
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
318
+ }
319
+
320
+ export type channel_directoriesUncheckedUpdateManyInput = {
321
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
322
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
323
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
324
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
325
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
326
+ }
327
+
328
+ export type Channel_directoriesListRelationFilter = {
329
+ every?: Prisma.channel_directoriesWhereInput
330
+ some?: Prisma.channel_directoriesWhereInput
331
+ none?: Prisma.channel_directoriesWhereInput
332
+ }
333
+
334
+ export type channel_directoriesOrderByRelationAggregateInput = {
335
+ _count?: Prisma.SortOrder
336
+ }
337
+
338
+ export type channel_directoriesCountOrderByAggregateInput = {
339
+ channel_id?: Prisma.SortOrder
340
+ directory?: Prisma.SortOrder
341
+ channel_type?: Prisma.SortOrder
342
+ app_id?: Prisma.SortOrder
343
+ created_at?: Prisma.SortOrder
344
+ }
345
+
346
+ export type channel_directoriesMaxOrderByAggregateInput = {
347
+ channel_id?: Prisma.SortOrder
348
+ directory?: Prisma.SortOrder
349
+ channel_type?: Prisma.SortOrder
350
+ app_id?: Prisma.SortOrder
351
+ created_at?: Prisma.SortOrder
352
+ }
353
+
354
+ export type channel_directoriesMinOrderByAggregateInput = {
355
+ channel_id?: Prisma.SortOrder
356
+ directory?: Prisma.SortOrder
357
+ channel_type?: Prisma.SortOrder
358
+ app_id?: Prisma.SortOrder
359
+ created_at?: Prisma.SortOrder
360
+ }
361
+
362
+ export type Channel_directoriesScalarRelationFilter = {
363
+ is?: Prisma.channel_directoriesWhereInput
364
+ isNot?: Prisma.channel_directoriesWhereInput
365
+ }
366
+
367
+ export type Channel_directoriesNullableScalarRelationFilter = {
368
+ is?: Prisma.channel_directoriesWhereInput | null
369
+ isNot?: Prisma.channel_directoriesWhereInput | null
370
+ }
371
+
372
+ export type channel_directoriesCreateNestedManyWithoutBotInput = {
373
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutBotInput, Prisma.channel_directoriesUncheckedCreateWithoutBotInput> | Prisma.channel_directoriesCreateWithoutBotInput[] | Prisma.channel_directoriesUncheckedCreateWithoutBotInput[]
374
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutBotInput | Prisma.channel_directoriesCreateOrConnectWithoutBotInput[]
375
+ createMany?: Prisma.channel_directoriesCreateManyBotInputEnvelope
376
+ connect?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
377
+ }
378
+
379
+ export type channel_directoriesUncheckedCreateNestedManyWithoutBotInput = {
380
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutBotInput, Prisma.channel_directoriesUncheckedCreateWithoutBotInput> | Prisma.channel_directoriesCreateWithoutBotInput[] | Prisma.channel_directoriesUncheckedCreateWithoutBotInput[]
381
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutBotInput | Prisma.channel_directoriesCreateOrConnectWithoutBotInput[]
382
+ createMany?: Prisma.channel_directoriesCreateManyBotInputEnvelope
383
+ connect?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
384
+ }
385
+
386
+ export type channel_directoriesUpdateManyWithoutBotNestedInput = {
387
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutBotInput, Prisma.channel_directoriesUncheckedCreateWithoutBotInput> | Prisma.channel_directoriesCreateWithoutBotInput[] | Prisma.channel_directoriesUncheckedCreateWithoutBotInput[]
388
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutBotInput | Prisma.channel_directoriesCreateOrConnectWithoutBotInput[]
389
+ upsert?: Prisma.channel_directoriesUpsertWithWhereUniqueWithoutBotInput | Prisma.channel_directoriesUpsertWithWhereUniqueWithoutBotInput[]
390
+ createMany?: Prisma.channel_directoriesCreateManyBotInputEnvelope
391
+ set?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
392
+ disconnect?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
393
+ delete?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
394
+ connect?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
395
+ update?: Prisma.channel_directoriesUpdateWithWhereUniqueWithoutBotInput | Prisma.channel_directoriesUpdateWithWhereUniqueWithoutBotInput[]
396
+ updateMany?: Prisma.channel_directoriesUpdateManyWithWhereWithoutBotInput | Prisma.channel_directoriesUpdateManyWithWhereWithoutBotInput[]
397
+ deleteMany?: Prisma.channel_directoriesScalarWhereInput | Prisma.channel_directoriesScalarWhereInput[]
398
+ }
399
+
400
+ export type channel_directoriesUncheckedUpdateManyWithoutBotNestedInput = {
401
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutBotInput, Prisma.channel_directoriesUncheckedCreateWithoutBotInput> | Prisma.channel_directoriesCreateWithoutBotInput[] | Prisma.channel_directoriesUncheckedCreateWithoutBotInput[]
402
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutBotInput | Prisma.channel_directoriesCreateOrConnectWithoutBotInput[]
403
+ upsert?: Prisma.channel_directoriesUpsertWithWhereUniqueWithoutBotInput | Prisma.channel_directoriesUpsertWithWhereUniqueWithoutBotInput[]
404
+ createMany?: Prisma.channel_directoriesCreateManyBotInputEnvelope
405
+ set?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
406
+ disconnect?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
407
+ delete?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
408
+ connect?: Prisma.channel_directoriesWhereUniqueInput | Prisma.channel_directoriesWhereUniqueInput[]
409
+ update?: Prisma.channel_directoriesUpdateWithWhereUniqueWithoutBotInput | Prisma.channel_directoriesUpdateWithWhereUniqueWithoutBotInput[]
410
+ updateMany?: Prisma.channel_directoriesUpdateManyWithWhereWithoutBotInput | Prisma.channel_directoriesUpdateManyWithWhereWithoutBotInput[]
411
+ deleteMany?: Prisma.channel_directoriesScalarWhereInput | Prisma.channel_directoriesScalarWhereInput[]
412
+ }
413
+
414
+ export type NullableStringFieldUpdateOperationsInput = {
415
+ set?: string | null
416
+ }
417
+
418
+ export type channel_directoriesCreateNestedOneWithoutChannel_modelInput = {
419
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_modelInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_modelInput>
420
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_modelInput
421
+ connect?: Prisma.channel_directoriesWhereUniqueInput
422
+ }
423
+
424
+ export type channel_directoriesUpdateOneRequiredWithoutChannel_modelNestedInput = {
425
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_modelInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_modelInput>
426
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_modelInput
427
+ upsert?: Prisma.channel_directoriesUpsertWithoutChannel_modelInput
428
+ connect?: Prisma.channel_directoriesWhereUniqueInput
429
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_directoriesUpdateToOneWithWhereWithoutChannel_modelInput, Prisma.channel_directoriesUpdateWithoutChannel_modelInput>, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_modelInput>
430
+ }
431
+
432
+ export type channel_directoriesCreateNestedOneWithoutChannel_agentInput = {
433
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_agentInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_agentInput>
434
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_agentInput
435
+ connect?: Prisma.channel_directoriesWhereUniqueInput
436
+ }
437
+
438
+ export type channel_directoriesUpdateOneRequiredWithoutChannel_agentNestedInput = {
439
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_agentInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_agentInput>
440
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_agentInput
441
+ upsert?: Prisma.channel_directoriesUpsertWithoutChannel_agentInput
442
+ connect?: Prisma.channel_directoriesWhereUniqueInput
443
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_directoriesUpdateToOneWithWhereWithoutChannel_agentInput, Prisma.channel_directoriesUpdateWithoutChannel_agentInput>, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_agentInput>
444
+ }
445
+
446
+ export type channel_directoriesCreateNestedOneWithoutChannel_worktreeInput = {
447
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_worktreeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_worktreeInput>
448
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_worktreeInput
449
+ connect?: Prisma.channel_directoriesWhereUniqueInput
450
+ }
451
+
452
+ export type channel_directoriesUpdateOneRequiredWithoutChannel_worktreeNestedInput = {
453
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_worktreeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_worktreeInput>
454
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_worktreeInput
455
+ upsert?: Prisma.channel_directoriesUpsertWithoutChannel_worktreeInput
456
+ connect?: Prisma.channel_directoriesWhereUniqueInput
457
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_directoriesUpdateToOneWithWhereWithoutChannel_worktreeInput, Prisma.channel_directoriesUpdateWithoutChannel_worktreeInput>, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_worktreeInput>
458
+ }
459
+
460
+ export type channel_directoriesCreateNestedOneWithoutChannel_verbosityInput = {
461
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_verbosityInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_verbosityInput>
462
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_verbosityInput
463
+ connect?: Prisma.channel_directoriesWhereUniqueInput
464
+ }
465
+
466
+ export type channel_directoriesUpdateOneRequiredWithoutChannel_verbosityNestedInput = {
467
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_verbosityInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_verbosityInput>
468
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_verbosityInput
469
+ upsert?: Prisma.channel_directoriesUpsertWithoutChannel_verbosityInput
470
+ connect?: Prisma.channel_directoriesWhereUniqueInput
471
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_directoriesUpdateToOneWithWhereWithoutChannel_verbosityInput, Prisma.channel_directoriesUpdateWithoutChannel_verbosityInput>, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_verbosityInput>
472
+ }
473
+
474
+ export type channel_directoriesCreateNestedOneWithoutChannel_mention_modeInput = {
475
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_mention_modeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_mention_modeInput>
476
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_mention_modeInput
477
+ connect?: Prisma.channel_directoriesWhereUniqueInput
478
+ }
479
+
480
+ export type channel_directoriesUpdateOneRequiredWithoutChannel_mention_modeNestedInput = {
481
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_mention_modeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_mention_modeInput>
482
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutChannel_mention_modeInput
483
+ upsert?: Prisma.channel_directoriesUpsertWithoutChannel_mention_modeInput
484
+ connect?: Prisma.channel_directoriesWhereUniqueInput
485
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_directoriesUpdateToOneWithWhereWithoutChannel_mention_modeInput, Prisma.channel_directoriesUpdateWithoutChannel_mention_modeInput>, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_mention_modeInput>
486
+ }
487
+
488
+ export type channel_directoriesCreateNestedOneWithoutScheduled_tasksInput = {
489
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutScheduled_tasksInput, Prisma.channel_directoriesUncheckedCreateWithoutScheduled_tasksInput>
490
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutScheduled_tasksInput
491
+ connect?: Prisma.channel_directoriesWhereUniqueInput
492
+ }
493
+
494
+ export type channel_directoriesUpdateOneWithoutScheduled_tasksNestedInput = {
495
+ create?: Prisma.XOR<Prisma.channel_directoriesCreateWithoutScheduled_tasksInput, Prisma.channel_directoriesUncheckedCreateWithoutScheduled_tasksInput>
496
+ connectOrCreate?: Prisma.channel_directoriesCreateOrConnectWithoutScheduled_tasksInput
497
+ upsert?: Prisma.channel_directoriesUpsertWithoutScheduled_tasksInput
498
+ disconnect?: Prisma.channel_directoriesWhereInput | boolean
499
+ delete?: Prisma.channel_directoriesWhereInput | boolean
500
+ connect?: Prisma.channel_directoriesWhereUniqueInput
501
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_directoriesUpdateToOneWithWhereWithoutScheduled_tasksInput, Prisma.channel_directoriesUpdateWithoutScheduled_tasksInput>, Prisma.channel_directoriesUncheckedUpdateWithoutScheduled_tasksInput>
502
+ }
503
+
504
+ export type channel_directoriesCreateWithoutBotInput = {
505
+ channel_id: string
506
+ directory: string
507
+ channel_type: string
508
+ created_at?: Date | string | null
509
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
510
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
511
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
512
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
513
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
514
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
515
+ }
516
+
517
+ export type channel_directoriesUncheckedCreateWithoutBotInput = {
518
+ channel_id: string
519
+ directory: string
520
+ channel_type: string
521
+ created_at?: Date | string | null
522
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
523
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
524
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
525
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
526
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
527
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
528
+ }
529
+
530
+ export type channel_directoriesCreateOrConnectWithoutBotInput = {
531
+ where: Prisma.channel_directoriesWhereUniqueInput
532
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutBotInput, Prisma.channel_directoriesUncheckedCreateWithoutBotInput>
533
+ }
534
+
535
+ export type channel_directoriesCreateManyBotInputEnvelope = {
536
+ data: Prisma.channel_directoriesCreateManyBotInput | Prisma.channel_directoriesCreateManyBotInput[]
537
+ }
538
+
539
+ export type channel_directoriesUpsertWithWhereUniqueWithoutBotInput = {
540
+ where: Prisma.channel_directoriesWhereUniqueInput
541
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutBotInput, Prisma.channel_directoriesUncheckedUpdateWithoutBotInput>
542
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutBotInput, Prisma.channel_directoriesUncheckedCreateWithoutBotInput>
543
+ }
544
+
545
+ export type channel_directoriesUpdateWithWhereUniqueWithoutBotInput = {
546
+ where: Prisma.channel_directoriesWhereUniqueInput
547
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutBotInput, Prisma.channel_directoriesUncheckedUpdateWithoutBotInput>
548
+ }
549
+
550
+ export type channel_directoriesUpdateManyWithWhereWithoutBotInput = {
551
+ where: Prisma.channel_directoriesScalarWhereInput
552
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateManyMutationInput, Prisma.channel_directoriesUncheckedUpdateManyWithoutBotInput>
553
+ }
554
+
555
+ export type channel_directoriesScalarWhereInput = {
556
+ AND?: Prisma.channel_directoriesScalarWhereInput | Prisma.channel_directoriesScalarWhereInput[]
557
+ OR?: Prisma.channel_directoriesScalarWhereInput[]
558
+ NOT?: Prisma.channel_directoriesScalarWhereInput | Prisma.channel_directoriesScalarWhereInput[]
559
+ channel_id?: Prisma.StringFilter<"channel_directories"> | string
560
+ directory?: Prisma.StringFilter<"channel_directories"> | string
561
+ channel_type?: Prisma.StringFilter<"channel_directories"> | string
562
+ app_id?: Prisma.StringNullableFilter<"channel_directories"> | string | null
563
+ created_at?: Prisma.DateTimeNullableFilter<"channel_directories"> | Date | string | null
564
+ }
565
+
566
+ export type channel_directoriesCreateWithoutChannel_modelInput = {
567
+ channel_id: string
568
+ directory: string
569
+ channel_type: string
570
+ created_at?: Date | string | null
571
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
572
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
573
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
574
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
575
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
576
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
577
+ }
578
+
579
+ export type channel_directoriesUncheckedCreateWithoutChannel_modelInput = {
580
+ channel_id: string
581
+ directory: string
582
+ channel_type: string
583
+ app_id?: string | null
584
+ created_at?: Date | string | null
585
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
586
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
587
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
588
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
589
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
590
+ }
591
+
592
+ export type channel_directoriesCreateOrConnectWithoutChannel_modelInput = {
593
+ where: Prisma.channel_directoriesWhereUniqueInput
594
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_modelInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_modelInput>
595
+ }
596
+
597
+ export type channel_directoriesUpsertWithoutChannel_modelInput = {
598
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_modelInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_modelInput>
599
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_modelInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_modelInput>
600
+ where?: Prisma.channel_directoriesWhereInput
601
+ }
602
+
603
+ export type channel_directoriesUpdateToOneWithWhereWithoutChannel_modelInput = {
604
+ where?: Prisma.channel_directoriesWhereInput
605
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_modelInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_modelInput>
606
+ }
607
+
608
+ export type channel_directoriesUpdateWithoutChannel_modelInput = {
609
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
610
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
611
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
612
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
613
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
614
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
615
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
616
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
617
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
618
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
619
+ }
620
+
621
+ export type channel_directoriesUncheckedUpdateWithoutChannel_modelInput = {
622
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
623
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
624
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
625
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
626
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
627
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
628
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
629
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
630
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
631
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
632
+ }
633
+
634
+ export type channel_directoriesCreateWithoutChannel_agentInput = {
635
+ channel_id: string
636
+ directory: string
637
+ channel_type: string
638
+ created_at?: Date | string | null
639
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
640
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
641
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
642
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
643
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
644
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
645
+ }
646
+
647
+ export type channel_directoriesUncheckedCreateWithoutChannel_agentInput = {
648
+ channel_id: string
649
+ directory: string
650
+ channel_type: string
651
+ app_id?: string | null
652
+ created_at?: Date | string | null
653
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
654
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
655
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
656
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
657
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
658
+ }
659
+
660
+ export type channel_directoriesCreateOrConnectWithoutChannel_agentInput = {
661
+ where: Prisma.channel_directoriesWhereUniqueInput
662
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_agentInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_agentInput>
663
+ }
664
+
665
+ export type channel_directoriesUpsertWithoutChannel_agentInput = {
666
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_agentInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_agentInput>
667
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_agentInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_agentInput>
668
+ where?: Prisma.channel_directoriesWhereInput
669
+ }
670
+
671
+ export type channel_directoriesUpdateToOneWithWhereWithoutChannel_agentInput = {
672
+ where?: Prisma.channel_directoriesWhereInput
673
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_agentInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_agentInput>
674
+ }
675
+
676
+ export type channel_directoriesUpdateWithoutChannel_agentInput = {
677
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
678
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
679
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
680
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
681
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
682
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
683
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
684
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
685
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
686
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
687
+ }
688
+
689
+ export type channel_directoriesUncheckedUpdateWithoutChannel_agentInput = {
690
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
691
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
692
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
693
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
694
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
695
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
696
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
697
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
698
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
699
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
700
+ }
701
+
702
+ export type channel_directoriesCreateWithoutChannel_worktreeInput = {
703
+ channel_id: string
704
+ directory: string
705
+ channel_type: string
706
+ created_at?: Date | string | null
707
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
708
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
709
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
710
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
711
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
712
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
713
+ }
714
+
715
+ export type channel_directoriesUncheckedCreateWithoutChannel_worktreeInput = {
716
+ channel_id: string
717
+ directory: string
718
+ channel_type: string
719
+ app_id?: string | null
720
+ created_at?: Date | string | null
721
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
722
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
723
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
724
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
725
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
726
+ }
727
+
728
+ export type channel_directoriesCreateOrConnectWithoutChannel_worktreeInput = {
729
+ where: Prisma.channel_directoriesWhereUniqueInput
730
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_worktreeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_worktreeInput>
731
+ }
732
+
733
+ export type channel_directoriesUpsertWithoutChannel_worktreeInput = {
734
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_worktreeInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_worktreeInput>
735
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_worktreeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_worktreeInput>
736
+ where?: Prisma.channel_directoriesWhereInput
737
+ }
738
+
739
+ export type channel_directoriesUpdateToOneWithWhereWithoutChannel_worktreeInput = {
740
+ where?: Prisma.channel_directoriesWhereInput
741
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_worktreeInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_worktreeInput>
742
+ }
743
+
744
+ export type channel_directoriesUpdateWithoutChannel_worktreeInput = {
745
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
746
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
747
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
748
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
749
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
750
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
751
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
752
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
753
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
754
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
755
+ }
756
+
757
+ export type channel_directoriesUncheckedUpdateWithoutChannel_worktreeInput = {
758
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
759
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
760
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
761
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
762
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
763
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
764
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
765
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
766
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
767
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
768
+ }
769
+
770
+ export type channel_directoriesCreateWithoutChannel_verbosityInput = {
771
+ channel_id: string
772
+ directory: string
773
+ channel_type: string
774
+ created_at?: Date | string | null
775
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
776
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
777
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
778
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
779
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
780
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
781
+ }
782
+
783
+ export type channel_directoriesUncheckedCreateWithoutChannel_verbosityInput = {
784
+ channel_id: string
785
+ directory: string
786
+ channel_type: string
787
+ app_id?: string | null
788
+ created_at?: Date | string | null
789
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
790
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
791
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
792
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
793
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
794
+ }
795
+
796
+ export type channel_directoriesCreateOrConnectWithoutChannel_verbosityInput = {
797
+ where: Prisma.channel_directoriesWhereUniqueInput
798
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_verbosityInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_verbosityInput>
799
+ }
800
+
801
+ export type channel_directoriesUpsertWithoutChannel_verbosityInput = {
802
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_verbosityInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_verbosityInput>
803
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_verbosityInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_verbosityInput>
804
+ where?: Prisma.channel_directoriesWhereInput
805
+ }
806
+
807
+ export type channel_directoriesUpdateToOneWithWhereWithoutChannel_verbosityInput = {
808
+ where?: Prisma.channel_directoriesWhereInput
809
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_verbosityInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_verbosityInput>
810
+ }
811
+
812
+ export type channel_directoriesUpdateWithoutChannel_verbosityInput = {
813
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
814
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
815
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
816
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
817
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
818
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
819
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
820
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
821
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
822
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
823
+ }
824
+
825
+ export type channel_directoriesUncheckedUpdateWithoutChannel_verbosityInput = {
826
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
827
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
828
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
829
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
830
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
831
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
832
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
833
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
834
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
835
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
836
+ }
837
+
838
+ export type channel_directoriesCreateWithoutChannel_mention_modeInput = {
839
+ channel_id: string
840
+ directory: string
841
+ channel_type: string
842
+ created_at?: Date | string | null
843
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
844
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
845
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
846
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
847
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
848
+ scheduled_tasks?: Prisma.scheduled_tasksCreateNestedManyWithoutChannelInput
849
+ }
850
+
851
+ export type channel_directoriesUncheckedCreateWithoutChannel_mention_modeInput = {
852
+ channel_id: string
853
+ directory: string
854
+ channel_type: string
855
+ app_id?: string | null
856
+ created_at?: Date | string | null
857
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
858
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
859
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
860
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
861
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedCreateNestedManyWithoutChannelInput
862
+ }
863
+
864
+ export type channel_directoriesCreateOrConnectWithoutChannel_mention_modeInput = {
865
+ where: Prisma.channel_directoriesWhereUniqueInput
866
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_mention_modeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_mention_modeInput>
867
+ }
868
+
869
+ export type channel_directoriesUpsertWithoutChannel_mention_modeInput = {
870
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_mention_modeInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_mention_modeInput>
871
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutChannel_mention_modeInput, Prisma.channel_directoriesUncheckedCreateWithoutChannel_mention_modeInput>
872
+ where?: Prisma.channel_directoriesWhereInput
873
+ }
874
+
875
+ export type channel_directoriesUpdateToOneWithWhereWithoutChannel_mention_modeInput = {
876
+ where?: Prisma.channel_directoriesWhereInput
877
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutChannel_mention_modeInput, Prisma.channel_directoriesUncheckedUpdateWithoutChannel_mention_modeInput>
878
+ }
879
+
880
+ export type channel_directoriesUpdateWithoutChannel_mention_modeInput = {
881
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
882
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
883
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
884
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
885
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
886
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
887
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
888
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
889
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
890
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
891
+ }
892
+
893
+ export type channel_directoriesUncheckedUpdateWithoutChannel_mention_modeInput = {
894
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
895
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
896
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
897
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
898
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
899
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
900
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
901
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
902
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
903
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
904
+ }
905
+
906
+ export type channel_directoriesCreateWithoutScheduled_tasksInput = {
907
+ channel_id: string
908
+ directory: string
909
+ channel_type: string
910
+ created_at?: Date | string | null
911
+ bot?: Prisma.bot_tokensCreateNestedOneWithoutChannelsInput
912
+ channel_model?: Prisma.channel_modelsCreateNestedOneWithoutChannelInput
913
+ channel_agent?: Prisma.channel_agentsCreateNestedOneWithoutChannelInput
914
+ channel_worktree?: Prisma.channel_worktreesCreateNestedOneWithoutChannelInput
915
+ channel_verbosity?: Prisma.channel_verbosityCreateNestedOneWithoutChannelInput
916
+ channel_mention_mode?: Prisma.channel_mention_modeCreateNestedOneWithoutChannelInput
917
+ }
918
+
919
+ export type channel_directoriesUncheckedCreateWithoutScheduled_tasksInput = {
920
+ channel_id: string
921
+ directory: string
922
+ channel_type: string
923
+ app_id?: string | null
924
+ created_at?: Date | string | null
925
+ channel_model?: Prisma.channel_modelsUncheckedCreateNestedOneWithoutChannelInput
926
+ channel_agent?: Prisma.channel_agentsUncheckedCreateNestedOneWithoutChannelInput
927
+ channel_worktree?: Prisma.channel_worktreesUncheckedCreateNestedOneWithoutChannelInput
928
+ channel_verbosity?: Prisma.channel_verbosityUncheckedCreateNestedOneWithoutChannelInput
929
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedCreateNestedOneWithoutChannelInput
930
+ }
931
+
932
+ export type channel_directoriesCreateOrConnectWithoutScheduled_tasksInput = {
933
+ where: Prisma.channel_directoriesWhereUniqueInput
934
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutScheduled_tasksInput, Prisma.channel_directoriesUncheckedCreateWithoutScheduled_tasksInput>
935
+ }
936
+
937
+ export type channel_directoriesUpsertWithoutScheduled_tasksInput = {
938
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutScheduled_tasksInput, Prisma.channel_directoriesUncheckedUpdateWithoutScheduled_tasksInput>
939
+ create: Prisma.XOR<Prisma.channel_directoriesCreateWithoutScheduled_tasksInput, Prisma.channel_directoriesUncheckedCreateWithoutScheduled_tasksInput>
940
+ where?: Prisma.channel_directoriesWhereInput
941
+ }
942
+
943
+ export type channel_directoriesUpdateToOneWithWhereWithoutScheduled_tasksInput = {
944
+ where?: Prisma.channel_directoriesWhereInput
945
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateWithoutScheduled_tasksInput, Prisma.channel_directoriesUncheckedUpdateWithoutScheduled_tasksInput>
946
+ }
947
+
948
+ export type channel_directoriesUpdateWithoutScheduled_tasksInput = {
949
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
950
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
951
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
952
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
953
+ bot?: Prisma.bot_tokensUpdateOneWithoutChannelsNestedInput
954
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
955
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
956
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
957
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
958
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
959
+ }
960
+
961
+ export type channel_directoriesUncheckedUpdateWithoutScheduled_tasksInput = {
962
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
963
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
964
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
965
+ app_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
966
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
967
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
968
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
969
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
970
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
971
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
972
+ }
973
+
974
+ export type channel_directoriesCreateManyBotInput = {
975
+ channel_id: string
976
+ directory: string
977
+ channel_type: string
978
+ created_at?: Date | string | null
979
+ }
980
+
981
+ export type channel_directoriesUpdateWithoutBotInput = {
982
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
983
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
984
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
985
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
986
+ channel_model?: Prisma.channel_modelsUpdateOneWithoutChannelNestedInput
987
+ channel_agent?: Prisma.channel_agentsUpdateOneWithoutChannelNestedInput
988
+ channel_worktree?: Prisma.channel_worktreesUpdateOneWithoutChannelNestedInput
989
+ channel_verbosity?: Prisma.channel_verbosityUpdateOneWithoutChannelNestedInput
990
+ channel_mention_mode?: Prisma.channel_mention_modeUpdateOneWithoutChannelNestedInput
991
+ scheduled_tasks?: Prisma.scheduled_tasksUpdateManyWithoutChannelNestedInput
992
+ }
993
+
994
+ export type channel_directoriesUncheckedUpdateWithoutBotInput = {
995
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
996
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
997
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
998
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
999
+ channel_model?: Prisma.channel_modelsUncheckedUpdateOneWithoutChannelNestedInput
1000
+ channel_agent?: Prisma.channel_agentsUncheckedUpdateOneWithoutChannelNestedInput
1001
+ channel_worktree?: Prisma.channel_worktreesUncheckedUpdateOneWithoutChannelNestedInput
1002
+ channel_verbosity?: Prisma.channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput
1003
+ channel_mention_mode?: Prisma.channel_mention_modeUncheckedUpdateOneWithoutChannelNestedInput
1004
+ scheduled_tasks?: Prisma.scheduled_tasksUncheckedUpdateManyWithoutChannelNestedInput
1005
+ }
1006
+
1007
+ export type channel_directoriesUncheckedUpdateManyWithoutBotInput = {
1008
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
1009
+ directory?: Prisma.StringFieldUpdateOperationsInput | string
1010
+ channel_type?: Prisma.StringFieldUpdateOperationsInput | string
1011
+ created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
1012
+ }
1013
+
1014
+
1015
+ /**
1016
+ * Count Type Channel_directoriesCountOutputType
1017
+ */
1018
+
1019
+ export type Channel_directoriesCountOutputType = {
1020
+ scheduled_tasks: number
1021
+ }
1022
+
1023
+ export type Channel_directoriesCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1024
+ scheduled_tasks?: boolean | Channel_directoriesCountOutputTypeCountScheduled_tasksArgs
1025
+ }
1026
+
1027
+ /**
1028
+ * Channel_directoriesCountOutputType without action
1029
+ */
1030
+ export type Channel_directoriesCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1031
+ /**
1032
+ * Select specific fields to fetch from the Channel_directoriesCountOutputType
1033
+ */
1034
+ select?: Prisma.Channel_directoriesCountOutputTypeSelect<ExtArgs> | null
1035
+ }
1036
+
1037
+ /**
1038
+ * Channel_directoriesCountOutputType without action
1039
+ */
1040
+ export type Channel_directoriesCountOutputTypeCountScheduled_tasksArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1041
+ where?: Prisma.scheduled_tasksWhereInput
1042
+ }
1043
+
1044
+
1045
+ export type channel_directoriesSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
1046
+ channel_id?: boolean
1047
+ directory?: boolean
1048
+ channel_type?: boolean
1049
+ app_id?: boolean
1050
+ created_at?: boolean
1051
+ bot?: boolean | Prisma.channel_directories$botArgs<ExtArgs>
1052
+ channel_model?: boolean | Prisma.channel_directories$channel_modelArgs<ExtArgs>
1053
+ channel_agent?: boolean | Prisma.channel_directories$channel_agentArgs<ExtArgs>
1054
+ channel_worktree?: boolean | Prisma.channel_directories$channel_worktreeArgs<ExtArgs>
1055
+ channel_verbosity?: boolean | Prisma.channel_directories$channel_verbosityArgs<ExtArgs>
1056
+ channel_mention_mode?: boolean | Prisma.channel_directories$channel_mention_modeArgs<ExtArgs>
1057
+ scheduled_tasks?: boolean | Prisma.channel_directories$scheduled_tasksArgs<ExtArgs>
1058
+ _count?: boolean | Prisma.Channel_directoriesCountOutputTypeDefaultArgs<ExtArgs>
1059
+ }, ExtArgs["result"]["channel_directories"]>
1060
+
1061
+ export type channel_directoriesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
1062
+ channel_id?: boolean
1063
+ directory?: boolean
1064
+ channel_type?: boolean
1065
+ app_id?: boolean
1066
+ created_at?: boolean
1067
+ bot?: boolean | Prisma.channel_directories$botArgs<ExtArgs>
1068
+ }, ExtArgs["result"]["channel_directories"]>
1069
+
1070
+ export type channel_directoriesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
1071
+ channel_id?: boolean
1072
+ directory?: boolean
1073
+ channel_type?: boolean
1074
+ app_id?: boolean
1075
+ created_at?: boolean
1076
+ bot?: boolean | Prisma.channel_directories$botArgs<ExtArgs>
1077
+ }, ExtArgs["result"]["channel_directories"]>
1078
+
1079
+ export type channel_directoriesSelectScalar = {
1080
+ channel_id?: boolean
1081
+ directory?: boolean
1082
+ channel_type?: boolean
1083
+ app_id?: boolean
1084
+ created_at?: boolean
1085
+ }
1086
+
1087
+ export type channel_directoriesOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"channel_id" | "directory" | "channel_type" | "app_id" | "created_at", ExtArgs["result"]["channel_directories"]>
1088
+ export type channel_directoriesInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1089
+ bot?: boolean | Prisma.channel_directories$botArgs<ExtArgs>
1090
+ channel_model?: boolean | Prisma.channel_directories$channel_modelArgs<ExtArgs>
1091
+ channel_agent?: boolean | Prisma.channel_directories$channel_agentArgs<ExtArgs>
1092
+ channel_worktree?: boolean | Prisma.channel_directories$channel_worktreeArgs<ExtArgs>
1093
+ channel_verbosity?: boolean | Prisma.channel_directories$channel_verbosityArgs<ExtArgs>
1094
+ channel_mention_mode?: boolean | Prisma.channel_directories$channel_mention_modeArgs<ExtArgs>
1095
+ scheduled_tasks?: boolean | Prisma.channel_directories$scheduled_tasksArgs<ExtArgs>
1096
+ _count?: boolean | Prisma.Channel_directoriesCountOutputTypeDefaultArgs<ExtArgs>
1097
+ }
1098
+ export type channel_directoriesIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1099
+ bot?: boolean | Prisma.channel_directories$botArgs<ExtArgs>
1100
+ }
1101
+ export type channel_directoriesIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1102
+ bot?: boolean | Prisma.channel_directories$botArgs<ExtArgs>
1103
+ }
1104
+
1105
+ export type $channel_directoriesPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1106
+ name: "channel_directories"
1107
+ objects: {
1108
+ bot: Prisma.$bot_tokensPayload<ExtArgs> | null
1109
+ channel_model: Prisma.$channel_modelsPayload<ExtArgs> | null
1110
+ channel_agent: Prisma.$channel_agentsPayload<ExtArgs> | null
1111
+ channel_worktree: Prisma.$channel_worktreesPayload<ExtArgs> | null
1112
+ channel_verbosity: Prisma.$channel_verbosityPayload<ExtArgs> | null
1113
+ channel_mention_mode: Prisma.$channel_mention_modePayload<ExtArgs> | null
1114
+ scheduled_tasks: Prisma.$scheduled_tasksPayload<ExtArgs>[]
1115
+ }
1116
+ scalars: runtime.Types.Extensions.GetPayloadResult<{
1117
+ channel_id: string
1118
+ directory: string
1119
+ channel_type: string
1120
+ app_id: string | null
1121
+ created_at: Date | null
1122
+ }, ExtArgs["result"]["channel_directories"]>
1123
+ composites: {}
1124
+ }
1125
+
1126
+ export type channel_directoriesGetPayload<S extends boolean | null | undefined | channel_directoriesDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload, S>
1127
+
1128
+ export type channel_directoriesCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
1129
+ Omit<channel_directoriesFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
1130
+ select?: Channel_directoriesCountAggregateInputType | true
1131
+ }
1132
+
1133
+ export interface channel_directoriesDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
1134
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['channel_directories'], meta: { name: 'channel_directories' } }
1135
+ /**
1136
+ * Find zero or one Channel_directories that matches the filter.
1137
+ * @param {channel_directoriesFindUniqueArgs} args - Arguments to find a Channel_directories
1138
+ * @example
1139
+ * // Get one Channel_directories
1140
+ * const channel_directories = await prisma.channel_directories.findUnique({
1141
+ * where: {
1142
+ * // ... provide filter here
1143
+ * }
1144
+ * })
1145
+ */
1146
+ findUnique<T extends channel_directoriesFindUniqueArgs>(args: Prisma.SelectSubset<T, channel_directoriesFindUniqueArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1147
+
1148
+ /**
1149
+ * Find one Channel_directories that matches the filter or throw an error with `error.code='P2025'`
1150
+ * if no matches were found.
1151
+ * @param {channel_directoriesFindUniqueOrThrowArgs} args - Arguments to find a Channel_directories
1152
+ * @example
1153
+ * // Get one Channel_directories
1154
+ * const channel_directories = await prisma.channel_directories.findUniqueOrThrow({
1155
+ * where: {
1156
+ * // ... provide filter here
1157
+ * }
1158
+ * })
1159
+ */
1160
+ findUniqueOrThrow<T extends channel_directoriesFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, channel_directoriesFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1161
+
1162
+ /**
1163
+ * Find the first Channel_directories that matches the filter.
1164
+ * Note, that providing `undefined` is treated as the value not being there.
1165
+ * Read more here: https://pris.ly/d/null-undefined
1166
+ * @param {channel_directoriesFindFirstArgs} args - Arguments to find a Channel_directories
1167
+ * @example
1168
+ * // Get one Channel_directories
1169
+ * const channel_directories = await prisma.channel_directories.findFirst({
1170
+ * where: {
1171
+ * // ... provide filter here
1172
+ * }
1173
+ * })
1174
+ */
1175
+ findFirst<T extends channel_directoriesFindFirstArgs>(args?: Prisma.SelectSubset<T, channel_directoriesFindFirstArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1176
+
1177
+ /**
1178
+ * Find the first Channel_directories that matches the filter or
1179
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
1180
+ * Note, that providing `undefined` is treated as the value not being there.
1181
+ * Read more here: https://pris.ly/d/null-undefined
1182
+ * @param {channel_directoriesFindFirstOrThrowArgs} args - Arguments to find a Channel_directories
1183
+ * @example
1184
+ * // Get one Channel_directories
1185
+ * const channel_directories = await prisma.channel_directories.findFirstOrThrow({
1186
+ * where: {
1187
+ * // ... provide filter here
1188
+ * }
1189
+ * })
1190
+ */
1191
+ findFirstOrThrow<T extends channel_directoriesFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, channel_directoriesFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1192
+
1193
+ /**
1194
+ * Find zero or more Channel_directories that matches the filter.
1195
+ * Note, that providing `undefined` is treated as the value not being there.
1196
+ * Read more here: https://pris.ly/d/null-undefined
1197
+ * @param {channel_directoriesFindManyArgs} args - Arguments to filter and select certain fields only.
1198
+ * @example
1199
+ * // Get all Channel_directories
1200
+ * const channel_directories = await prisma.channel_directories.findMany()
1201
+ *
1202
+ * // Get first 10 Channel_directories
1203
+ * const channel_directories = await prisma.channel_directories.findMany({ take: 10 })
1204
+ *
1205
+ * // Only select the `channel_id`
1206
+ * const channel_directoriesWithChannel_idOnly = await prisma.channel_directories.findMany({ select: { channel_id: true } })
1207
+ *
1208
+ */
1209
+ findMany<T extends channel_directoriesFindManyArgs>(args?: Prisma.SelectSubset<T, channel_directoriesFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
1210
+
1211
+ /**
1212
+ * Create a Channel_directories.
1213
+ * @param {channel_directoriesCreateArgs} args - Arguments to create a Channel_directories.
1214
+ * @example
1215
+ * // Create one Channel_directories
1216
+ * const Channel_directories = await prisma.channel_directories.create({
1217
+ * data: {
1218
+ * // ... data to create a Channel_directories
1219
+ * }
1220
+ * })
1221
+ *
1222
+ */
1223
+ create<T extends channel_directoriesCreateArgs>(args: Prisma.SelectSubset<T, channel_directoriesCreateArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1224
+
1225
+ /**
1226
+ * Create many Channel_directories.
1227
+ * @param {channel_directoriesCreateManyArgs} args - Arguments to create many Channel_directories.
1228
+ * @example
1229
+ * // Create many Channel_directories
1230
+ * const channel_directories = await prisma.channel_directories.createMany({
1231
+ * data: [
1232
+ * // ... provide data here
1233
+ * ]
1234
+ * })
1235
+ *
1236
+ */
1237
+ createMany<T extends channel_directoriesCreateManyArgs>(args?: Prisma.SelectSubset<T, channel_directoriesCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
1238
+
1239
+ /**
1240
+ * Create many Channel_directories and returns the data saved in the database.
1241
+ * @param {channel_directoriesCreateManyAndReturnArgs} args - Arguments to create many Channel_directories.
1242
+ * @example
1243
+ * // Create many Channel_directories
1244
+ * const channel_directories = await prisma.channel_directories.createManyAndReturn({
1245
+ * data: [
1246
+ * // ... provide data here
1247
+ * ]
1248
+ * })
1249
+ *
1250
+ * // Create many Channel_directories and only return the `channel_id`
1251
+ * const channel_directoriesWithChannel_idOnly = await prisma.channel_directories.createManyAndReturn({
1252
+ * select: { channel_id: true },
1253
+ * data: [
1254
+ * // ... provide data here
1255
+ * ]
1256
+ * })
1257
+ * Note, that providing `undefined` is treated as the value not being there.
1258
+ * Read more here: https://pris.ly/d/null-undefined
1259
+ *
1260
+ */
1261
+ createManyAndReturn<T extends channel_directoriesCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, channel_directoriesCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
1262
+
1263
+ /**
1264
+ * Delete a Channel_directories.
1265
+ * @param {channel_directoriesDeleteArgs} args - Arguments to delete one Channel_directories.
1266
+ * @example
1267
+ * // Delete one Channel_directories
1268
+ * const Channel_directories = await prisma.channel_directories.delete({
1269
+ * where: {
1270
+ * // ... filter to delete one Channel_directories
1271
+ * }
1272
+ * })
1273
+ *
1274
+ */
1275
+ delete<T extends channel_directoriesDeleteArgs>(args: Prisma.SelectSubset<T, channel_directoriesDeleteArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1276
+
1277
+ /**
1278
+ * Update one Channel_directories.
1279
+ * @param {channel_directoriesUpdateArgs} args - Arguments to update one Channel_directories.
1280
+ * @example
1281
+ * // Update one Channel_directories
1282
+ * const channel_directories = await prisma.channel_directories.update({
1283
+ * where: {
1284
+ * // ... provide filter here
1285
+ * },
1286
+ * data: {
1287
+ * // ... provide data here
1288
+ * }
1289
+ * })
1290
+ *
1291
+ */
1292
+ update<T extends channel_directoriesUpdateArgs>(args: Prisma.SelectSubset<T, channel_directoriesUpdateArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1293
+
1294
+ /**
1295
+ * Delete zero or more Channel_directories.
1296
+ * @param {channel_directoriesDeleteManyArgs} args - Arguments to filter Channel_directories to delete.
1297
+ * @example
1298
+ * // Delete a few Channel_directories
1299
+ * const { count } = await prisma.channel_directories.deleteMany({
1300
+ * where: {
1301
+ * // ... provide filter here
1302
+ * }
1303
+ * })
1304
+ *
1305
+ */
1306
+ deleteMany<T extends channel_directoriesDeleteManyArgs>(args?: Prisma.SelectSubset<T, channel_directoriesDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
1307
+
1308
+ /**
1309
+ * Update zero or more Channel_directories.
1310
+ * Note, that providing `undefined` is treated as the value not being there.
1311
+ * Read more here: https://pris.ly/d/null-undefined
1312
+ * @param {channel_directoriesUpdateManyArgs} args - Arguments to update one or more rows.
1313
+ * @example
1314
+ * // Update many Channel_directories
1315
+ * const channel_directories = await prisma.channel_directories.updateMany({
1316
+ * where: {
1317
+ * // ... provide filter here
1318
+ * },
1319
+ * data: {
1320
+ * // ... provide data here
1321
+ * }
1322
+ * })
1323
+ *
1324
+ */
1325
+ updateMany<T extends channel_directoriesUpdateManyArgs>(args: Prisma.SelectSubset<T, channel_directoriesUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
1326
+
1327
+ /**
1328
+ * Update zero or more Channel_directories and returns the data updated in the database.
1329
+ * @param {channel_directoriesUpdateManyAndReturnArgs} args - Arguments to update many Channel_directories.
1330
+ * @example
1331
+ * // Update many Channel_directories
1332
+ * const channel_directories = await prisma.channel_directories.updateManyAndReturn({
1333
+ * where: {
1334
+ * // ... provide filter here
1335
+ * },
1336
+ * data: [
1337
+ * // ... provide data here
1338
+ * ]
1339
+ * })
1340
+ *
1341
+ * // Update zero or more Channel_directories and only return the `channel_id`
1342
+ * const channel_directoriesWithChannel_idOnly = await prisma.channel_directories.updateManyAndReturn({
1343
+ * select: { channel_id: true },
1344
+ * where: {
1345
+ * // ... provide filter here
1346
+ * },
1347
+ * data: [
1348
+ * // ... provide data here
1349
+ * ]
1350
+ * })
1351
+ * Note, that providing `undefined` is treated as the value not being there.
1352
+ * Read more here: https://pris.ly/d/null-undefined
1353
+ *
1354
+ */
1355
+ updateManyAndReturn<T extends channel_directoriesUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, channel_directoriesUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
1356
+
1357
+ /**
1358
+ * Create or update one Channel_directories.
1359
+ * @param {channel_directoriesUpsertArgs} args - Arguments to update or create a Channel_directories.
1360
+ * @example
1361
+ * // Update or create a Channel_directories
1362
+ * const channel_directories = await prisma.channel_directories.upsert({
1363
+ * create: {
1364
+ * // ... data to create a Channel_directories
1365
+ * },
1366
+ * update: {
1367
+ * // ... in case it already exists, update
1368
+ * },
1369
+ * where: {
1370
+ * // ... the filter for the Channel_directories we want to update
1371
+ * }
1372
+ * })
1373
+ */
1374
+ upsert<T extends channel_directoriesUpsertArgs>(args: Prisma.SelectSubset<T, channel_directoriesUpsertArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1375
+
1376
+
1377
+ /**
1378
+ * Count the number of Channel_directories.
1379
+ * Note, that providing `undefined` is treated as the value not being there.
1380
+ * Read more here: https://pris.ly/d/null-undefined
1381
+ * @param {channel_directoriesCountArgs} args - Arguments to filter Channel_directories to count.
1382
+ * @example
1383
+ * // Count the number of Channel_directories
1384
+ * const count = await prisma.channel_directories.count({
1385
+ * where: {
1386
+ * // ... the filter for the Channel_directories we want to count
1387
+ * }
1388
+ * })
1389
+ **/
1390
+ count<T extends channel_directoriesCountArgs>(
1391
+ args?: Prisma.Subset<T, channel_directoriesCountArgs>,
1392
+ ): Prisma.PrismaPromise<
1393
+ T extends runtime.Types.Utils.Record<'select', any>
1394
+ ? T['select'] extends true
1395
+ ? number
1396
+ : Prisma.GetScalarType<T['select'], Channel_directoriesCountAggregateOutputType>
1397
+ : number
1398
+ >
1399
+
1400
+ /**
1401
+ * Allows you to perform aggregations operations on a Channel_directories.
1402
+ * Note, that providing `undefined` is treated as the value not being there.
1403
+ * Read more here: https://pris.ly/d/null-undefined
1404
+ * @param {Channel_directoriesAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
1405
+ * @example
1406
+ * // Ordered by age ascending
1407
+ * // Where email contains prisma.io
1408
+ * // Limited to the 10 users
1409
+ * const aggregations = await prisma.user.aggregate({
1410
+ * _avg: {
1411
+ * age: true,
1412
+ * },
1413
+ * where: {
1414
+ * email: {
1415
+ * contains: "prisma.io",
1416
+ * },
1417
+ * },
1418
+ * orderBy: {
1419
+ * age: "asc",
1420
+ * },
1421
+ * take: 10,
1422
+ * })
1423
+ **/
1424
+ aggregate<T extends Channel_directoriesAggregateArgs>(args: Prisma.Subset<T, Channel_directoriesAggregateArgs>): Prisma.PrismaPromise<GetChannel_directoriesAggregateType<T>>
1425
+
1426
+ /**
1427
+ * Group by Channel_directories.
1428
+ * Note, that providing `undefined` is treated as the value not being there.
1429
+ * Read more here: https://pris.ly/d/null-undefined
1430
+ * @param {channel_directoriesGroupByArgs} args - Group by arguments.
1431
+ * @example
1432
+ * // Group by city, order by createdAt, get count
1433
+ * const result = await prisma.user.groupBy({
1434
+ * by: ['city', 'createdAt'],
1435
+ * orderBy: {
1436
+ * createdAt: true
1437
+ * },
1438
+ * _count: {
1439
+ * _all: true
1440
+ * },
1441
+ * })
1442
+ *
1443
+ **/
1444
+ groupBy<
1445
+ T extends channel_directoriesGroupByArgs,
1446
+ HasSelectOrTake extends Prisma.Or<
1447
+ Prisma.Extends<'skip', Prisma.Keys<T>>,
1448
+ Prisma.Extends<'take', Prisma.Keys<T>>
1449
+ >,
1450
+ OrderByArg extends Prisma.True extends HasSelectOrTake
1451
+ ? { orderBy: channel_directoriesGroupByArgs['orderBy'] }
1452
+ : { orderBy?: channel_directoriesGroupByArgs['orderBy'] },
1453
+ OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
1454
+ ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
1455
+ ByValid extends Prisma.Has<ByFields, OrderFields>,
1456
+ HavingFields extends Prisma.GetHavingFields<T['having']>,
1457
+ HavingValid extends Prisma.Has<ByFields, HavingFields>,
1458
+ ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
1459
+ InputErrors extends ByEmpty extends Prisma.True
1460
+ ? `Error: "by" must not be empty.`
1461
+ : HavingValid extends Prisma.False
1462
+ ? {
1463
+ [P in HavingFields]: P extends ByFields
1464
+ ? never
1465
+ : P extends string
1466
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
1467
+ : [
1468
+ Error,
1469
+ 'Field ',
1470
+ P,
1471
+ ` in "having" needs to be provided in "by"`,
1472
+ ]
1473
+ }[HavingFields]
1474
+ : 'take' extends Prisma.Keys<T>
1475
+ ? 'orderBy' extends Prisma.Keys<T>
1476
+ ? ByValid extends Prisma.True
1477
+ ? {}
1478
+ : {
1479
+ [P in OrderFields]: P extends ByFields
1480
+ ? never
1481
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1482
+ }[OrderFields]
1483
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
1484
+ : 'skip' extends Prisma.Keys<T>
1485
+ ? 'orderBy' extends Prisma.Keys<T>
1486
+ ? ByValid extends Prisma.True
1487
+ ? {}
1488
+ : {
1489
+ [P in OrderFields]: P extends ByFields
1490
+ ? never
1491
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1492
+ }[OrderFields]
1493
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
1494
+ : ByValid extends Prisma.True
1495
+ ? {}
1496
+ : {
1497
+ [P in OrderFields]: P extends ByFields
1498
+ ? never
1499
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1500
+ }[OrderFields]
1501
+ >(args: Prisma.SubsetIntersection<T, channel_directoriesGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetChannel_directoriesGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
1502
+ /**
1503
+ * Fields of the channel_directories model
1504
+ */
1505
+ readonly fields: channel_directoriesFieldRefs;
1506
+ }
1507
+
1508
+ /**
1509
+ * The delegate class that acts as a "Promise-like" for channel_directories.
1510
+ * Why is this prefixed with `Prisma__`?
1511
+ * Because we want to prevent naming conflicts as mentioned in
1512
+ * https://github.com/prisma/prisma-client-js/issues/707
1513
+ */
1514
+ export interface Prisma__channel_directoriesClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
1515
+ readonly [Symbol.toStringTag]: "PrismaPromise"
1516
+ bot<T extends Prisma.channel_directories$botArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$botArgs<ExtArgs>>): Prisma.Prisma__bot_tokensClient<runtime.Types.Result.GetResult<Prisma.$bot_tokensPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1517
+ channel_model<T extends Prisma.channel_directories$channel_modelArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$channel_modelArgs<ExtArgs>>): Prisma.Prisma__channel_modelsClient<runtime.Types.Result.GetResult<Prisma.$channel_modelsPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1518
+ channel_agent<T extends Prisma.channel_directories$channel_agentArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$channel_agentArgs<ExtArgs>>): Prisma.Prisma__channel_agentsClient<runtime.Types.Result.GetResult<Prisma.$channel_agentsPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1519
+ channel_worktree<T extends Prisma.channel_directories$channel_worktreeArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$channel_worktreeArgs<ExtArgs>>): Prisma.Prisma__channel_worktreesClient<runtime.Types.Result.GetResult<Prisma.$channel_worktreesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1520
+ channel_verbosity<T extends Prisma.channel_directories$channel_verbosityArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$channel_verbosityArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1521
+ channel_mention_mode<T extends Prisma.channel_directories$channel_mention_modeArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$channel_mention_modeArgs<ExtArgs>>): Prisma.Prisma__channel_mention_modeClient<runtime.Types.Result.GetResult<Prisma.$channel_mention_modePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
1522
+ scheduled_tasks<T extends Prisma.channel_directories$scheduled_tasksArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directories$scheduled_tasksArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$scheduled_tasksPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
1523
+ /**
1524
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
1525
+ * @param onfulfilled The callback to execute when the Promise is resolved.
1526
+ * @param onrejected The callback to execute when the Promise is rejected.
1527
+ * @returns A Promise for the completion of which ever callback is executed.
1528
+ */
1529
+ then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
1530
+ /**
1531
+ * Attaches a callback for only the rejection of the Promise.
1532
+ * @param onrejected The callback to execute when the Promise is rejected.
1533
+ * @returns A Promise for the completion of the callback.
1534
+ */
1535
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
1536
+ /**
1537
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
1538
+ * resolved value cannot be modified from the callback.
1539
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
1540
+ * @returns A Promise for the completion of the callback.
1541
+ */
1542
+ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
1543
+ }
1544
+
1545
+
1546
+
1547
+
1548
+ /**
1549
+ * Fields of the channel_directories model
1550
+ */
1551
+ export interface channel_directoriesFieldRefs {
1552
+ readonly channel_id: Prisma.FieldRef<"channel_directories", 'String'>
1553
+ readonly directory: Prisma.FieldRef<"channel_directories", 'String'>
1554
+ readonly channel_type: Prisma.FieldRef<"channel_directories", 'String'>
1555
+ readonly app_id: Prisma.FieldRef<"channel_directories", 'String'>
1556
+ readonly created_at: Prisma.FieldRef<"channel_directories", 'DateTime'>
1557
+ }
1558
+
1559
+
1560
+ // Custom InputTypes
1561
+ /**
1562
+ * channel_directories findUnique
1563
+ */
1564
+ export type channel_directoriesFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1565
+ /**
1566
+ * Select specific fields to fetch from the channel_directories
1567
+ */
1568
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1569
+ /**
1570
+ * Omit specific fields from the channel_directories
1571
+ */
1572
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1573
+ /**
1574
+ * Choose, which related nodes to fetch as well
1575
+ */
1576
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1577
+ /**
1578
+ * Filter, which channel_directories to fetch.
1579
+ */
1580
+ where: Prisma.channel_directoriesWhereUniqueInput
1581
+ }
1582
+
1583
+ /**
1584
+ * channel_directories findUniqueOrThrow
1585
+ */
1586
+ export type channel_directoriesFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1587
+ /**
1588
+ * Select specific fields to fetch from the channel_directories
1589
+ */
1590
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1591
+ /**
1592
+ * Omit specific fields from the channel_directories
1593
+ */
1594
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1595
+ /**
1596
+ * Choose, which related nodes to fetch as well
1597
+ */
1598
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1599
+ /**
1600
+ * Filter, which channel_directories to fetch.
1601
+ */
1602
+ where: Prisma.channel_directoriesWhereUniqueInput
1603
+ }
1604
+
1605
+ /**
1606
+ * channel_directories findFirst
1607
+ */
1608
+ export type channel_directoriesFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1609
+ /**
1610
+ * Select specific fields to fetch from the channel_directories
1611
+ */
1612
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1613
+ /**
1614
+ * Omit specific fields from the channel_directories
1615
+ */
1616
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1617
+ /**
1618
+ * Choose, which related nodes to fetch as well
1619
+ */
1620
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1621
+ /**
1622
+ * Filter, which channel_directories to fetch.
1623
+ */
1624
+ where?: Prisma.channel_directoriesWhereInput
1625
+ /**
1626
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1627
+ *
1628
+ * Determine the order of channel_directories to fetch.
1629
+ */
1630
+ orderBy?: Prisma.channel_directoriesOrderByWithRelationInput | Prisma.channel_directoriesOrderByWithRelationInput[]
1631
+ /**
1632
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1633
+ *
1634
+ * Sets the position for searching for channel_directories.
1635
+ */
1636
+ cursor?: Prisma.channel_directoriesWhereUniqueInput
1637
+ /**
1638
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1639
+ *
1640
+ * Take `±n` channel_directories from the position of the cursor.
1641
+ */
1642
+ take?: number
1643
+ /**
1644
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1645
+ *
1646
+ * Skip the first `n` channel_directories.
1647
+ */
1648
+ skip?: number
1649
+ /**
1650
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1651
+ *
1652
+ * Filter by unique combinations of channel_directories.
1653
+ */
1654
+ distinct?: Prisma.Channel_directoriesScalarFieldEnum | Prisma.Channel_directoriesScalarFieldEnum[]
1655
+ }
1656
+
1657
+ /**
1658
+ * channel_directories findFirstOrThrow
1659
+ */
1660
+ export type channel_directoriesFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1661
+ /**
1662
+ * Select specific fields to fetch from the channel_directories
1663
+ */
1664
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1665
+ /**
1666
+ * Omit specific fields from the channel_directories
1667
+ */
1668
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1669
+ /**
1670
+ * Choose, which related nodes to fetch as well
1671
+ */
1672
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1673
+ /**
1674
+ * Filter, which channel_directories to fetch.
1675
+ */
1676
+ where?: Prisma.channel_directoriesWhereInput
1677
+ /**
1678
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1679
+ *
1680
+ * Determine the order of channel_directories to fetch.
1681
+ */
1682
+ orderBy?: Prisma.channel_directoriesOrderByWithRelationInput | Prisma.channel_directoriesOrderByWithRelationInput[]
1683
+ /**
1684
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1685
+ *
1686
+ * Sets the position for searching for channel_directories.
1687
+ */
1688
+ cursor?: Prisma.channel_directoriesWhereUniqueInput
1689
+ /**
1690
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1691
+ *
1692
+ * Take `±n` channel_directories from the position of the cursor.
1693
+ */
1694
+ take?: number
1695
+ /**
1696
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1697
+ *
1698
+ * Skip the first `n` channel_directories.
1699
+ */
1700
+ skip?: number
1701
+ /**
1702
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1703
+ *
1704
+ * Filter by unique combinations of channel_directories.
1705
+ */
1706
+ distinct?: Prisma.Channel_directoriesScalarFieldEnum | Prisma.Channel_directoriesScalarFieldEnum[]
1707
+ }
1708
+
1709
+ /**
1710
+ * channel_directories findMany
1711
+ */
1712
+ export type channel_directoriesFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1713
+ /**
1714
+ * Select specific fields to fetch from the channel_directories
1715
+ */
1716
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1717
+ /**
1718
+ * Omit specific fields from the channel_directories
1719
+ */
1720
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1721
+ /**
1722
+ * Choose, which related nodes to fetch as well
1723
+ */
1724
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1725
+ /**
1726
+ * Filter, which channel_directories to fetch.
1727
+ */
1728
+ where?: Prisma.channel_directoriesWhereInput
1729
+ /**
1730
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1731
+ *
1732
+ * Determine the order of channel_directories to fetch.
1733
+ */
1734
+ orderBy?: Prisma.channel_directoriesOrderByWithRelationInput | Prisma.channel_directoriesOrderByWithRelationInput[]
1735
+ /**
1736
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1737
+ *
1738
+ * Sets the position for listing channel_directories.
1739
+ */
1740
+ cursor?: Prisma.channel_directoriesWhereUniqueInput
1741
+ /**
1742
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1743
+ *
1744
+ * Take `±n` channel_directories from the position of the cursor.
1745
+ */
1746
+ take?: number
1747
+ /**
1748
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1749
+ *
1750
+ * Skip the first `n` channel_directories.
1751
+ */
1752
+ skip?: number
1753
+ distinct?: Prisma.Channel_directoriesScalarFieldEnum | Prisma.Channel_directoriesScalarFieldEnum[]
1754
+ }
1755
+
1756
+ /**
1757
+ * channel_directories create
1758
+ */
1759
+ export type channel_directoriesCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1760
+ /**
1761
+ * Select specific fields to fetch from the channel_directories
1762
+ */
1763
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1764
+ /**
1765
+ * Omit specific fields from the channel_directories
1766
+ */
1767
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1768
+ /**
1769
+ * Choose, which related nodes to fetch as well
1770
+ */
1771
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1772
+ /**
1773
+ * The data needed to create a channel_directories.
1774
+ */
1775
+ data: Prisma.XOR<Prisma.channel_directoriesCreateInput, Prisma.channel_directoriesUncheckedCreateInput>
1776
+ }
1777
+
1778
+ /**
1779
+ * channel_directories createMany
1780
+ */
1781
+ export type channel_directoriesCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1782
+ /**
1783
+ * The data used to create many channel_directories.
1784
+ */
1785
+ data: Prisma.channel_directoriesCreateManyInput | Prisma.channel_directoriesCreateManyInput[]
1786
+ }
1787
+
1788
+ /**
1789
+ * channel_directories createManyAndReturn
1790
+ */
1791
+ export type channel_directoriesCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1792
+ /**
1793
+ * Select specific fields to fetch from the channel_directories
1794
+ */
1795
+ select?: Prisma.channel_directoriesSelectCreateManyAndReturn<ExtArgs> | null
1796
+ /**
1797
+ * Omit specific fields from the channel_directories
1798
+ */
1799
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1800
+ /**
1801
+ * The data used to create many channel_directories.
1802
+ */
1803
+ data: Prisma.channel_directoriesCreateManyInput | Prisma.channel_directoriesCreateManyInput[]
1804
+ /**
1805
+ * Choose, which related nodes to fetch as well
1806
+ */
1807
+ include?: Prisma.channel_directoriesIncludeCreateManyAndReturn<ExtArgs> | null
1808
+ }
1809
+
1810
+ /**
1811
+ * channel_directories update
1812
+ */
1813
+ export type channel_directoriesUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1814
+ /**
1815
+ * Select specific fields to fetch from the channel_directories
1816
+ */
1817
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1818
+ /**
1819
+ * Omit specific fields from the channel_directories
1820
+ */
1821
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1822
+ /**
1823
+ * Choose, which related nodes to fetch as well
1824
+ */
1825
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1826
+ /**
1827
+ * The data needed to update a channel_directories.
1828
+ */
1829
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateInput, Prisma.channel_directoriesUncheckedUpdateInput>
1830
+ /**
1831
+ * Choose, which channel_directories to update.
1832
+ */
1833
+ where: Prisma.channel_directoriesWhereUniqueInput
1834
+ }
1835
+
1836
+ /**
1837
+ * channel_directories updateMany
1838
+ */
1839
+ export type channel_directoriesUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1840
+ /**
1841
+ * The data used to update channel_directories.
1842
+ */
1843
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateManyMutationInput, Prisma.channel_directoriesUncheckedUpdateManyInput>
1844
+ /**
1845
+ * Filter which channel_directories to update
1846
+ */
1847
+ where?: Prisma.channel_directoriesWhereInput
1848
+ /**
1849
+ * Limit how many channel_directories to update.
1850
+ */
1851
+ limit?: number
1852
+ }
1853
+
1854
+ /**
1855
+ * channel_directories updateManyAndReturn
1856
+ */
1857
+ export type channel_directoriesUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1858
+ /**
1859
+ * Select specific fields to fetch from the channel_directories
1860
+ */
1861
+ select?: Prisma.channel_directoriesSelectUpdateManyAndReturn<ExtArgs> | null
1862
+ /**
1863
+ * Omit specific fields from the channel_directories
1864
+ */
1865
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1866
+ /**
1867
+ * The data used to update channel_directories.
1868
+ */
1869
+ data: Prisma.XOR<Prisma.channel_directoriesUpdateManyMutationInput, Prisma.channel_directoriesUncheckedUpdateManyInput>
1870
+ /**
1871
+ * Filter which channel_directories to update
1872
+ */
1873
+ where?: Prisma.channel_directoriesWhereInput
1874
+ /**
1875
+ * Limit how many channel_directories to update.
1876
+ */
1877
+ limit?: number
1878
+ /**
1879
+ * Choose, which related nodes to fetch as well
1880
+ */
1881
+ include?: Prisma.channel_directoriesIncludeUpdateManyAndReturn<ExtArgs> | null
1882
+ }
1883
+
1884
+ /**
1885
+ * channel_directories upsert
1886
+ */
1887
+ export type channel_directoriesUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1888
+ /**
1889
+ * Select specific fields to fetch from the channel_directories
1890
+ */
1891
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1892
+ /**
1893
+ * Omit specific fields from the channel_directories
1894
+ */
1895
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1896
+ /**
1897
+ * Choose, which related nodes to fetch as well
1898
+ */
1899
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1900
+ /**
1901
+ * The filter to search for the channel_directories to update in case it exists.
1902
+ */
1903
+ where: Prisma.channel_directoriesWhereUniqueInput
1904
+ /**
1905
+ * In case the channel_directories found by the `where` argument doesn't exist, create a new channel_directories with this data.
1906
+ */
1907
+ create: Prisma.XOR<Prisma.channel_directoriesCreateInput, Prisma.channel_directoriesUncheckedCreateInput>
1908
+ /**
1909
+ * In case the channel_directories was found with the provided `where` argument, update it with this data.
1910
+ */
1911
+ update: Prisma.XOR<Prisma.channel_directoriesUpdateInput, Prisma.channel_directoriesUncheckedUpdateInput>
1912
+ }
1913
+
1914
+ /**
1915
+ * channel_directories delete
1916
+ */
1917
+ export type channel_directoriesDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1918
+ /**
1919
+ * Select specific fields to fetch from the channel_directories
1920
+ */
1921
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
1922
+ /**
1923
+ * Omit specific fields from the channel_directories
1924
+ */
1925
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
1926
+ /**
1927
+ * Choose, which related nodes to fetch as well
1928
+ */
1929
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
1930
+ /**
1931
+ * Filter which channel_directories to delete.
1932
+ */
1933
+ where: Prisma.channel_directoriesWhereUniqueInput
1934
+ }
1935
+
1936
+ /**
1937
+ * channel_directories deleteMany
1938
+ */
1939
+ export type channel_directoriesDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1940
+ /**
1941
+ * Filter which channel_directories to delete
1942
+ */
1943
+ where?: Prisma.channel_directoriesWhereInput
1944
+ /**
1945
+ * Limit how many channel_directories to delete.
1946
+ */
1947
+ limit?: number
1948
+ }
1949
+
1950
+ /**
1951
+ * channel_directories.bot
1952
+ */
1953
+ export type channel_directories$botArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1954
+ /**
1955
+ * Select specific fields to fetch from the bot_tokens
1956
+ */
1957
+ select?: Prisma.bot_tokensSelect<ExtArgs> | null
1958
+ /**
1959
+ * Omit specific fields from the bot_tokens
1960
+ */
1961
+ omit?: Prisma.bot_tokensOmit<ExtArgs> | null
1962
+ /**
1963
+ * Choose, which related nodes to fetch as well
1964
+ */
1965
+ include?: Prisma.bot_tokensInclude<ExtArgs> | null
1966
+ where?: Prisma.bot_tokensWhereInput
1967
+ }
1968
+
1969
+ /**
1970
+ * channel_directories.channel_model
1971
+ */
1972
+ export type channel_directories$channel_modelArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1973
+ /**
1974
+ * Select specific fields to fetch from the channel_models
1975
+ */
1976
+ select?: Prisma.channel_modelsSelect<ExtArgs> | null
1977
+ /**
1978
+ * Omit specific fields from the channel_models
1979
+ */
1980
+ omit?: Prisma.channel_modelsOmit<ExtArgs> | null
1981
+ /**
1982
+ * Choose, which related nodes to fetch as well
1983
+ */
1984
+ include?: Prisma.channel_modelsInclude<ExtArgs> | null
1985
+ where?: Prisma.channel_modelsWhereInput
1986
+ }
1987
+
1988
+ /**
1989
+ * channel_directories.channel_agent
1990
+ */
1991
+ export type channel_directories$channel_agentArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1992
+ /**
1993
+ * Select specific fields to fetch from the channel_agents
1994
+ */
1995
+ select?: Prisma.channel_agentsSelect<ExtArgs> | null
1996
+ /**
1997
+ * Omit specific fields from the channel_agents
1998
+ */
1999
+ omit?: Prisma.channel_agentsOmit<ExtArgs> | null
2000
+ /**
2001
+ * Choose, which related nodes to fetch as well
2002
+ */
2003
+ include?: Prisma.channel_agentsInclude<ExtArgs> | null
2004
+ where?: Prisma.channel_agentsWhereInput
2005
+ }
2006
+
2007
+ /**
2008
+ * channel_directories.channel_worktree
2009
+ */
2010
+ export type channel_directories$channel_worktreeArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2011
+ /**
2012
+ * Select specific fields to fetch from the channel_worktrees
2013
+ */
2014
+ select?: Prisma.channel_worktreesSelect<ExtArgs> | null
2015
+ /**
2016
+ * Omit specific fields from the channel_worktrees
2017
+ */
2018
+ omit?: Prisma.channel_worktreesOmit<ExtArgs> | null
2019
+ /**
2020
+ * Choose, which related nodes to fetch as well
2021
+ */
2022
+ include?: Prisma.channel_worktreesInclude<ExtArgs> | null
2023
+ where?: Prisma.channel_worktreesWhereInput
2024
+ }
2025
+
2026
+ /**
2027
+ * channel_directories.channel_verbosity
2028
+ */
2029
+ export type channel_directories$channel_verbosityArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2030
+ /**
2031
+ * Select specific fields to fetch from the channel_verbosity
2032
+ */
2033
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
2034
+ /**
2035
+ * Omit specific fields from the channel_verbosity
2036
+ */
2037
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
2038
+ /**
2039
+ * Choose, which related nodes to fetch as well
2040
+ */
2041
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
2042
+ where?: Prisma.channel_verbosityWhereInput
2043
+ }
2044
+
2045
+ /**
2046
+ * channel_directories.channel_mention_mode
2047
+ */
2048
+ export type channel_directories$channel_mention_modeArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2049
+ /**
2050
+ * Select specific fields to fetch from the channel_mention_mode
2051
+ */
2052
+ select?: Prisma.channel_mention_modeSelect<ExtArgs> | null
2053
+ /**
2054
+ * Omit specific fields from the channel_mention_mode
2055
+ */
2056
+ omit?: Prisma.channel_mention_modeOmit<ExtArgs> | null
2057
+ /**
2058
+ * Choose, which related nodes to fetch as well
2059
+ */
2060
+ include?: Prisma.channel_mention_modeInclude<ExtArgs> | null
2061
+ where?: Prisma.channel_mention_modeWhereInput
2062
+ }
2063
+
2064
+ /**
2065
+ * channel_directories.scheduled_tasks
2066
+ */
2067
+ export type channel_directories$scheduled_tasksArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2068
+ /**
2069
+ * Select specific fields to fetch from the scheduled_tasks
2070
+ */
2071
+ select?: Prisma.scheduled_tasksSelect<ExtArgs> | null
2072
+ /**
2073
+ * Omit specific fields from the scheduled_tasks
2074
+ */
2075
+ omit?: Prisma.scheduled_tasksOmit<ExtArgs> | null
2076
+ /**
2077
+ * Choose, which related nodes to fetch as well
2078
+ */
2079
+ include?: Prisma.scheduled_tasksInclude<ExtArgs> | null
2080
+ where?: Prisma.scheduled_tasksWhereInput
2081
+ orderBy?: Prisma.scheduled_tasksOrderByWithRelationInput | Prisma.scheduled_tasksOrderByWithRelationInput[]
2082
+ cursor?: Prisma.scheduled_tasksWhereUniqueInput
2083
+ take?: number
2084
+ skip?: number
2085
+ distinct?: Prisma.Scheduled_tasksScalarFieldEnum | Prisma.Scheduled_tasksScalarFieldEnum[]
2086
+ }
2087
+
2088
+ /**
2089
+ * channel_directories without action
2090
+ */
2091
+ export type channel_directoriesDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2092
+ /**
2093
+ * Select specific fields to fetch from the channel_directories
2094
+ */
2095
+ select?: Prisma.channel_directoriesSelect<ExtArgs> | null
2096
+ /**
2097
+ * Omit specific fields from the channel_directories
2098
+ */
2099
+ omit?: Prisma.channel_directoriesOmit<ExtArgs> | null
2100
+ /**
2101
+ * Choose, which related nodes to fetch as well
2102
+ */
2103
+ include?: Prisma.channel_directoriesInclude<ExtArgs> | null
2104
+ }