@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,1224 @@
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_verbosity` 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_verbosity
17
+ *
18
+ */
19
+ export type channel_verbosityModel = runtime.Types.Result.DefaultSelection<Prisma.$channel_verbosityPayload>
20
+
21
+ export type AggregateChannel_verbosity = {
22
+ _count: Channel_verbosityCountAggregateOutputType | null
23
+ _min: Channel_verbosityMinAggregateOutputType | null
24
+ _max: Channel_verbosityMaxAggregateOutputType | null
25
+ }
26
+
27
+ export type Channel_verbosityMinAggregateOutputType = {
28
+ channel_id: string | null
29
+ verbosity: string | null
30
+ updated_at: Date | null
31
+ }
32
+
33
+ export type Channel_verbosityMaxAggregateOutputType = {
34
+ channel_id: string | null
35
+ verbosity: string | null
36
+ updated_at: Date | null
37
+ }
38
+
39
+ export type Channel_verbosityCountAggregateOutputType = {
40
+ channel_id: number
41
+ verbosity: number
42
+ updated_at: number
43
+ _all: number
44
+ }
45
+
46
+
47
+ export type Channel_verbosityMinAggregateInputType = {
48
+ channel_id?: true
49
+ verbosity?: true
50
+ updated_at?: true
51
+ }
52
+
53
+ export type Channel_verbosityMaxAggregateInputType = {
54
+ channel_id?: true
55
+ verbosity?: true
56
+ updated_at?: true
57
+ }
58
+
59
+ export type Channel_verbosityCountAggregateInputType = {
60
+ channel_id?: true
61
+ verbosity?: true
62
+ updated_at?: true
63
+ _all?: true
64
+ }
65
+
66
+ export type Channel_verbosityAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
67
+ /**
68
+ * Filter which channel_verbosity to aggregate.
69
+ */
70
+ where?: Prisma.channel_verbosityWhereInput
71
+ /**
72
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
73
+ *
74
+ * Determine the order of channel_verbosities to fetch.
75
+ */
76
+ orderBy?: Prisma.channel_verbosityOrderByWithRelationInput | Prisma.channel_verbosityOrderByWithRelationInput[]
77
+ /**
78
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
79
+ *
80
+ * Sets the start position
81
+ */
82
+ cursor?: Prisma.channel_verbosityWhereUniqueInput
83
+ /**
84
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
85
+ *
86
+ * Take `±n` channel_verbosities from the position of the cursor.
87
+ */
88
+ take?: number
89
+ /**
90
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
91
+ *
92
+ * Skip the first `n` channel_verbosities.
93
+ */
94
+ skip?: number
95
+ /**
96
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
97
+ *
98
+ * Count returned channel_verbosities
99
+ **/
100
+ _count?: true | Channel_verbosityCountAggregateInputType
101
+ /**
102
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
103
+ *
104
+ * Select which fields to find the minimum value
105
+ **/
106
+ _min?: Channel_verbosityMinAggregateInputType
107
+ /**
108
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
109
+ *
110
+ * Select which fields to find the maximum value
111
+ **/
112
+ _max?: Channel_verbosityMaxAggregateInputType
113
+ }
114
+
115
+ export type GetChannel_verbosityAggregateType<T extends Channel_verbosityAggregateArgs> = {
116
+ [P in keyof T & keyof AggregateChannel_verbosity]: P extends '_count' | 'count'
117
+ ? T[P] extends true
118
+ ? number
119
+ : Prisma.GetScalarType<T[P], AggregateChannel_verbosity[P]>
120
+ : Prisma.GetScalarType<T[P], AggregateChannel_verbosity[P]>
121
+ }
122
+
123
+
124
+
125
+
126
+ export type channel_verbosityGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
127
+ where?: Prisma.channel_verbosityWhereInput
128
+ orderBy?: Prisma.channel_verbosityOrderByWithAggregationInput | Prisma.channel_verbosityOrderByWithAggregationInput[]
129
+ by: Prisma.Channel_verbosityScalarFieldEnum[] | Prisma.Channel_verbosityScalarFieldEnum
130
+ having?: Prisma.channel_verbosityScalarWhereWithAggregatesInput
131
+ take?: number
132
+ skip?: number
133
+ _count?: Channel_verbosityCountAggregateInputType | true
134
+ _min?: Channel_verbosityMinAggregateInputType
135
+ _max?: Channel_verbosityMaxAggregateInputType
136
+ }
137
+
138
+ export type Channel_verbosityGroupByOutputType = {
139
+ channel_id: string
140
+ verbosity: string
141
+ updated_at: Date | null
142
+ _count: Channel_verbosityCountAggregateOutputType | null
143
+ _min: Channel_verbosityMinAggregateOutputType | null
144
+ _max: Channel_verbosityMaxAggregateOutputType | null
145
+ }
146
+
147
+ type GetChannel_verbosityGroupByPayload<T extends channel_verbosityGroupByArgs> = Prisma.PrismaPromise<
148
+ Array<
149
+ Prisma.PickEnumerable<Channel_verbosityGroupByOutputType, T['by']> &
150
+ {
151
+ [P in ((keyof T) & (keyof Channel_verbosityGroupByOutputType))]: P extends '_count'
152
+ ? T[P] extends boolean
153
+ ? number
154
+ : Prisma.GetScalarType<T[P], Channel_verbosityGroupByOutputType[P]>
155
+ : Prisma.GetScalarType<T[P], Channel_verbosityGroupByOutputType[P]>
156
+ }
157
+ >
158
+ >
159
+
160
+
161
+
162
+ export type channel_verbosityWhereInput = {
163
+ AND?: Prisma.channel_verbosityWhereInput | Prisma.channel_verbosityWhereInput[]
164
+ OR?: Prisma.channel_verbosityWhereInput[]
165
+ NOT?: Prisma.channel_verbosityWhereInput | Prisma.channel_verbosityWhereInput[]
166
+ channel_id?: Prisma.StringFilter<"channel_verbosity"> | string
167
+ verbosity?: Prisma.StringFilter<"channel_verbosity"> | string
168
+ updated_at?: Prisma.DateTimeNullableFilter<"channel_verbosity"> | Date | string | null
169
+ channel?: Prisma.XOR<Prisma.Channel_directoriesScalarRelationFilter, Prisma.channel_directoriesWhereInput>
170
+ }
171
+
172
+ export type channel_verbosityOrderByWithRelationInput = {
173
+ channel_id?: Prisma.SortOrder
174
+ verbosity?: Prisma.SortOrder
175
+ updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
176
+ channel?: Prisma.channel_directoriesOrderByWithRelationInput
177
+ }
178
+
179
+ export type channel_verbosityWhereUniqueInput = Prisma.AtLeast<{
180
+ channel_id?: string
181
+ AND?: Prisma.channel_verbosityWhereInput | Prisma.channel_verbosityWhereInput[]
182
+ OR?: Prisma.channel_verbosityWhereInput[]
183
+ NOT?: Prisma.channel_verbosityWhereInput | Prisma.channel_verbosityWhereInput[]
184
+ verbosity?: Prisma.StringFilter<"channel_verbosity"> | string
185
+ updated_at?: Prisma.DateTimeNullableFilter<"channel_verbosity"> | Date | string | null
186
+ channel?: Prisma.XOR<Prisma.Channel_directoriesScalarRelationFilter, Prisma.channel_directoriesWhereInput>
187
+ }, "channel_id">
188
+
189
+ export type channel_verbosityOrderByWithAggregationInput = {
190
+ channel_id?: Prisma.SortOrder
191
+ verbosity?: Prisma.SortOrder
192
+ updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
193
+ _count?: Prisma.channel_verbosityCountOrderByAggregateInput
194
+ _max?: Prisma.channel_verbosityMaxOrderByAggregateInput
195
+ _min?: Prisma.channel_verbosityMinOrderByAggregateInput
196
+ }
197
+
198
+ export type channel_verbosityScalarWhereWithAggregatesInput = {
199
+ AND?: Prisma.channel_verbosityScalarWhereWithAggregatesInput | Prisma.channel_verbosityScalarWhereWithAggregatesInput[]
200
+ OR?: Prisma.channel_verbosityScalarWhereWithAggregatesInput[]
201
+ NOT?: Prisma.channel_verbosityScalarWhereWithAggregatesInput | Prisma.channel_verbosityScalarWhereWithAggregatesInput[]
202
+ channel_id?: Prisma.StringWithAggregatesFilter<"channel_verbosity"> | string
203
+ verbosity?: Prisma.StringWithAggregatesFilter<"channel_verbosity"> | string
204
+ updated_at?: Prisma.DateTimeNullableWithAggregatesFilter<"channel_verbosity"> | Date | string | null
205
+ }
206
+
207
+ export type channel_verbosityCreateInput = {
208
+ verbosity?: string
209
+ updated_at?: Date | string | null
210
+ channel: Prisma.channel_directoriesCreateNestedOneWithoutChannel_verbosityInput
211
+ }
212
+
213
+ export type channel_verbosityUncheckedCreateInput = {
214
+ channel_id: string
215
+ verbosity?: string
216
+ updated_at?: Date | string | null
217
+ }
218
+
219
+ export type channel_verbosityUpdateInput = {
220
+ verbosity?: Prisma.StringFieldUpdateOperationsInput | string
221
+ updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
222
+ channel?: Prisma.channel_directoriesUpdateOneRequiredWithoutChannel_verbosityNestedInput
223
+ }
224
+
225
+ export type channel_verbosityUncheckedUpdateInput = {
226
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
227
+ verbosity?: Prisma.StringFieldUpdateOperationsInput | string
228
+ updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
229
+ }
230
+
231
+ export type channel_verbosityCreateManyInput = {
232
+ channel_id: string
233
+ verbosity?: string
234
+ updated_at?: Date | string | null
235
+ }
236
+
237
+ export type channel_verbosityUpdateManyMutationInput = {
238
+ verbosity?: Prisma.StringFieldUpdateOperationsInput | string
239
+ updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
240
+ }
241
+
242
+ export type channel_verbosityUncheckedUpdateManyInput = {
243
+ channel_id?: Prisma.StringFieldUpdateOperationsInput | string
244
+ verbosity?: Prisma.StringFieldUpdateOperationsInput | string
245
+ updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
246
+ }
247
+
248
+ export type Channel_verbosityNullableScalarRelationFilter = {
249
+ is?: Prisma.channel_verbosityWhereInput | null
250
+ isNot?: Prisma.channel_verbosityWhereInput | null
251
+ }
252
+
253
+ export type channel_verbosityCountOrderByAggregateInput = {
254
+ channel_id?: Prisma.SortOrder
255
+ verbosity?: Prisma.SortOrder
256
+ updated_at?: Prisma.SortOrder
257
+ }
258
+
259
+ export type channel_verbosityMaxOrderByAggregateInput = {
260
+ channel_id?: Prisma.SortOrder
261
+ verbosity?: Prisma.SortOrder
262
+ updated_at?: Prisma.SortOrder
263
+ }
264
+
265
+ export type channel_verbosityMinOrderByAggregateInput = {
266
+ channel_id?: Prisma.SortOrder
267
+ verbosity?: Prisma.SortOrder
268
+ updated_at?: Prisma.SortOrder
269
+ }
270
+
271
+ export type channel_verbosityCreateNestedOneWithoutChannelInput = {
272
+ create?: Prisma.XOR<Prisma.channel_verbosityCreateWithoutChannelInput, Prisma.channel_verbosityUncheckedCreateWithoutChannelInput>
273
+ connectOrCreate?: Prisma.channel_verbosityCreateOrConnectWithoutChannelInput
274
+ connect?: Prisma.channel_verbosityWhereUniqueInput
275
+ }
276
+
277
+ export type channel_verbosityUncheckedCreateNestedOneWithoutChannelInput = {
278
+ create?: Prisma.XOR<Prisma.channel_verbosityCreateWithoutChannelInput, Prisma.channel_verbosityUncheckedCreateWithoutChannelInput>
279
+ connectOrCreate?: Prisma.channel_verbosityCreateOrConnectWithoutChannelInput
280
+ connect?: Prisma.channel_verbosityWhereUniqueInput
281
+ }
282
+
283
+ export type channel_verbosityUpdateOneWithoutChannelNestedInput = {
284
+ create?: Prisma.XOR<Prisma.channel_verbosityCreateWithoutChannelInput, Prisma.channel_verbosityUncheckedCreateWithoutChannelInput>
285
+ connectOrCreate?: Prisma.channel_verbosityCreateOrConnectWithoutChannelInput
286
+ upsert?: Prisma.channel_verbosityUpsertWithoutChannelInput
287
+ disconnect?: Prisma.channel_verbosityWhereInput | boolean
288
+ delete?: Prisma.channel_verbosityWhereInput | boolean
289
+ connect?: Prisma.channel_verbosityWhereUniqueInput
290
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_verbosityUpdateToOneWithWhereWithoutChannelInput, Prisma.channel_verbosityUpdateWithoutChannelInput>, Prisma.channel_verbosityUncheckedUpdateWithoutChannelInput>
291
+ }
292
+
293
+ export type channel_verbosityUncheckedUpdateOneWithoutChannelNestedInput = {
294
+ create?: Prisma.XOR<Prisma.channel_verbosityCreateWithoutChannelInput, Prisma.channel_verbosityUncheckedCreateWithoutChannelInput>
295
+ connectOrCreate?: Prisma.channel_verbosityCreateOrConnectWithoutChannelInput
296
+ upsert?: Prisma.channel_verbosityUpsertWithoutChannelInput
297
+ disconnect?: Prisma.channel_verbosityWhereInput | boolean
298
+ delete?: Prisma.channel_verbosityWhereInput | boolean
299
+ connect?: Prisma.channel_verbosityWhereUniqueInput
300
+ update?: Prisma.XOR<Prisma.XOR<Prisma.channel_verbosityUpdateToOneWithWhereWithoutChannelInput, Prisma.channel_verbosityUpdateWithoutChannelInput>, Prisma.channel_verbosityUncheckedUpdateWithoutChannelInput>
301
+ }
302
+
303
+ export type channel_verbosityCreateWithoutChannelInput = {
304
+ verbosity?: string
305
+ updated_at?: Date | string | null
306
+ }
307
+
308
+ export type channel_verbosityUncheckedCreateWithoutChannelInput = {
309
+ verbosity?: string
310
+ updated_at?: Date | string | null
311
+ }
312
+
313
+ export type channel_verbosityCreateOrConnectWithoutChannelInput = {
314
+ where: Prisma.channel_verbosityWhereUniqueInput
315
+ create: Prisma.XOR<Prisma.channel_verbosityCreateWithoutChannelInput, Prisma.channel_verbosityUncheckedCreateWithoutChannelInput>
316
+ }
317
+
318
+ export type channel_verbosityUpsertWithoutChannelInput = {
319
+ update: Prisma.XOR<Prisma.channel_verbosityUpdateWithoutChannelInput, Prisma.channel_verbosityUncheckedUpdateWithoutChannelInput>
320
+ create: Prisma.XOR<Prisma.channel_verbosityCreateWithoutChannelInput, Prisma.channel_verbosityUncheckedCreateWithoutChannelInput>
321
+ where?: Prisma.channel_verbosityWhereInput
322
+ }
323
+
324
+ export type channel_verbosityUpdateToOneWithWhereWithoutChannelInput = {
325
+ where?: Prisma.channel_verbosityWhereInput
326
+ data: Prisma.XOR<Prisma.channel_verbosityUpdateWithoutChannelInput, Prisma.channel_verbosityUncheckedUpdateWithoutChannelInput>
327
+ }
328
+
329
+ export type channel_verbosityUpdateWithoutChannelInput = {
330
+ verbosity?: Prisma.StringFieldUpdateOperationsInput | string
331
+ updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
332
+ }
333
+
334
+ export type channel_verbosityUncheckedUpdateWithoutChannelInput = {
335
+ verbosity?: Prisma.StringFieldUpdateOperationsInput | string
336
+ updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
337
+ }
338
+
339
+
340
+
341
+ export type channel_verbositySelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
342
+ channel_id?: boolean
343
+ verbosity?: boolean
344
+ updated_at?: boolean
345
+ channel?: boolean | Prisma.channel_directoriesDefaultArgs<ExtArgs>
346
+ }, ExtArgs["result"]["channel_verbosity"]>
347
+
348
+ export type channel_verbositySelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
349
+ channel_id?: boolean
350
+ verbosity?: boolean
351
+ updated_at?: boolean
352
+ channel?: boolean | Prisma.channel_directoriesDefaultArgs<ExtArgs>
353
+ }, ExtArgs["result"]["channel_verbosity"]>
354
+
355
+ export type channel_verbositySelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
356
+ channel_id?: boolean
357
+ verbosity?: boolean
358
+ updated_at?: boolean
359
+ channel?: boolean | Prisma.channel_directoriesDefaultArgs<ExtArgs>
360
+ }, ExtArgs["result"]["channel_verbosity"]>
361
+
362
+ export type channel_verbositySelectScalar = {
363
+ channel_id?: boolean
364
+ verbosity?: boolean
365
+ updated_at?: boolean
366
+ }
367
+
368
+ export type channel_verbosityOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"channel_id" | "verbosity" | "updated_at", ExtArgs["result"]["channel_verbosity"]>
369
+ export type channel_verbosityInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
370
+ channel?: boolean | Prisma.channel_directoriesDefaultArgs<ExtArgs>
371
+ }
372
+ export type channel_verbosityIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
373
+ channel?: boolean | Prisma.channel_directoriesDefaultArgs<ExtArgs>
374
+ }
375
+ export type channel_verbosityIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
376
+ channel?: boolean | Prisma.channel_directoriesDefaultArgs<ExtArgs>
377
+ }
378
+
379
+ export type $channel_verbosityPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
380
+ name: "channel_verbosity"
381
+ objects: {
382
+ channel: Prisma.$channel_directoriesPayload<ExtArgs>
383
+ }
384
+ scalars: runtime.Types.Extensions.GetPayloadResult<{
385
+ channel_id: string
386
+ verbosity: string
387
+ updated_at: Date | null
388
+ }, ExtArgs["result"]["channel_verbosity"]>
389
+ composites: {}
390
+ }
391
+
392
+ export type channel_verbosityGetPayload<S extends boolean | null | undefined | channel_verbosityDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload, S>
393
+
394
+ export type channel_verbosityCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
395
+ Omit<channel_verbosityFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
396
+ select?: Channel_verbosityCountAggregateInputType | true
397
+ }
398
+
399
+ export interface channel_verbosityDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
400
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['channel_verbosity'], meta: { name: 'channel_verbosity' } }
401
+ /**
402
+ * Find zero or one Channel_verbosity that matches the filter.
403
+ * @param {channel_verbosityFindUniqueArgs} args - Arguments to find a Channel_verbosity
404
+ * @example
405
+ * // Get one Channel_verbosity
406
+ * const channel_verbosity = await prisma.channel_verbosity.findUnique({
407
+ * where: {
408
+ * // ... provide filter here
409
+ * }
410
+ * })
411
+ */
412
+ findUnique<T extends channel_verbosityFindUniqueArgs>(args: Prisma.SelectSubset<T, channel_verbosityFindUniqueArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
413
+
414
+ /**
415
+ * Find one Channel_verbosity that matches the filter or throw an error with `error.code='P2025'`
416
+ * if no matches were found.
417
+ * @param {channel_verbosityFindUniqueOrThrowArgs} args - Arguments to find a Channel_verbosity
418
+ * @example
419
+ * // Get one Channel_verbosity
420
+ * const channel_verbosity = await prisma.channel_verbosity.findUniqueOrThrow({
421
+ * where: {
422
+ * // ... provide filter here
423
+ * }
424
+ * })
425
+ */
426
+ findUniqueOrThrow<T extends channel_verbosityFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, channel_verbosityFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
427
+
428
+ /**
429
+ * Find the first Channel_verbosity that matches the filter.
430
+ * Note, that providing `undefined` is treated as the value not being there.
431
+ * Read more here: https://pris.ly/d/null-undefined
432
+ * @param {channel_verbosityFindFirstArgs} args - Arguments to find a Channel_verbosity
433
+ * @example
434
+ * // Get one Channel_verbosity
435
+ * const channel_verbosity = await prisma.channel_verbosity.findFirst({
436
+ * where: {
437
+ * // ... provide filter here
438
+ * }
439
+ * })
440
+ */
441
+ findFirst<T extends channel_verbosityFindFirstArgs>(args?: Prisma.SelectSubset<T, channel_verbosityFindFirstArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
442
+
443
+ /**
444
+ * Find the first Channel_verbosity that matches the filter or
445
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
446
+ * Note, that providing `undefined` is treated as the value not being there.
447
+ * Read more here: https://pris.ly/d/null-undefined
448
+ * @param {channel_verbosityFindFirstOrThrowArgs} args - Arguments to find a Channel_verbosity
449
+ * @example
450
+ * // Get one Channel_verbosity
451
+ * const channel_verbosity = await prisma.channel_verbosity.findFirstOrThrow({
452
+ * where: {
453
+ * // ... provide filter here
454
+ * }
455
+ * })
456
+ */
457
+ findFirstOrThrow<T extends channel_verbosityFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, channel_verbosityFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
458
+
459
+ /**
460
+ * Find zero or more Channel_verbosities that matches the filter.
461
+ * Note, that providing `undefined` is treated as the value not being there.
462
+ * Read more here: https://pris.ly/d/null-undefined
463
+ * @param {channel_verbosityFindManyArgs} args - Arguments to filter and select certain fields only.
464
+ * @example
465
+ * // Get all Channel_verbosities
466
+ * const channel_verbosities = await prisma.channel_verbosity.findMany()
467
+ *
468
+ * // Get first 10 Channel_verbosities
469
+ * const channel_verbosities = await prisma.channel_verbosity.findMany({ take: 10 })
470
+ *
471
+ * // Only select the `channel_id`
472
+ * const channel_verbosityWithChannel_idOnly = await prisma.channel_verbosity.findMany({ select: { channel_id: true } })
473
+ *
474
+ */
475
+ findMany<T extends channel_verbosityFindManyArgs>(args?: Prisma.SelectSubset<T, channel_verbosityFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
476
+
477
+ /**
478
+ * Create a Channel_verbosity.
479
+ * @param {channel_verbosityCreateArgs} args - Arguments to create a Channel_verbosity.
480
+ * @example
481
+ * // Create one Channel_verbosity
482
+ * const Channel_verbosity = await prisma.channel_verbosity.create({
483
+ * data: {
484
+ * // ... data to create a Channel_verbosity
485
+ * }
486
+ * })
487
+ *
488
+ */
489
+ create<T extends channel_verbosityCreateArgs>(args: Prisma.SelectSubset<T, channel_verbosityCreateArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
490
+
491
+ /**
492
+ * Create many Channel_verbosities.
493
+ * @param {channel_verbosityCreateManyArgs} args - Arguments to create many Channel_verbosities.
494
+ * @example
495
+ * // Create many Channel_verbosities
496
+ * const channel_verbosity = await prisma.channel_verbosity.createMany({
497
+ * data: [
498
+ * // ... provide data here
499
+ * ]
500
+ * })
501
+ *
502
+ */
503
+ createMany<T extends channel_verbosityCreateManyArgs>(args?: Prisma.SelectSubset<T, channel_verbosityCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
504
+
505
+ /**
506
+ * Create many Channel_verbosities and returns the data saved in the database.
507
+ * @param {channel_verbosityCreateManyAndReturnArgs} args - Arguments to create many Channel_verbosities.
508
+ * @example
509
+ * // Create many Channel_verbosities
510
+ * const channel_verbosity = await prisma.channel_verbosity.createManyAndReturn({
511
+ * data: [
512
+ * // ... provide data here
513
+ * ]
514
+ * })
515
+ *
516
+ * // Create many Channel_verbosities and only return the `channel_id`
517
+ * const channel_verbosityWithChannel_idOnly = await prisma.channel_verbosity.createManyAndReturn({
518
+ * select: { channel_id: true },
519
+ * data: [
520
+ * // ... provide data here
521
+ * ]
522
+ * })
523
+ * Note, that providing `undefined` is treated as the value not being there.
524
+ * Read more here: https://pris.ly/d/null-undefined
525
+ *
526
+ */
527
+ createManyAndReturn<T extends channel_verbosityCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, channel_verbosityCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
528
+
529
+ /**
530
+ * Delete a Channel_verbosity.
531
+ * @param {channel_verbosityDeleteArgs} args - Arguments to delete one Channel_verbosity.
532
+ * @example
533
+ * // Delete one Channel_verbosity
534
+ * const Channel_verbosity = await prisma.channel_verbosity.delete({
535
+ * where: {
536
+ * // ... filter to delete one Channel_verbosity
537
+ * }
538
+ * })
539
+ *
540
+ */
541
+ delete<T extends channel_verbosityDeleteArgs>(args: Prisma.SelectSubset<T, channel_verbosityDeleteArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
542
+
543
+ /**
544
+ * Update one Channel_verbosity.
545
+ * @param {channel_verbosityUpdateArgs} args - Arguments to update one Channel_verbosity.
546
+ * @example
547
+ * // Update one Channel_verbosity
548
+ * const channel_verbosity = await prisma.channel_verbosity.update({
549
+ * where: {
550
+ * // ... provide filter here
551
+ * },
552
+ * data: {
553
+ * // ... provide data here
554
+ * }
555
+ * })
556
+ *
557
+ */
558
+ update<T extends channel_verbosityUpdateArgs>(args: Prisma.SelectSubset<T, channel_verbosityUpdateArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
559
+
560
+ /**
561
+ * Delete zero or more Channel_verbosities.
562
+ * @param {channel_verbosityDeleteManyArgs} args - Arguments to filter Channel_verbosities to delete.
563
+ * @example
564
+ * // Delete a few Channel_verbosities
565
+ * const { count } = await prisma.channel_verbosity.deleteMany({
566
+ * where: {
567
+ * // ... provide filter here
568
+ * }
569
+ * })
570
+ *
571
+ */
572
+ deleteMany<T extends channel_verbosityDeleteManyArgs>(args?: Prisma.SelectSubset<T, channel_verbosityDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
573
+
574
+ /**
575
+ * Update zero or more Channel_verbosities.
576
+ * Note, that providing `undefined` is treated as the value not being there.
577
+ * Read more here: https://pris.ly/d/null-undefined
578
+ * @param {channel_verbosityUpdateManyArgs} args - Arguments to update one or more rows.
579
+ * @example
580
+ * // Update many Channel_verbosities
581
+ * const channel_verbosity = await prisma.channel_verbosity.updateMany({
582
+ * where: {
583
+ * // ... provide filter here
584
+ * },
585
+ * data: {
586
+ * // ... provide data here
587
+ * }
588
+ * })
589
+ *
590
+ */
591
+ updateMany<T extends channel_verbosityUpdateManyArgs>(args: Prisma.SelectSubset<T, channel_verbosityUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
592
+
593
+ /**
594
+ * Update zero or more Channel_verbosities and returns the data updated in the database.
595
+ * @param {channel_verbosityUpdateManyAndReturnArgs} args - Arguments to update many Channel_verbosities.
596
+ * @example
597
+ * // Update many Channel_verbosities
598
+ * const channel_verbosity = await prisma.channel_verbosity.updateManyAndReturn({
599
+ * where: {
600
+ * // ... provide filter here
601
+ * },
602
+ * data: [
603
+ * // ... provide data here
604
+ * ]
605
+ * })
606
+ *
607
+ * // Update zero or more Channel_verbosities and only return the `channel_id`
608
+ * const channel_verbosityWithChannel_idOnly = await prisma.channel_verbosity.updateManyAndReturn({
609
+ * select: { channel_id: true },
610
+ * where: {
611
+ * // ... provide filter here
612
+ * },
613
+ * data: [
614
+ * // ... provide data here
615
+ * ]
616
+ * })
617
+ * Note, that providing `undefined` is treated as the value not being there.
618
+ * Read more here: https://pris.ly/d/null-undefined
619
+ *
620
+ */
621
+ updateManyAndReturn<T extends channel_verbosityUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, channel_verbosityUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
622
+
623
+ /**
624
+ * Create or update one Channel_verbosity.
625
+ * @param {channel_verbosityUpsertArgs} args - Arguments to update or create a Channel_verbosity.
626
+ * @example
627
+ * // Update or create a Channel_verbosity
628
+ * const channel_verbosity = await prisma.channel_verbosity.upsert({
629
+ * create: {
630
+ * // ... data to create a Channel_verbosity
631
+ * },
632
+ * update: {
633
+ * // ... in case it already exists, update
634
+ * },
635
+ * where: {
636
+ * // ... the filter for the Channel_verbosity we want to update
637
+ * }
638
+ * })
639
+ */
640
+ upsert<T extends channel_verbosityUpsertArgs>(args: Prisma.SelectSubset<T, channel_verbosityUpsertArgs<ExtArgs>>): Prisma.Prisma__channel_verbosityClient<runtime.Types.Result.GetResult<Prisma.$channel_verbosityPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
641
+
642
+
643
+ /**
644
+ * Count the number of Channel_verbosities.
645
+ * Note, that providing `undefined` is treated as the value not being there.
646
+ * Read more here: https://pris.ly/d/null-undefined
647
+ * @param {channel_verbosityCountArgs} args - Arguments to filter Channel_verbosities to count.
648
+ * @example
649
+ * // Count the number of Channel_verbosities
650
+ * const count = await prisma.channel_verbosity.count({
651
+ * where: {
652
+ * // ... the filter for the Channel_verbosities we want to count
653
+ * }
654
+ * })
655
+ **/
656
+ count<T extends channel_verbosityCountArgs>(
657
+ args?: Prisma.Subset<T, channel_verbosityCountArgs>,
658
+ ): Prisma.PrismaPromise<
659
+ T extends runtime.Types.Utils.Record<'select', any>
660
+ ? T['select'] extends true
661
+ ? number
662
+ : Prisma.GetScalarType<T['select'], Channel_verbosityCountAggregateOutputType>
663
+ : number
664
+ >
665
+
666
+ /**
667
+ * Allows you to perform aggregations operations on a Channel_verbosity.
668
+ * Note, that providing `undefined` is treated as the value not being there.
669
+ * Read more here: https://pris.ly/d/null-undefined
670
+ * @param {Channel_verbosityAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
671
+ * @example
672
+ * // Ordered by age ascending
673
+ * // Where email contains prisma.io
674
+ * // Limited to the 10 users
675
+ * const aggregations = await prisma.user.aggregate({
676
+ * _avg: {
677
+ * age: true,
678
+ * },
679
+ * where: {
680
+ * email: {
681
+ * contains: "prisma.io",
682
+ * },
683
+ * },
684
+ * orderBy: {
685
+ * age: "asc",
686
+ * },
687
+ * take: 10,
688
+ * })
689
+ **/
690
+ aggregate<T extends Channel_verbosityAggregateArgs>(args: Prisma.Subset<T, Channel_verbosityAggregateArgs>): Prisma.PrismaPromise<GetChannel_verbosityAggregateType<T>>
691
+
692
+ /**
693
+ * Group by Channel_verbosity.
694
+ * Note, that providing `undefined` is treated as the value not being there.
695
+ * Read more here: https://pris.ly/d/null-undefined
696
+ * @param {channel_verbosityGroupByArgs} args - Group by arguments.
697
+ * @example
698
+ * // Group by city, order by createdAt, get count
699
+ * const result = await prisma.user.groupBy({
700
+ * by: ['city', 'createdAt'],
701
+ * orderBy: {
702
+ * createdAt: true
703
+ * },
704
+ * _count: {
705
+ * _all: true
706
+ * },
707
+ * })
708
+ *
709
+ **/
710
+ groupBy<
711
+ T extends channel_verbosityGroupByArgs,
712
+ HasSelectOrTake extends Prisma.Or<
713
+ Prisma.Extends<'skip', Prisma.Keys<T>>,
714
+ Prisma.Extends<'take', Prisma.Keys<T>>
715
+ >,
716
+ OrderByArg extends Prisma.True extends HasSelectOrTake
717
+ ? { orderBy: channel_verbosityGroupByArgs['orderBy'] }
718
+ : { orderBy?: channel_verbosityGroupByArgs['orderBy'] },
719
+ OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
720
+ ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
721
+ ByValid extends Prisma.Has<ByFields, OrderFields>,
722
+ HavingFields extends Prisma.GetHavingFields<T['having']>,
723
+ HavingValid extends Prisma.Has<ByFields, HavingFields>,
724
+ ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
725
+ InputErrors extends ByEmpty extends Prisma.True
726
+ ? `Error: "by" must not be empty.`
727
+ : HavingValid extends Prisma.False
728
+ ? {
729
+ [P in HavingFields]: P extends ByFields
730
+ ? never
731
+ : P extends string
732
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
733
+ : [
734
+ Error,
735
+ 'Field ',
736
+ P,
737
+ ` in "having" needs to be provided in "by"`,
738
+ ]
739
+ }[HavingFields]
740
+ : 'take' extends Prisma.Keys<T>
741
+ ? 'orderBy' extends Prisma.Keys<T>
742
+ ? ByValid extends Prisma.True
743
+ ? {}
744
+ : {
745
+ [P in OrderFields]: P extends ByFields
746
+ ? never
747
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
748
+ }[OrderFields]
749
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
750
+ : 'skip' extends Prisma.Keys<T>
751
+ ? 'orderBy' extends Prisma.Keys<T>
752
+ ? ByValid extends Prisma.True
753
+ ? {}
754
+ : {
755
+ [P in OrderFields]: P extends ByFields
756
+ ? never
757
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
758
+ }[OrderFields]
759
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
760
+ : ByValid extends Prisma.True
761
+ ? {}
762
+ : {
763
+ [P in OrderFields]: P extends ByFields
764
+ ? never
765
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
766
+ }[OrderFields]
767
+ >(args: Prisma.SubsetIntersection<T, channel_verbosityGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetChannel_verbosityGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
768
+ /**
769
+ * Fields of the channel_verbosity model
770
+ */
771
+ readonly fields: channel_verbosityFieldRefs;
772
+ }
773
+
774
+ /**
775
+ * The delegate class that acts as a "Promise-like" for channel_verbosity.
776
+ * Why is this prefixed with `Prisma__`?
777
+ * Because we want to prevent naming conflicts as mentioned in
778
+ * https://github.com/prisma/prisma-client-js/issues/707
779
+ */
780
+ export interface Prisma__channel_verbosityClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
781
+ readonly [Symbol.toStringTag]: "PrismaPromise"
782
+ channel<T extends Prisma.channel_directoriesDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.channel_directoriesDefaultArgs<ExtArgs>>): Prisma.Prisma__channel_directoriesClient<runtime.Types.Result.GetResult<Prisma.$channel_directoriesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
783
+ /**
784
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
785
+ * @param onfulfilled The callback to execute when the Promise is resolved.
786
+ * @param onrejected The callback to execute when the Promise is rejected.
787
+ * @returns A Promise for the completion of which ever callback is executed.
788
+ */
789
+ 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>
790
+ /**
791
+ * Attaches a callback for only the rejection of the Promise.
792
+ * @param onrejected The callback to execute when the Promise is rejected.
793
+ * @returns A Promise for the completion of the callback.
794
+ */
795
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
796
+ /**
797
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
798
+ * resolved value cannot be modified from the callback.
799
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
800
+ * @returns A Promise for the completion of the callback.
801
+ */
802
+ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
803
+ }
804
+
805
+
806
+
807
+
808
+ /**
809
+ * Fields of the channel_verbosity model
810
+ */
811
+ export interface channel_verbosityFieldRefs {
812
+ readonly channel_id: Prisma.FieldRef<"channel_verbosity", 'String'>
813
+ readonly verbosity: Prisma.FieldRef<"channel_verbosity", 'String'>
814
+ readonly updated_at: Prisma.FieldRef<"channel_verbosity", 'DateTime'>
815
+ }
816
+
817
+
818
+ // Custom InputTypes
819
+ /**
820
+ * channel_verbosity findUnique
821
+ */
822
+ export type channel_verbosityFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
823
+ /**
824
+ * Select specific fields to fetch from the channel_verbosity
825
+ */
826
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
827
+ /**
828
+ * Omit specific fields from the channel_verbosity
829
+ */
830
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
831
+ /**
832
+ * Choose, which related nodes to fetch as well
833
+ */
834
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
835
+ /**
836
+ * Filter, which channel_verbosity to fetch.
837
+ */
838
+ where: Prisma.channel_verbosityWhereUniqueInput
839
+ }
840
+
841
+ /**
842
+ * channel_verbosity findUniqueOrThrow
843
+ */
844
+ export type channel_verbosityFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
845
+ /**
846
+ * Select specific fields to fetch from the channel_verbosity
847
+ */
848
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
849
+ /**
850
+ * Omit specific fields from the channel_verbosity
851
+ */
852
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
853
+ /**
854
+ * Choose, which related nodes to fetch as well
855
+ */
856
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
857
+ /**
858
+ * Filter, which channel_verbosity to fetch.
859
+ */
860
+ where: Prisma.channel_verbosityWhereUniqueInput
861
+ }
862
+
863
+ /**
864
+ * channel_verbosity findFirst
865
+ */
866
+ export type channel_verbosityFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
867
+ /**
868
+ * Select specific fields to fetch from the channel_verbosity
869
+ */
870
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
871
+ /**
872
+ * Omit specific fields from the channel_verbosity
873
+ */
874
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
875
+ /**
876
+ * Choose, which related nodes to fetch as well
877
+ */
878
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
879
+ /**
880
+ * Filter, which channel_verbosity to fetch.
881
+ */
882
+ where?: Prisma.channel_verbosityWhereInput
883
+ /**
884
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
885
+ *
886
+ * Determine the order of channel_verbosities to fetch.
887
+ */
888
+ orderBy?: Prisma.channel_verbosityOrderByWithRelationInput | Prisma.channel_verbosityOrderByWithRelationInput[]
889
+ /**
890
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
891
+ *
892
+ * Sets the position for searching for channel_verbosities.
893
+ */
894
+ cursor?: Prisma.channel_verbosityWhereUniqueInput
895
+ /**
896
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
897
+ *
898
+ * Take `±n` channel_verbosities from the position of the cursor.
899
+ */
900
+ take?: number
901
+ /**
902
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
903
+ *
904
+ * Skip the first `n` channel_verbosities.
905
+ */
906
+ skip?: number
907
+ /**
908
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
909
+ *
910
+ * Filter by unique combinations of channel_verbosities.
911
+ */
912
+ distinct?: Prisma.Channel_verbosityScalarFieldEnum | Prisma.Channel_verbosityScalarFieldEnum[]
913
+ }
914
+
915
+ /**
916
+ * channel_verbosity findFirstOrThrow
917
+ */
918
+ export type channel_verbosityFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
919
+ /**
920
+ * Select specific fields to fetch from the channel_verbosity
921
+ */
922
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
923
+ /**
924
+ * Omit specific fields from the channel_verbosity
925
+ */
926
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
927
+ /**
928
+ * Choose, which related nodes to fetch as well
929
+ */
930
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
931
+ /**
932
+ * Filter, which channel_verbosity to fetch.
933
+ */
934
+ where?: Prisma.channel_verbosityWhereInput
935
+ /**
936
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
937
+ *
938
+ * Determine the order of channel_verbosities to fetch.
939
+ */
940
+ orderBy?: Prisma.channel_verbosityOrderByWithRelationInput | Prisma.channel_verbosityOrderByWithRelationInput[]
941
+ /**
942
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
943
+ *
944
+ * Sets the position for searching for channel_verbosities.
945
+ */
946
+ cursor?: Prisma.channel_verbosityWhereUniqueInput
947
+ /**
948
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
949
+ *
950
+ * Take `±n` channel_verbosities from the position of the cursor.
951
+ */
952
+ take?: number
953
+ /**
954
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
955
+ *
956
+ * Skip the first `n` channel_verbosities.
957
+ */
958
+ skip?: number
959
+ /**
960
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
961
+ *
962
+ * Filter by unique combinations of channel_verbosities.
963
+ */
964
+ distinct?: Prisma.Channel_verbosityScalarFieldEnum | Prisma.Channel_verbosityScalarFieldEnum[]
965
+ }
966
+
967
+ /**
968
+ * channel_verbosity findMany
969
+ */
970
+ export type channel_verbosityFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
971
+ /**
972
+ * Select specific fields to fetch from the channel_verbosity
973
+ */
974
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
975
+ /**
976
+ * Omit specific fields from the channel_verbosity
977
+ */
978
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
979
+ /**
980
+ * Choose, which related nodes to fetch as well
981
+ */
982
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
983
+ /**
984
+ * Filter, which channel_verbosities to fetch.
985
+ */
986
+ where?: Prisma.channel_verbosityWhereInput
987
+ /**
988
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
989
+ *
990
+ * Determine the order of channel_verbosities to fetch.
991
+ */
992
+ orderBy?: Prisma.channel_verbosityOrderByWithRelationInput | Prisma.channel_verbosityOrderByWithRelationInput[]
993
+ /**
994
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
995
+ *
996
+ * Sets the position for listing channel_verbosities.
997
+ */
998
+ cursor?: Prisma.channel_verbosityWhereUniqueInput
999
+ /**
1000
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1001
+ *
1002
+ * Take `±n` channel_verbosities from the position of the cursor.
1003
+ */
1004
+ take?: number
1005
+ /**
1006
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1007
+ *
1008
+ * Skip the first `n` channel_verbosities.
1009
+ */
1010
+ skip?: number
1011
+ distinct?: Prisma.Channel_verbosityScalarFieldEnum | Prisma.Channel_verbosityScalarFieldEnum[]
1012
+ }
1013
+
1014
+ /**
1015
+ * channel_verbosity create
1016
+ */
1017
+ export type channel_verbosityCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1018
+ /**
1019
+ * Select specific fields to fetch from the channel_verbosity
1020
+ */
1021
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
1022
+ /**
1023
+ * Omit specific fields from the channel_verbosity
1024
+ */
1025
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1026
+ /**
1027
+ * Choose, which related nodes to fetch as well
1028
+ */
1029
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
1030
+ /**
1031
+ * The data needed to create a channel_verbosity.
1032
+ */
1033
+ data: Prisma.XOR<Prisma.channel_verbosityCreateInput, Prisma.channel_verbosityUncheckedCreateInput>
1034
+ }
1035
+
1036
+ /**
1037
+ * channel_verbosity createMany
1038
+ */
1039
+ export type channel_verbosityCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1040
+ /**
1041
+ * The data used to create many channel_verbosities.
1042
+ */
1043
+ data: Prisma.channel_verbosityCreateManyInput | Prisma.channel_verbosityCreateManyInput[]
1044
+ }
1045
+
1046
+ /**
1047
+ * channel_verbosity createManyAndReturn
1048
+ */
1049
+ export type channel_verbosityCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1050
+ /**
1051
+ * Select specific fields to fetch from the channel_verbosity
1052
+ */
1053
+ select?: Prisma.channel_verbositySelectCreateManyAndReturn<ExtArgs> | null
1054
+ /**
1055
+ * Omit specific fields from the channel_verbosity
1056
+ */
1057
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1058
+ /**
1059
+ * The data used to create many channel_verbosities.
1060
+ */
1061
+ data: Prisma.channel_verbosityCreateManyInput | Prisma.channel_verbosityCreateManyInput[]
1062
+ /**
1063
+ * Choose, which related nodes to fetch as well
1064
+ */
1065
+ include?: Prisma.channel_verbosityIncludeCreateManyAndReturn<ExtArgs> | null
1066
+ }
1067
+
1068
+ /**
1069
+ * channel_verbosity update
1070
+ */
1071
+ export type channel_verbosityUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1072
+ /**
1073
+ * Select specific fields to fetch from the channel_verbosity
1074
+ */
1075
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
1076
+ /**
1077
+ * Omit specific fields from the channel_verbosity
1078
+ */
1079
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1080
+ /**
1081
+ * Choose, which related nodes to fetch as well
1082
+ */
1083
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
1084
+ /**
1085
+ * The data needed to update a channel_verbosity.
1086
+ */
1087
+ data: Prisma.XOR<Prisma.channel_verbosityUpdateInput, Prisma.channel_verbosityUncheckedUpdateInput>
1088
+ /**
1089
+ * Choose, which channel_verbosity to update.
1090
+ */
1091
+ where: Prisma.channel_verbosityWhereUniqueInput
1092
+ }
1093
+
1094
+ /**
1095
+ * channel_verbosity updateMany
1096
+ */
1097
+ export type channel_verbosityUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1098
+ /**
1099
+ * The data used to update channel_verbosities.
1100
+ */
1101
+ data: Prisma.XOR<Prisma.channel_verbosityUpdateManyMutationInput, Prisma.channel_verbosityUncheckedUpdateManyInput>
1102
+ /**
1103
+ * Filter which channel_verbosities to update
1104
+ */
1105
+ where?: Prisma.channel_verbosityWhereInput
1106
+ /**
1107
+ * Limit how many channel_verbosities to update.
1108
+ */
1109
+ limit?: number
1110
+ }
1111
+
1112
+ /**
1113
+ * channel_verbosity updateManyAndReturn
1114
+ */
1115
+ export type channel_verbosityUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1116
+ /**
1117
+ * Select specific fields to fetch from the channel_verbosity
1118
+ */
1119
+ select?: Prisma.channel_verbositySelectUpdateManyAndReturn<ExtArgs> | null
1120
+ /**
1121
+ * Omit specific fields from the channel_verbosity
1122
+ */
1123
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1124
+ /**
1125
+ * The data used to update channel_verbosities.
1126
+ */
1127
+ data: Prisma.XOR<Prisma.channel_verbosityUpdateManyMutationInput, Prisma.channel_verbosityUncheckedUpdateManyInput>
1128
+ /**
1129
+ * Filter which channel_verbosities to update
1130
+ */
1131
+ where?: Prisma.channel_verbosityWhereInput
1132
+ /**
1133
+ * Limit how many channel_verbosities to update.
1134
+ */
1135
+ limit?: number
1136
+ /**
1137
+ * Choose, which related nodes to fetch as well
1138
+ */
1139
+ include?: Prisma.channel_verbosityIncludeUpdateManyAndReturn<ExtArgs> | null
1140
+ }
1141
+
1142
+ /**
1143
+ * channel_verbosity upsert
1144
+ */
1145
+ export type channel_verbosityUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1146
+ /**
1147
+ * Select specific fields to fetch from the channel_verbosity
1148
+ */
1149
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
1150
+ /**
1151
+ * Omit specific fields from the channel_verbosity
1152
+ */
1153
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1154
+ /**
1155
+ * Choose, which related nodes to fetch as well
1156
+ */
1157
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
1158
+ /**
1159
+ * The filter to search for the channel_verbosity to update in case it exists.
1160
+ */
1161
+ where: Prisma.channel_verbosityWhereUniqueInput
1162
+ /**
1163
+ * In case the channel_verbosity found by the `where` argument doesn't exist, create a new channel_verbosity with this data.
1164
+ */
1165
+ create: Prisma.XOR<Prisma.channel_verbosityCreateInput, Prisma.channel_verbosityUncheckedCreateInput>
1166
+ /**
1167
+ * In case the channel_verbosity was found with the provided `where` argument, update it with this data.
1168
+ */
1169
+ update: Prisma.XOR<Prisma.channel_verbosityUpdateInput, Prisma.channel_verbosityUncheckedUpdateInput>
1170
+ }
1171
+
1172
+ /**
1173
+ * channel_verbosity delete
1174
+ */
1175
+ export type channel_verbosityDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1176
+ /**
1177
+ * Select specific fields to fetch from the channel_verbosity
1178
+ */
1179
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
1180
+ /**
1181
+ * Omit specific fields from the channel_verbosity
1182
+ */
1183
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1184
+ /**
1185
+ * Choose, which related nodes to fetch as well
1186
+ */
1187
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
1188
+ /**
1189
+ * Filter which channel_verbosity to delete.
1190
+ */
1191
+ where: Prisma.channel_verbosityWhereUniqueInput
1192
+ }
1193
+
1194
+ /**
1195
+ * channel_verbosity deleteMany
1196
+ */
1197
+ export type channel_verbosityDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1198
+ /**
1199
+ * Filter which channel_verbosities to delete
1200
+ */
1201
+ where?: Prisma.channel_verbosityWhereInput
1202
+ /**
1203
+ * Limit how many channel_verbosities to delete.
1204
+ */
1205
+ limit?: number
1206
+ }
1207
+
1208
+ /**
1209
+ * channel_verbosity without action
1210
+ */
1211
+ export type channel_verbosityDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1212
+ /**
1213
+ * Select specific fields to fetch from the channel_verbosity
1214
+ */
1215
+ select?: Prisma.channel_verbositySelect<ExtArgs> | null
1216
+ /**
1217
+ * Omit specific fields from the channel_verbosity
1218
+ */
1219
+ omit?: Prisma.channel_verbosityOmit<ExtArgs> | null
1220
+ /**
1221
+ * Choose, which related nodes to fetch as well
1222
+ */
1223
+ include?: Prisma.channel_verbosityInclude<ExtArgs> | null
1224
+ }