@allbluecn/database 0.4.15 → 0.4.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/browser.ts +20 -0
- package/generated/client.ts +20 -0
- package/generated/commonInputTypes.ts +34 -0
- package/generated/internal/class.ts +44 -4
- package/generated/internal/prismaNamespace.ts +378 -3
- package/generated/internal/prismaNamespaceBrowser.ts +63 -2
- package/generated/models/Iteration.ts +1878 -0
- package/generated/models/IterationAutoSchedule.ts +1485 -0
- package/generated/models/KnowledgeBase.ts +138 -0
- package/generated/models/Project.ts +484 -0
- package/generated/models/ProjectKnowledgeBase.ts +1430 -0
- package/generated/models/Story.ts +663 -3
- package/generated/models/StoryAttachment.ts +110 -1
- package/generated/models/StoryExternalLink.ts +1352 -0
- package/generated/models/User.ts +618 -0
- package/generated/models.ts +4 -0
- package/generated-sqlite/browser.ts +20 -0
- package/generated-sqlite/client.ts +20 -0
- package/generated-sqlite/internal/class.ts +44 -4
- package/generated-sqlite/internal/prismaNamespace.ts +374 -2
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +73 -1
- package/generated-sqlite/models/Iteration.ts +1874 -0
- package/generated-sqlite/models/IterationAutoSchedule.ts +1483 -0
- package/generated-sqlite/models/KnowledgeBase.ts +138 -0
- package/generated-sqlite/models/Project.ts +634 -0
- package/generated-sqlite/models/ProjectKnowledgeBase.ts +1426 -0
- package/generated-sqlite/models/Story.ts +3263 -0
- package/generated-sqlite/models/User.ts +2103 -107
- package/generated-sqlite/models.ts +4 -0
- package/index.ts +2 -2
- package/migrations/20260831063744_project_knowledge_base/migration.sql +24 -0
- package/migrations/20260831123150_story_external_link/migration.sql +19 -0
- package/migrations/20260831151740_story_attachment_bytes/migration.sql +2 -0
- package/migrations/20260831203925_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901010000_story_attachment_description/migration.sql +2 -0
- package/migrations/20260901020000_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901134601_iterations/migration.sql +52 -0
- package/migrations/20260902000000_story_identifier_per_project/migration.sql +37 -0
- package/migrations/20260902000100_story_identifier_counter_init/migration.sql +11 -0
- package/package.json +12 -5
- package/schema.prisma +98 -17
- package/schema.sqlite.prisma +112 -9
|
@@ -0,0 +1,1430 @@
|
|
|
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 `ProjectKnowledgeBase` 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"
|
|
13
|
+
import type * as Prisma from "../internal/prismaNamespace"
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Model ProjectKnowledgeBase
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
export type ProjectKnowledgeBaseModel = runtime.Types.Result.DefaultSelection<Prisma.$ProjectKnowledgeBasePayload>
|
|
20
|
+
|
|
21
|
+
export type AggregateProjectKnowledgeBase = {
|
|
22
|
+
_count: ProjectKnowledgeBaseCountAggregateOutputType | null
|
|
23
|
+
_min: ProjectKnowledgeBaseMinAggregateOutputType | null
|
|
24
|
+
_max: ProjectKnowledgeBaseMaxAggregateOutputType | null
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export type ProjectKnowledgeBaseMinAggregateOutputType = {
|
|
28
|
+
id: string | null
|
|
29
|
+
projectId: string | null
|
|
30
|
+
kbId: string | null
|
|
31
|
+
createdAt: Date | null
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type ProjectKnowledgeBaseMaxAggregateOutputType = {
|
|
35
|
+
id: string | null
|
|
36
|
+
projectId: string | null
|
|
37
|
+
kbId: string | null
|
|
38
|
+
createdAt: Date | null
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export type ProjectKnowledgeBaseCountAggregateOutputType = {
|
|
42
|
+
id: number
|
|
43
|
+
projectId: number
|
|
44
|
+
kbId: number
|
|
45
|
+
createdAt: number
|
|
46
|
+
_all: number
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
export type ProjectKnowledgeBaseMinAggregateInputType = {
|
|
51
|
+
id?: true
|
|
52
|
+
projectId?: true
|
|
53
|
+
kbId?: true
|
|
54
|
+
createdAt?: true
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export type ProjectKnowledgeBaseMaxAggregateInputType = {
|
|
58
|
+
id?: true
|
|
59
|
+
projectId?: true
|
|
60
|
+
kbId?: true
|
|
61
|
+
createdAt?: true
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export type ProjectKnowledgeBaseCountAggregateInputType = {
|
|
65
|
+
id?: true
|
|
66
|
+
projectId?: true
|
|
67
|
+
kbId?: true
|
|
68
|
+
createdAt?: true
|
|
69
|
+
_all?: true
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export type ProjectKnowledgeBaseAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
73
|
+
/**
|
|
74
|
+
* Filter which ProjectKnowledgeBase to aggregate.
|
|
75
|
+
*/
|
|
76
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
77
|
+
/**
|
|
78
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
79
|
+
*
|
|
80
|
+
* Determine the order of ProjectKnowledgeBases to fetch.
|
|
81
|
+
*/
|
|
82
|
+
orderBy?: Prisma.ProjectKnowledgeBaseOrderByWithRelationInput | Prisma.ProjectKnowledgeBaseOrderByWithRelationInput[]
|
|
83
|
+
/**
|
|
84
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
85
|
+
*
|
|
86
|
+
* Sets the start position
|
|
87
|
+
*/
|
|
88
|
+
cursor?: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
89
|
+
/**
|
|
90
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
91
|
+
*
|
|
92
|
+
* Take `±n` ProjectKnowledgeBases from the position of the cursor.
|
|
93
|
+
*/
|
|
94
|
+
take?: number
|
|
95
|
+
/**
|
|
96
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
97
|
+
*
|
|
98
|
+
* Skip the first `n` ProjectKnowledgeBases.
|
|
99
|
+
*/
|
|
100
|
+
skip?: number
|
|
101
|
+
/**
|
|
102
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
103
|
+
*
|
|
104
|
+
* Count returned ProjectKnowledgeBases
|
|
105
|
+
**/
|
|
106
|
+
_count?: true | ProjectKnowledgeBaseCountAggregateInputType
|
|
107
|
+
/**
|
|
108
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
109
|
+
*
|
|
110
|
+
* Select which fields to find the minimum value
|
|
111
|
+
**/
|
|
112
|
+
_min?: ProjectKnowledgeBaseMinAggregateInputType
|
|
113
|
+
/**
|
|
114
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
115
|
+
*
|
|
116
|
+
* Select which fields to find the maximum value
|
|
117
|
+
**/
|
|
118
|
+
_max?: ProjectKnowledgeBaseMaxAggregateInputType
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export type GetProjectKnowledgeBaseAggregateType<T extends ProjectKnowledgeBaseAggregateArgs> = {
|
|
122
|
+
[P in keyof T & keyof AggregateProjectKnowledgeBase]: P extends '_count' | 'count'
|
|
123
|
+
? T[P] extends true
|
|
124
|
+
? number
|
|
125
|
+
: Prisma.GetScalarType<T[P], AggregateProjectKnowledgeBase[P]>
|
|
126
|
+
: Prisma.GetScalarType<T[P], AggregateProjectKnowledgeBase[P]>
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
export type ProjectKnowledgeBaseGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
133
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
134
|
+
orderBy?: Prisma.ProjectKnowledgeBaseOrderByWithAggregationInput | Prisma.ProjectKnowledgeBaseOrderByWithAggregationInput[]
|
|
135
|
+
by: Prisma.ProjectKnowledgeBaseScalarFieldEnum[] | Prisma.ProjectKnowledgeBaseScalarFieldEnum
|
|
136
|
+
having?: Prisma.ProjectKnowledgeBaseScalarWhereWithAggregatesInput
|
|
137
|
+
take?: number
|
|
138
|
+
skip?: number
|
|
139
|
+
_count?: ProjectKnowledgeBaseCountAggregateInputType | true
|
|
140
|
+
_min?: ProjectKnowledgeBaseMinAggregateInputType
|
|
141
|
+
_max?: ProjectKnowledgeBaseMaxAggregateInputType
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export type ProjectKnowledgeBaseGroupByOutputType = {
|
|
145
|
+
id: string
|
|
146
|
+
projectId: string
|
|
147
|
+
kbId: string
|
|
148
|
+
createdAt: Date
|
|
149
|
+
_count: ProjectKnowledgeBaseCountAggregateOutputType | null
|
|
150
|
+
_min: ProjectKnowledgeBaseMinAggregateOutputType | null
|
|
151
|
+
_max: ProjectKnowledgeBaseMaxAggregateOutputType | null
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export type GetProjectKnowledgeBaseGroupByPayload<T extends ProjectKnowledgeBaseGroupByArgs> = Prisma.PrismaPromise<
|
|
155
|
+
Array<
|
|
156
|
+
Prisma.PickEnumerable<ProjectKnowledgeBaseGroupByOutputType, T['by']> &
|
|
157
|
+
{
|
|
158
|
+
[P in ((keyof T) & (keyof ProjectKnowledgeBaseGroupByOutputType))]: P extends '_count'
|
|
159
|
+
? T[P] extends boolean
|
|
160
|
+
? number
|
|
161
|
+
: Prisma.GetScalarType<T[P], ProjectKnowledgeBaseGroupByOutputType[P]>
|
|
162
|
+
: Prisma.GetScalarType<T[P], ProjectKnowledgeBaseGroupByOutputType[P]>
|
|
163
|
+
}
|
|
164
|
+
>
|
|
165
|
+
>
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
export type ProjectKnowledgeBaseWhereInput = {
|
|
170
|
+
AND?: Prisma.ProjectKnowledgeBaseWhereInput | Prisma.ProjectKnowledgeBaseWhereInput[]
|
|
171
|
+
OR?: Prisma.ProjectKnowledgeBaseWhereInput[]
|
|
172
|
+
NOT?: Prisma.ProjectKnowledgeBaseWhereInput | Prisma.ProjectKnowledgeBaseWhereInput[]
|
|
173
|
+
id?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
174
|
+
projectId?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
175
|
+
kbId?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
176
|
+
createdAt?: Prisma.DateTimeFilter<"ProjectKnowledgeBase"> | Date | string
|
|
177
|
+
project?: Prisma.XOR<Prisma.ProjectScalarRelationFilter, Prisma.ProjectWhereInput>
|
|
178
|
+
kb?: Prisma.XOR<Prisma.KnowledgeBaseScalarRelationFilter, Prisma.KnowledgeBaseWhereInput>
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export type ProjectKnowledgeBaseOrderByWithRelationInput = {
|
|
182
|
+
id?: Prisma.SortOrder
|
|
183
|
+
projectId?: Prisma.SortOrder
|
|
184
|
+
kbId?: Prisma.SortOrder
|
|
185
|
+
createdAt?: Prisma.SortOrder
|
|
186
|
+
project?: Prisma.ProjectOrderByWithRelationInput
|
|
187
|
+
kb?: Prisma.KnowledgeBaseOrderByWithRelationInput
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export type ProjectKnowledgeBaseWhereUniqueInput = Prisma.AtLeast<{
|
|
191
|
+
id?: string
|
|
192
|
+
projectId_kbId?: Prisma.ProjectKnowledgeBaseProjectIdKbIdCompoundUniqueInput
|
|
193
|
+
AND?: Prisma.ProjectKnowledgeBaseWhereInput | Prisma.ProjectKnowledgeBaseWhereInput[]
|
|
194
|
+
OR?: Prisma.ProjectKnowledgeBaseWhereInput[]
|
|
195
|
+
NOT?: Prisma.ProjectKnowledgeBaseWhereInput | Prisma.ProjectKnowledgeBaseWhereInput[]
|
|
196
|
+
projectId?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
197
|
+
kbId?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
198
|
+
createdAt?: Prisma.DateTimeFilter<"ProjectKnowledgeBase"> | Date | string
|
|
199
|
+
project?: Prisma.XOR<Prisma.ProjectScalarRelationFilter, Prisma.ProjectWhereInput>
|
|
200
|
+
kb?: Prisma.XOR<Prisma.KnowledgeBaseScalarRelationFilter, Prisma.KnowledgeBaseWhereInput>
|
|
201
|
+
}, "id" | "projectId_kbId">
|
|
202
|
+
|
|
203
|
+
export type ProjectKnowledgeBaseOrderByWithAggregationInput = {
|
|
204
|
+
id?: Prisma.SortOrder
|
|
205
|
+
projectId?: Prisma.SortOrder
|
|
206
|
+
kbId?: Prisma.SortOrder
|
|
207
|
+
createdAt?: Prisma.SortOrder
|
|
208
|
+
_count?: Prisma.ProjectKnowledgeBaseCountOrderByAggregateInput
|
|
209
|
+
_max?: Prisma.ProjectKnowledgeBaseMaxOrderByAggregateInput
|
|
210
|
+
_min?: Prisma.ProjectKnowledgeBaseMinOrderByAggregateInput
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export type ProjectKnowledgeBaseScalarWhereWithAggregatesInput = {
|
|
214
|
+
AND?: Prisma.ProjectKnowledgeBaseScalarWhereWithAggregatesInput | Prisma.ProjectKnowledgeBaseScalarWhereWithAggregatesInput[]
|
|
215
|
+
OR?: Prisma.ProjectKnowledgeBaseScalarWhereWithAggregatesInput[]
|
|
216
|
+
NOT?: Prisma.ProjectKnowledgeBaseScalarWhereWithAggregatesInput | Prisma.ProjectKnowledgeBaseScalarWhereWithAggregatesInput[]
|
|
217
|
+
id?: Prisma.StringWithAggregatesFilter<"ProjectKnowledgeBase"> | string
|
|
218
|
+
projectId?: Prisma.StringWithAggregatesFilter<"ProjectKnowledgeBase"> | string
|
|
219
|
+
kbId?: Prisma.StringWithAggregatesFilter<"ProjectKnowledgeBase"> | string
|
|
220
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"ProjectKnowledgeBase"> | Date | string
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export type ProjectKnowledgeBaseCreateInput = {
|
|
224
|
+
id?: string
|
|
225
|
+
createdAt?: Date | string
|
|
226
|
+
project: Prisma.ProjectCreateNestedOneWithoutKnowledgeBasesInput
|
|
227
|
+
kb: Prisma.KnowledgeBaseCreateNestedOneWithoutProjectLinksInput
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export type ProjectKnowledgeBaseUncheckedCreateInput = {
|
|
231
|
+
id?: string
|
|
232
|
+
projectId: string
|
|
233
|
+
kbId: string
|
|
234
|
+
createdAt?: Date | string
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
export type ProjectKnowledgeBaseUpdateInput = {
|
|
238
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
239
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
240
|
+
project?: Prisma.ProjectUpdateOneRequiredWithoutKnowledgeBasesNestedInput
|
|
241
|
+
kb?: Prisma.KnowledgeBaseUpdateOneRequiredWithoutProjectLinksNestedInput
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export type ProjectKnowledgeBaseUncheckedUpdateInput = {
|
|
245
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
246
|
+
projectId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
247
|
+
kbId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
248
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export type ProjectKnowledgeBaseCreateManyInput = {
|
|
252
|
+
id?: string
|
|
253
|
+
projectId: string
|
|
254
|
+
kbId: string
|
|
255
|
+
createdAt?: Date | string
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export type ProjectKnowledgeBaseUpdateManyMutationInput = {
|
|
259
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
260
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export type ProjectKnowledgeBaseUncheckedUpdateManyInput = {
|
|
264
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
265
|
+
projectId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
266
|
+
kbId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
267
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
export type ProjectKnowledgeBaseListRelationFilter = {
|
|
271
|
+
every?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
272
|
+
some?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
273
|
+
none?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export type ProjectKnowledgeBaseOrderByRelationAggregateInput = {
|
|
277
|
+
_count?: Prisma.SortOrder
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
export type ProjectKnowledgeBaseProjectIdKbIdCompoundUniqueInput = {
|
|
281
|
+
projectId: string
|
|
282
|
+
kbId: string
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export type ProjectKnowledgeBaseCountOrderByAggregateInput = {
|
|
286
|
+
id?: Prisma.SortOrder
|
|
287
|
+
projectId?: Prisma.SortOrder
|
|
288
|
+
kbId?: Prisma.SortOrder
|
|
289
|
+
createdAt?: Prisma.SortOrder
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
export type ProjectKnowledgeBaseMaxOrderByAggregateInput = {
|
|
293
|
+
id?: Prisma.SortOrder
|
|
294
|
+
projectId?: Prisma.SortOrder
|
|
295
|
+
kbId?: Prisma.SortOrder
|
|
296
|
+
createdAt?: Prisma.SortOrder
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
export type ProjectKnowledgeBaseMinOrderByAggregateInput = {
|
|
300
|
+
id?: Prisma.SortOrder
|
|
301
|
+
projectId?: Prisma.SortOrder
|
|
302
|
+
kbId?: Prisma.SortOrder
|
|
303
|
+
createdAt?: Prisma.SortOrder
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
export type ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput = {
|
|
307
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput> | Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput[]
|
|
308
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput[]
|
|
309
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyProjectInputEnvelope
|
|
310
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export type ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput = {
|
|
314
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput> | Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput[]
|
|
315
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput[]
|
|
316
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyProjectInputEnvelope
|
|
317
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export type ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput = {
|
|
321
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput> | Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput[]
|
|
322
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput[]
|
|
323
|
+
upsert?: Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutProjectInput | Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutProjectInput[]
|
|
324
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyProjectInputEnvelope
|
|
325
|
+
set?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
326
|
+
disconnect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
327
|
+
delete?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
328
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
329
|
+
update?: Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutProjectInput | Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutProjectInput[]
|
|
330
|
+
updateMany?: Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutProjectInput | Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutProjectInput[]
|
|
331
|
+
deleteMany?: Prisma.ProjectKnowledgeBaseScalarWhereInput | Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export type ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput = {
|
|
335
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput> | Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput[]
|
|
336
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput[]
|
|
337
|
+
upsert?: Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutProjectInput | Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutProjectInput[]
|
|
338
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyProjectInputEnvelope
|
|
339
|
+
set?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
340
|
+
disconnect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
341
|
+
delete?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
342
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
343
|
+
update?: Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutProjectInput | Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutProjectInput[]
|
|
344
|
+
updateMany?: Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutProjectInput | Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutProjectInput[]
|
|
345
|
+
deleteMany?: Prisma.ProjectKnowledgeBaseScalarWhereInput | Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export type ProjectKnowledgeBaseCreateNestedManyWithoutKbInput = {
|
|
349
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput> | Prisma.ProjectKnowledgeBaseCreateWithoutKbInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput[]
|
|
350
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput[]
|
|
351
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyKbInputEnvelope
|
|
352
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export type ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutKbInput = {
|
|
356
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput> | Prisma.ProjectKnowledgeBaseCreateWithoutKbInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput[]
|
|
357
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput[]
|
|
358
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyKbInputEnvelope
|
|
359
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export type ProjectKnowledgeBaseUpdateManyWithoutKbNestedInput = {
|
|
363
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput> | Prisma.ProjectKnowledgeBaseCreateWithoutKbInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput[]
|
|
364
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput[]
|
|
365
|
+
upsert?: Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutKbInput | Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutKbInput[]
|
|
366
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyKbInputEnvelope
|
|
367
|
+
set?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
368
|
+
disconnect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
369
|
+
delete?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
370
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
371
|
+
update?: Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutKbInput | Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutKbInput[]
|
|
372
|
+
updateMany?: Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutKbInput | Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutKbInput[]
|
|
373
|
+
deleteMany?: Prisma.ProjectKnowledgeBaseScalarWhereInput | Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
export type ProjectKnowledgeBaseUncheckedUpdateManyWithoutKbNestedInput = {
|
|
377
|
+
create?: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput> | Prisma.ProjectKnowledgeBaseCreateWithoutKbInput[] | Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput[]
|
|
378
|
+
connectOrCreate?: Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput | Prisma.ProjectKnowledgeBaseCreateOrConnectWithoutKbInput[]
|
|
379
|
+
upsert?: Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutKbInput | Prisma.ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutKbInput[]
|
|
380
|
+
createMany?: Prisma.ProjectKnowledgeBaseCreateManyKbInputEnvelope
|
|
381
|
+
set?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
382
|
+
disconnect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
383
|
+
delete?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
384
|
+
connect?: Prisma.ProjectKnowledgeBaseWhereUniqueInput | Prisma.ProjectKnowledgeBaseWhereUniqueInput[]
|
|
385
|
+
update?: Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutKbInput | Prisma.ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutKbInput[]
|
|
386
|
+
updateMany?: Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutKbInput | Prisma.ProjectKnowledgeBaseUpdateManyWithWhereWithoutKbInput[]
|
|
387
|
+
deleteMany?: Prisma.ProjectKnowledgeBaseScalarWhereInput | Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
export type ProjectKnowledgeBaseCreateWithoutProjectInput = {
|
|
391
|
+
id?: string
|
|
392
|
+
createdAt?: Date | string
|
|
393
|
+
kb: Prisma.KnowledgeBaseCreateNestedOneWithoutProjectLinksInput
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
export type ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput = {
|
|
397
|
+
id?: string
|
|
398
|
+
kbId: string
|
|
399
|
+
createdAt?: Date | string
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
export type ProjectKnowledgeBaseCreateOrConnectWithoutProjectInput = {
|
|
403
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
404
|
+
create: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput>
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export type ProjectKnowledgeBaseCreateManyProjectInputEnvelope = {
|
|
408
|
+
data: Prisma.ProjectKnowledgeBaseCreateManyProjectInput | Prisma.ProjectKnowledgeBaseCreateManyProjectInput[]
|
|
409
|
+
skipDuplicates?: boolean
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
export type ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutProjectInput = {
|
|
413
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
414
|
+
update: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateWithoutProjectInput>
|
|
415
|
+
create: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutProjectInput>
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
export type ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutProjectInput = {
|
|
419
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
420
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateWithoutProjectInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateWithoutProjectInput>
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
export type ProjectKnowledgeBaseUpdateManyWithWhereWithoutProjectInput = {
|
|
424
|
+
where: Prisma.ProjectKnowledgeBaseScalarWhereInput
|
|
425
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateManyMutationInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectInput>
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export type ProjectKnowledgeBaseScalarWhereInput = {
|
|
429
|
+
AND?: Prisma.ProjectKnowledgeBaseScalarWhereInput | Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
430
|
+
OR?: Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
431
|
+
NOT?: Prisma.ProjectKnowledgeBaseScalarWhereInput | Prisma.ProjectKnowledgeBaseScalarWhereInput[]
|
|
432
|
+
id?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
433
|
+
projectId?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
434
|
+
kbId?: Prisma.StringFilter<"ProjectKnowledgeBase"> | string
|
|
435
|
+
createdAt?: Prisma.DateTimeFilter<"ProjectKnowledgeBase"> | Date | string
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export type ProjectKnowledgeBaseCreateWithoutKbInput = {
|
|
439
|
+
id?: string
|
|
440
|
+
createdAt?: Date | string
|
|
441
|
+
project: Prisma.ProjectCreateNestedOneWithoutKnowledgeBasesInput
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
export type ProjectKnowledgeBaseUncheckedCreateWithoutKbInput = {
|
|
445
|
+
id?: string
|
|
446
|
+
projectId: string
|
|
447
|
+
createdAt?: Date | string
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export type ProjectKnowledgeBaseCreateOrConnectWithoutKbInput = {
|
|
451
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
452
|
+
create: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput>
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export type ProjectKnowledgeBaseCreateManyKbInputEnvelope = {
|
|
456
|
+
data: Prisma.ProjectKnowledgeBaseCreateManyKbInput | Prisma.ProjectKnowledgeBaseCreateManyKbInput[]
|
|
457
|
+
skipDuplicates?: boolean
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
export type ProjectKnowledgeBaseUpsertWithWhereUniqueWithoutKbInput = {
|
|
461
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
462
|
+
update: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateWithoutKbInput>
|
|
463
|
+
create: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedCreateWithoutKbInput>
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
export type ProjectKnowledgeBaseUpdateWithWhereUniqueWithoutKbInput = {
|
|
467
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
468
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateWithoutKbInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateWithoutKbInput>
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
export type ProjectKnowledgeBaseUpdateManyWithWhereWithoutKbInput = {
|
|
472
|
+
where: Prisma.ProjectKnowledgeBaseScalarWhereInput
|
|
473
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateManyMutationInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutKbInput>
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
export type ProjectKnowledgeBaseCreateManyProjectInput = {
|
|
477
|
+
id?: string
|
|
478
|
+
kbId: string
|
|
479
|
+
createdAt?: Date | string
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export type ProjectKnowledgeBaseUpdateWithoutProjectInput = {
|
|
483
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
484
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
485
|
+
kb?: Prisma.KnowledgeBaseUpdateOneRequiredWithoutProjectLinksNestedInput
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
export type ProjectKnowledgeBaseUncheckedUpdateWithoutProjectInput = {
|
|
489
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
490
|
+
kbId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
491
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
export type ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectInput = {
|
|
495
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
496
|
+
kbId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
497
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
export type ProjectKnowledgeBaseCreateManyKbInput = {
|
|
501
|
+
id?: string
|
|
502
|
+
projectId: string
|
|
503
|
+
createdAt?: Date | string
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
export type ProjectKnowledgeBaseUpdateWithoutKbInput = {
|
|
507
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
508
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
509
|
+
project?: Prisma.ProjectUpdateOneRequiredWithoutKnowledgeBasesNestedInput
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
export type ProjectKnowledgeBaseUncheckedUpdateWithoutKbInput = {
|
|
513
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
514
|
+
projectId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
515
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
export type ProjectKnowledgeBaseUncheckedUpdateManyWithoutKbInput = {
|
|
519
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
520
|
+
projectId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
521
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
export type ProjectKnowledgeBaseSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
527
|
+
id?: boolean
|
|
528
|
+
projectId?: boolean
|
|
529
|
+
kbId?: boolean
|
|
530
|
+
createdAt?: boolean
|
|
531
|
+
project?: boolean | Prisma.ProjectDefaultArgs<ExtArgs>
|
|
532
|
+
kb?: boolean | Prisma.KnowledgeBaseDefaultArgs<ExtArgs>
|
|
533
|
+
}, ExtArgs["result"]["projectKnowledgeBase"]>
|
|
534
|
+
|
|
535
|
+
export type ProjectKnowledgeBaseSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
536
|
+
id?: boolean
|
|
537
|
+
projectId?: boolean
|
|
538
|
+
kbId?: boolean
|
|
539
|
+
createdAt?: boolean
|
|
540
|
+
project?: boolean | Prisma.ProjectDefaultArgs<ExtArgs>
|
|
541
|
+
kb?: boolean | Prisma.KnowledgeBaseDefaultArgs<ExtArgs>
|
|
542
|
+
}, ExtArgs["result"]["projectKnowledgeBase"]>
|
|
543
|
+
|
|
544
|
+
export type ProjectKnowledgeBaseSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
545
|
+
id?: boolean
|
|
546
|
+
projectId?: boolean
|
|
547
|
+
kbId?: boolean
|
|
548
|
+
createdAt?: boolean
|
|
549
|
+
project?: boolean | Prisma.ProjectDefaultArgs<ExtArgs>
|
|
550
|
+
kb?: boolean | Prisma.KnowledgeBaseDefaultArgs<ExtArgs>
|
|
551
|
+
}, ExtArgs["result"]["projectKnowledgeBase"]>
|
|
552
|
+
|
|
553
|
+
export type ProjectKnowledgeBaseSelectScalar = {
|
|
554
|
+
id?: boolean
|
|
555
|
+
projectId?: boolean
|
|
556
|
+
kbId?: boolean
|
|
557
|
+
createdAt?: boolean
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export type ProjectKnowledgeBaseOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "projectId" | "kbId" | "createdAt", ExtArgs["result"]["projectKnowledgeBase"]>
|
|
561
|
+
export type ProjectKnowledgeBaseInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
562
|
+
project?: boolean | Prisma.ProjectDefaultArgs<ExtArgs>
|
|
563
|
+
kb?: boolean | Prisma.KnowledgeBaseDefaultArgs<ExtArgs>
|
|
564
|
+
}
|
|
565
|
+
export type ProjectKnowledgeBaseIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
566
|
+
project?: boolean | Prisma.ProjectDefaultArgs<ExtArgs>
|
|
567
|
+
kb?: boolean | Prisma.KnowledgeBaseDefaultArgs<ExtArgs>
|
|
568
|
+
}
|
|
569
|
+
export type ProjectKnowledgeBaseIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
570
|
+
project?: boolean | Prisma.ProjectDefaultArgs<ExtArgs>
|
|
571
|
+
kb?: boolean | Prisma.KnowledgeBaseDefaultArgs<ExtArgs>
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
export type $ProjectKnowledgeBasePayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
575
|
+
name: "ProjectKnowledgeBase"
|
|
576
|
+
objects: {
|
|
577
|
+
project: Prisma.$ProjectPayload<ExtArgs>
|
|
578
|
+
kb: Prisma.$KnowledgeBasePayload<ExtArgs>
|
|
579
|
+
}
|
|
580
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
581
|
+
id: string
|
|
582
|
+
projectId: string
|
|
583
|
+
kbId: string
|
|
584
|
+
createdAt: Date
|
|
585
|
+
}, ExtArgs["result"]["projectKnowledgeBase"]>
|
|
586
|
+
composites: {}
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
export type ProjectKnowledgeBaseGetPayload<S extends boolean | null | undefined | ProjectKnowledgeBaseDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload, S>
|
|
590
|
+
|
|
591
|
+
export type ProjectKnowledgeBaseCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
|
|
592
|
+
Omit<ProjectKnowledgeBaseFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
593
|
+
select?: ProjectKnowledgeBaseCountAggregateInputType | true
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
export interface ProjectKnowledgeBaseDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
597
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['ProjectKnowledgeBase'], meta: { name: 'ProjectKnowledgeBase' } }
|
|
598
|
+
/**
|
|
599
|
+
* Find zero or one ProjectKnowledgeBase that matches the filter.
|
|
600
|
+
* @param {ProjectKnowledgeBaseFindUniqueArgs} args - Arguments to find a ProjectKnowledgeBase
|
|
601
|
+
* @example
|
|
602
|
+
* // Get one ProjectKnowledgeBase
|
|
603
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.findUnique({
|
|
604
|
+
* where: {
|
|
605
|
+
* // ... provide filter here
|
|
606
|
+
* }
|
|
607
|
+
* })
|
|
608
|
+
*/
|
|
609
|
+
findUnique<T extends ProjectKnowledgeBaseFindUniqueArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseFindUniqueArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
610
|
+
|
|
611
|
+
/**
|
|
612
|
+
* Find one ProjectKnowledgeBase that matches the filter or throw an error with `error.code='P2025'`
|
|
613
|
+
* if no matches were found.
|
|
614
|
+
* @param {ProjectKnowledgeBaseFindUniqueOrThrowArgs} args - Arguments to find a ProjectKnowledgeBase
|
|
615
|
+
* @example
|
|
616
|
+
* // Get one ProjectKnowledgeBase
|
|
617
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.findUniqueOrThrow({
|
|
618
|
+
* where: {
|
|
619
|
+
* // ... provide filter here
|
|
620
|
+
* }
|
|
621
|
+
* })
|
|
622
|
+
*/
|
|
623
|
+
findUniqueOrThrow<T extends ProjectKnowledgeBaseFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* Find the first ProjectKnowledgeBase that matches the filter.
|
|
627
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
628
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
629
|
+
* @param {ProjectKnowledgeBaseFindFirstArgs} args - Arguments to find a ProjectKnowledgeBase
|
|
630
|
+
* @example
|
|
631
|
+
* // Get one ProjectKnowledgeBase
|
|
632
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.findFirst({
|
|
633
|
+
* where: {
|
|
634
|
+
* // ... provide filter here
|
|
635
|
+
* }
|
|
636
|
+
* })
|
|
637
|
+
*/
|
|
638
|
+
findFirst<T extends ProjectKnowledgeBaseFindFirstArgs>(args?: Prisma.SelectSubset<T, ProjectKnowledgeBaseFindFirstArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* Find the first ProjectKnowledgeBase that matches the filter or
|
|
642
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
643
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
644
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
645
|
+
* @param {ProjectKnowledgeBaseFindFirstOrThrowArgs} args - Arguments to find a ProjectKnowledgeBase
|
|
646
|
+
* @example
|
|
647
|
+
* // Get one ProjectKnowledgeBase
|
|
648
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.findFirstOrThrow({
|
|
649
|
+
* where: {
|
|
650
|
+
* // ... provide filter here
|
|
651
|
+
* }
|
|
652
|
+
* })
|
|
653
|
+
*/
|
|
654
|
+
findFirstOrThrow<T extends ProjectKnowledgeBaseFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, ProjectKnowledgeBaseFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* Find zero or more ProjectKnowledgeBases that matches the filter.
|
|
658
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
659
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
660
|
+
* @param {ProjectKnowledgeBaseFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
661
|
+
* @example
|
|
662
|
+
* // Get all ProjectKnowledgeBases
|
|
663
|
+
* const projectKnowledgeBases = await prisma.projectKnowledgeBase.findMany()
|
|
664
|
+
*
|
|
665
|
+
* // Get first 10 ProjectKnowledgeBases
|
|
666
|
+
* const projectKnowledgeBases = await prisma.projectKnowledgeBase.findMany({ take: 10 })
|
|
667
|
+
*
|
|
668
|
+
* // Only select the `id`
|
|
669
|
+
* const projectKnowledgeBaseWithIdOnly = await prisma.projectKnowledgeBase.findMany({ select: { id: true } })
|
|
670
|
+
*
|
|
671
|
+
*/
|
|
672
|
+
findMany<T extends ProjectKnowledgeBaseFindManyArgs>(args?: Prisma.SelectSubset<T, ProjectKnowledgeBaseFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* Create a ProjectKnowledgeBase.
|
|
676
|
+
* @param {ProjectKnowledgeBaseCreateArgs} args - Arguments to create a ProjectKnowledgeBase.
|
|
677
|
+
* @example
|
|
678
|
+
* // Create one ProjectKnowledgeBase
|
|
679
|
+
* const ProjectKnowledgeBase = await prisma.projectKnowledgeBase.create({
|
|
680
|
+
* data: {
|
|
681
|
+
* // ... data to create a ProjectKnowledgeBase
|
|
682
|
+
* }
|
|
683
|
+
* })
|
|
684
|
+
*
|
|
685
|
+
*/
|
|
686
|
+
create<T extends ProjectKnowledgeBaseCreateArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseCreateArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
687
|
+
|
|
688
|
+
/**
|
|
689
|
+
* Create many ProjectKnowledgeBases.
|
|
690
|
+
* @param {ProjectKnowledgeBaseCreateManyArgs} args - Arguments to create many ProjectKnowledgeBases.
|
|
691
|
+
* @example
|
|
692
|
+
* // Create many ProjectKnowledgeBases
|
|
693
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.createMany({
|
|
694
|
+
* data: [
|
|
695
|
+
* // ... provide data here
|
|
696
|
+
* ]
|
|
697
|
+
* })
|
|
698
|
+
*
|
|
699
|
+
*/
|
|
700
|
+
createMany<T extends ProjectKnowledgeBaseCreateManyArgs>(args?: Prisma.SelectSubset<T, ProjectKnowledgeBaseCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Create many ProjectKnowledgeBases and returns the data saved in the database.
|
|
704
|
+
* @param {ProjectKnowledgeBaseCreateManyAndReturnArgs} args - Arguments to create many ProjectKnowledgeBases.
|
|
705
|
+
* @example
|
|
706
|
+
* // Create many ProjectKnowledgeBases
|
|
707
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.createManyAndReturn({
|
|
708
|
+
* data: [
|
|
709
|
+
* // ... provide data here
|
|
710
|
+
* ]
|
|
711
|
+
* })
|
|
712
|
+
*
|
|
713
|
+
* // Create many ProjectKnowledgeBases and only return the `id`
|
|
714
|
+
* const projectKnowledgeBaseWithIdOnly = await prisma.projectKnowledgeBase.createManyAndReturn({
|
|
715
|
+
* select: { id: true },
|
|
716
|
+
* data: [
|
|
717
|
+
* // ... provide data here
|
|
718
|
+
* ]
|
|
719
|
+
* })
|
|
720
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
721
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
722
|
+
*
|
|
723
|
+
*/
|
|
724
|
+
createManyAndReturn<T extends ProjectKnowledgeBaseCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, ProjectKnowledgeBaseCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* Delete a ProjectKnowledgeBase.
|
|
728
|
+
* @param {ProjectKnowledgeBaseDeleteArgs} args - Arguments to delete one ProjectKnowledgeBase.
|
|
729
|
+
* @example
|
|
730
|
+
* // Delete one ProjectKnowledgeBase
|
|
731
|
+
* const ProjectKnowledgeBase = await prisma.projectKnowledgeBase.delete({
|
|
732
|
+
* where: {
|
|
733
|
+
* // ... filter to delete one ProjectKnowledgeBase
|
|
734
|
+
* }
|
|
735
|
+
* })
|
|
736
|
+
*
|
|
737
|
+
*/
|
|
738
|
+
delete<T extends ProjectKnowledgeBaseDeleteArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseDeleteArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* Update one ProjectKnowledgeBase.
|
|
742
|
+
* @param {ProjectKnowledgeBaseUpdateArgs} args - Arguments to update one ProjectKnowledgeBase.
|
|
743
|
+
* @example
|
|
744
|
+
* // Update one ProjectKnowledgeBase
|
|
745
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.update({
|
|
746
|
+
* where: {
|
|
747
|
+
* // ... provide filter here
|
|
748
|
+
* },
|
|
749
|
+
* data: {
|
|
750
|
+
* // ... provide data here
|
|
751
|
+
* }
|
|
752
|
+
* })
|
|
753
|
+
*
|
|
754
|
+
*/
|
|
755
|
+
update<T extends ProjectKnowledgeBaseUpdateArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseUpdateArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* Delete zero or more ProjectKnowledgeBases.
|
|
759
|
+
* @param {ProjectKnowledgeBaseDeleteManyArgs} args - Arguments to filter ProjectKnowledgeBases to delete.
|
|
760
|
+
* @example
|
|
761
|
+
* // Delete a few ProjectKnowledgeBases
|
|
762
|
+
* const { count } = await prisma.projectKnowledgeBase.deleteMany({
|
|
763
|
+
* where: {
|
|
764
|
+
* // ... provide filter here
|
|
765
|
+
* }
|
|
766
|
+
* })
|
|
767
|
+
*
|
|
768
|
+
*/
|
|
769
|
+
deleteMany<T extends ProjectKnowledgeBaseDeleteManyArgs>(args?: Prisma.SelectSubset<T, ProjectKnowledgeBaseDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* Update zero or more ProjectKnowledgeBases.
|
|
773
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
774
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
775
|
+
* @param {ProjectKnowledgeBaseUpdateManyArgs} args - Arguments to update one or more rows.
|
|
776
|
+
* @example
|
|
777
|
+
* // Update many ProjectKnowledgeBases
|
|
778
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.updateMany({
|
|
779
|
+
* where: {
|
|
780
|
+
* // ... provide filter here
|
|
781
|
+
* },
|
|
782
|
+
* data: {
|
|
783
|
+
* // ... provide data here
|
|
784
|
+
* }
|
|
785
|
+
* })
|
|
786
|
+
*
|
|
787
|
+
*/
|
|
788
|
+
updateMany<T extends ProjectKnowledgeBaseUpdateManyArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* Update zero or more ProjectKnowledgeBases and returns the data updated in the database.
|
|
792
|
+
* @param {ProjectKnowledgeBaseUpdateManyAndReturnArgs} args - Arguments to update many ProjectKnowledgeBases.
|
|
793
|
+
* @example
|
|
794
|
+
* // Update many ProjectKnowledgeBases
|
|
795
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.updateManyAndReturn({
|
|
796
|
+
* where: {
|
|
797
|
+
* // ... provide filter here
|
|
798
|
+
* },
|
|
799
|
+
* data: [
|
|
800
|
+
* // ... provide data here
|
|
801
|
+
* ]
|
|
802
|
+
* })
|
|
803
|
+
*
|
|
804
|
+
* // Update zero or more ProjectKnowledgeBases and only return the `id`
|
|
805
|
+
* const projectKnowledgeBaseWithIdOnly = await prisma.projectKnowledgeBase.updateManyAndReturn({
|
|
806
|
+
* select: { id: true },
|
|
807
|
+
* where: {
|
|
808
|
+
* // ... provide filter here
|
|
809
|
+
* },
|
|
810
|
+
* data: [
|
|
811
|
+
* // ... provide data here
|
|
812
|
+
* ]
|
|
813
|
+
* })
|
|
814
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
815
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
816
|
+
*
|
|
817
|
+
*/
|
|
818
|
+
updateManyAndReturn<T extends ProjectKnowledgeBaseUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
819
|
+
|
|
820
|
+
/**
|
|
821
|
+
* Create or update one ProjectKnowledgeBase.
|
|
822
|
+
* @param {ProjectKnowledgeBaseUpsertArgs} args - Arguments to update or create a ProjectKnowledgeBase.
|
|
823
|
+
* @example
|
|
824
|
+
* // Update or create a ProjectKnowledgeBase
|
|
825
|
+
* const projectKnowledgeBase = await prisma.projectKnowledgeBase.upsert({
|
|
826
|
+
* create: {
|
|
827
|
+
* // ... data to create a ProjectKnowledgeBase
|
|
828
|
+
* },
|
|
829
|
+
* update: {
|
|
830
|
+
* // ... in case it already exists, update
|
|
831
|
+
* },
|
|
832
|
+
* where: {
|
|
833
|
+
* // ... the filter for the ProjectKnowledgeBase we want to update
|
|
834
|
+
* }
|
|
835
|
+
* })
|
|
836
|
+
*/
|
|
837
|
+
upsert<T extends ProjectKnowledgeBaseUpsertArgs>(args: Prisma.SelectSubset<T, ProjectKnowledgeBaseUpsertArgs<ExtArgs>>): Prisma.Prisma__ProjectKnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
/**
|
|
841
|
+
* Count the number of ProjectKnowledgeBases.
|
|
842
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
843
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
844
|
+
* @param {ProjectKnowledgeBaseCountArgs} args - Arguments to filter ProjectKnowledgeBases to count.
|
|
845
|
+
* @example
|
|
846
|
+
* // Count the number of ProjectKnowledgeBases
|
|
847
|
+
* const count = await prisma.projectKnowledgeBase.count({
|
|
848
|
+
* where: {
|
|
849
|
+
* // ... the filter for the ProjectKnowledgeBases we want to count
|
|
850
|
+
* }
|
|
851
|
+
* })
|
|
852
|
+
**/
|
|
853
|
+
count<T extends ProjectKnowledgeBaseCountArgs>(
|
|
854
|
+
args?: Prisma.Subset<T, ProjectKnowledgeBaseCountArgs>,
|
|
855
|
+
): Prisma.PrismaPromise<
|
|
856
|
+
T extends runtime.Types.Utils.Record<'select', any>
|
|
857
|
+
? T['select'] extends true
|
|
858
|
+
? number
|
|
859
|
+
: Prisma.GetScalarType<T['select'], ProjectKnowledgeBaseCountAggregateOutputType>
|
|
860
|
+
: number
|
|
861
|
+
>
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Allows you to perform aggregations operations on a ProjectKnowledgeBase.
|
|
865
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
866
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
867
|
+
* @param {ProjectKnowledgeBaseAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
868
|
+
* @example
|
|
869
|
+
* // Ordered by age ascending
|
|
870
|
+
* // Where email contains prisma.io
|
|
871
|
+
* // Limited to the 10 users
|
|
872
|
+
* const aggregations = await prisma.user.aggregate({
|
|
873
|
+
* _avg: {
|
|
874
|
+
* age: true,
|
|
875
|
+
* },
|
|
876
|
+
* where: {
|
|
877
|
+
* email: {
|
|
878
|
+
* contains: "prisma.io",
|
|
879
|
+
* },
|
|
880
|
+
* },
|
|
881
|
+
* orderBy: {
|
|
882
|
+
* age: "asc",
|
|
883
|
+
* },
|
|
884
|
+
* take: 10,
|
|
885
|
+
* })
|
|
886
|
+
**/
|
|
887
|
+
aggregate<T extends ProjectKnowledgeBaseAggregateArgs>(args: Prisma.Subset<T, ProjectKnowledgeBaseAggregateArgs>): Prisma.PrismaPromise<GetProjectKnowledgeBaseAggregateType<T>>
|
|
888
|
+
|
|
889
|
+
/**
|
|
890
|
+
* Group by ProjectKnowledgeBase.
|
|
891
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
892
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
893
|
+
* @param {ProjectKnowledgeBaseGroupByArgs} args - Group by arguments.
|
|
894
|
+
* @example
|
|
895
|
+
* // Group by city, order by createdAt, get count
|
|
896
|
+
* const result = await prisma.user.groupBy({
|
|
897
|
+
* by: ['city', 'createdAt'],
|
|
898
|
+
* orderBy: {
|
|
899
|
+
* createdAt: true
|
|
900
|
+
* },
|
|
901
|
+
* _count: {
|
|
902
|
+
* _all: true
|
|
903
|
+
* },
|
|
904
|
+
* })
|
|
905
|
+
*
|
|
906
|
+
**/
|
|
907
|
+
groupBy<
|
|
908
|
+
T extends ProjectKnowledgeBaseGroupByArgs,
|
|
909
|
+
HasSelectOrTake extends Prisma.Or<
|
|
910
|
+
Prisma.Extends<'skip', Prisma.Keys<T>>,
|
|
911
|
+
Prisma.Extends<'take', Prisma.Keys<T>>
|
|
912
|
+
>,
|
|
913
|
+
OrderByArg extends Prisma.True extends HasSelectOrTake
|
|
914
|
+
? { orderBy: ProjectKnowledgeBaseGroupByArgs['orderBy'] }
|
|
915
|
+
: { orderBy?: ProjectKnowledgeBaseGroupByArgs['orderBy'] },
|
|
916
|
+
OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
|
|
917
|
+
ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
|
|
918
|
+
ByValid extends Prisma.Has<ByFields, OrderFields>,
|
|
919
|
+
HavingFields extends Prisma.GetHavingFields<T['having']>,
|
|
920
|
+
HavingValid extends Prisma.Has<ByFields, HavingFields>,
|
|
921
|
+
ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
|
|
922
|
+
InputErrors extends ByEmpty extends Prisma.True
|
|
923
|
+
? `Error: "by" must not be empty.`
|
|
924
|
+
: HavingValid extends Prisma.False
|
|
925
|
+
? {
|
|
926
|
+
[P in HavingFields]: P extends ByFields
|
|
927
|
+
? never
|
|
928
|
+
: P extends string
|
|
929
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
930
|
+
: [
|
|
931
|
+
Error,
|
|
932
|
+
'Field ',
|
|
933
|
+
P,
|
|
934
|
+
` in "having" needs to be provided in "by"`,
|
|
935
|
+
]
|
|
936
|
+
}[HavingFields]
|
|
937
|
+
: 'take' extends Prisma.Keys<T>
|
|
938
|
+
? 'orderBy' extends Prisma.Keys<T>
|
|
939
|
+
? ByValid extends Prisma.True
|
|
940
|
+
? {}
|
|
941
|
+
: {
|
|
942
|
+
[P in OrderFields]: P extends ByFields
|
|
943
|
+
? never
|
|
944
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
945
|
+
}[OrderFields]
|
|
946
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
947
|
+
: 'skip' extends Prisma.Keys<T>
|
|
948
|
+
? 'orderBy' extends Prisma.Keys<T>
|
|
949
|
+
? ByValid extends Prisma.True
|
|
950
|
+
? {}
|
|
951
|
+
: {
|
|
952
|
+
[P in OrderFields]: P extends ByFields
|
|
953
|
+
? never
|
|
954
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
955
|
+
}[OrderFields]
|
|
956
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
957
|
+
: ByValid extends Prisma.True
|
|
958
|
+
? {}
|
|
959
|
+
: {
|
|
960
|
+
[P in OrderFields]: P extends ByFields
|
|
961
|
+
? never
|
|
962
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
963
|
+
}[OrderFields]
|
|
964
|
+
>(args: Prisma.SubsetIntersection<T, ProjectKnowledgeBaseGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetProjectKnowledgeBaseGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
965
|
+
/**
|
|
966
|
+
* Fields of the ProjectKnowledgeBase model
|
|
967
|
+
*/
|
|
968
|
+
readonly fields: ProjectKnowledgeBaseFieldRefs;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* The delegate class that acts as a "Promise-like" for ProjectKnowledgeBase.
|
|
973
|
+
* Why is this prefixed with `Prisma__`?
|
|
974
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
975
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
976
|
+
*/
|
|
977
|
+
export interface Prisma__ProjectKnowledgeBaseClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
978
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
979
|
+
project<T extends Prisma.ProjectDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.ProjectDefaultArgs<ExtArgs>>): Prisma.Prisma__ProjectClient<runtime.Types.Result.GetResult<Prisma.$ProjectPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
980
|
+
kb<T extends Prisma.KnowledgeBaseDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.KnowledgeBaseDefaultArgs<ExtArgs>>): Prisma.Prisma__KnowledgeBaseClient<runtime.Types.Result.GetResult<Prisma.$KnowledgeBasePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
981
|
+
/**
|
|
982
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
983
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
984
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
985
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
986
|
+
*/
|
|
987
|
+
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>
|
|
988
|
+
/**
|
|
989
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
990
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
991
|
+
* @returns A Promise for the completion of the callback.
|
|
992
|
+
*/
|
|
993
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
|
|
994
|
+
/**
|
|
995
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
996
|
+
* resolved value cannot be modified from the callback.
|
|
997
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
998
|
+
* @returns A Promise for the completion of the callback.
|
|
999
|
+
*/
|
|
1000
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* Fields of the ProjectKnowledgeBase model
|
|
1008
|
+
*/
|
|
1009
|
+
export interface ProjectKnowledgeBaseFieldRefs {
|
|
1010
|
+
readonly id: Prisma.FieldRef<"ProjectKnowledgeBase", 'String'>
|
|
1011
|
+
readonly projectId: Prisma.FieldRef<"ProjectKnowledgeBase", 'String'>
|
|
1012
|
+
readonly kbId: Prisma.FieldRef<"ProjectKnowledgeBase", 'String'>
|
|
1013
|
+
readonly createdAt: Prisma.FieldRef<"ProjectKnowledgeBase", 'DateTime'>
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
// Custom InputTypes
|
|
1018
|
+
/**
|
|
1019
|
+
* ProjectKnowledgeBase findUnique
|
|
1020
|
+
*/
|
|
1021
|
+
export type ProjectKnowledgeBaseFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1022
|
+
/**
|
|
1023
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1024
|
+
*/
|
|
1025
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1026
|
+
/**
|
|
1027
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1028
|
+
*/
|
|
1029
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1030
|
+
/**
|
|
1031
|
+
* Choose, which related nodes to fetch as well
|
|
1032
|
+
*/
|
|
1033
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1034
|
+
/**
|
|
1035
|
+
* Filter, which ProjectKnowledgeBase to fetch.
|
|
1036
|
+
*/
|
|
1037
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
/**
|
|
1041
|
+
* ProjectKnowledgeBase findUniqueOrThrow
|
|
1042
|
+
*/
|
|
1043
|
+
export type ProjectKnowledgeBaseFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1044
|
+
/**
|
|
1045
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1046
|
+
*/
|
|
1047
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1048
|
+
/**
|
|
1049
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1050
|
+
*/
|
|
1051
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1052
|
+
/**
|
|
1053
|
+
* Choose, which related nodes to fetch as well
|
|
1054
|
+
*/
|
|
1055
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1056
|
+
/**
|
|
1057
|
+
* Filter, which ProjectKnowledgeBase to fetch.
|
|
1058
|
+
*/
|
|
1059
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
/**
|
|
1063
|
+
* ProjectKnowledgeBase findFirst
|
|
1064
|
+
*/
|
|
1065
|
+
export type ProjectKnowledgeBaseFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1066
|
+
/**
|
|
1067
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1068
|
+
*/
|
|
1069
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1070
|
+
/**
|
|
1071
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1072
|
+
*/
|
|
1073
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1074
|
+
/**
|
|
1075
|
+
* Choose, which related nodes to fetch as well
|
|
1076
|
+
*/
|
|
1077
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1078
|
+
/**
|
|
1079
|
+
* Filter, which ProjectKnowledgeBase to fetch.
|
|
1080
|
+
*/
|
|
1081
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
1082
|
+
/**
|
|
1083
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1084
|
+
*
|
|
1085
|
+
* Determine the order of ProjectKnowledgeBases to fetch.
|
|
1086
|
+
*/
|
|
1087
|
+
orderBy?: Prisma.ProjectKnowledgeBaseOrderByWithRelationInput | Prisma.ProjectKnowledgeBaseOrderByWithRelationInput[]
|
|
1088
|
+
/**
|
|
1089
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1090
|
+
*
|
|
1091
|
+
* Sets the position for searching for ProjectKnowledgeBases.
|
|
1092
|
+
*/
|
|
1093
|
+
cursor?: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1094
|
+
/**
|
|
1095
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1096
|
+
*
|
|
1097
|
+
* Take `±n` ProjectKnowledgeBases from the position of the cursor.
|
|
1098
|
+
*/
|
|
1099
|
+
take?: number
|
|
1100
|
+
/**
|
|
1101
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1102
|
+
*
|
|
1103
|
+
* Skip the first `n` ProjectKnowledgeBases.
|
|
1104
|
+
*/
|
|
1105
|
+
skip?: number
|
|
1106
|
+
/**
|
|
1107
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1108
|
+
*
|
|
1109
|
+
* Filter by unique combinations of ProjectKnowledgeBases.
|
|
1110
|
+
*/
|
|
1111
|
+
distinct?: Prisma.ProjectKnowledgeBaseScalarFieldEnum | Prisma.ProjectKnowledgeBaseScalarFieldEnum[]
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
/**
|
|
1115
|
+
* ProjectKnowledgeBase findFirstOrThrow
|
|
1116
|
+
*/
|
|
1117
|
+
export type ProjectKnowledgeBaseFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1118
|
+
/**
|
|
1119
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1120
|
+
*/
|
|
1121
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1122
|
+
/**
|
|
1123
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1124
|
+
*/
|
|
1125
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1126
|
+
/**
|
|
1127
|
+
* Choose, which related nodes to fetch as well
|
|
1128
|
+
*/
|
|
1129
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1130
|
+
/**
|
|
1131
|
+
* Filter, which ProjectKnowledgeBase to fetch.
|
|
1132
|
+
*/
|
|
1133
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
1134
|
+
/**
|
|
1135
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1136
|
+
*
|
|
1137
|
+
* Determine the order of ProjectKnowledgeBases to fetch.
|
|
1138
|
+
*/
|
|
1139
|
+
orderBy?: Prisma.ProjectKnowledgeBaseOrderByWithRelationInput | Prisma.ProjectKnowledgeBaseOrderByWithRelationInput[]
|
|
1140
|
+
/**
|
|
1141
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1142
|
+
*
|
|
1143
|
+
* Sets the position for searching for ProjectKnowledgeBases.
|
|
1144
|
+
*/
|
|
1145
|
+
cursor?: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1146
|
+
/**
|
|
1147
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1148
|
+
*
|
|
1149
|
+
* Take `±n` ProjectKnowledgeBases from the position of the cursor.
|
|
1150
|
+
*/
|
|
1151
|
+
take?: number
|
|
1152
|
+
/**
|
|
1153
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1154
|
+
*
|
|
1155
|
+
* Skip the first `n` ProjectKnowledgeBases.
|
|
1156
|
+
*/
|
|
1157
|
+
skip?: number
|
|
1158
|
+
/**
|
|
1159
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1160
|
+
*
|
|
1161
|
+
* Filter by unique combinations of ProjectKnowledgeBases.
|
|
1162
|
+
*/
|
|
1163
|
+
distinct?: Prisma.ProjectKnowledgeBaseScalarFieldEnum | Prisma.ProjectKnowledgeBaseScalarFieldEnum[]
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
/**
|
|
1167
|
+
* ProjectKnowledgeBase findMany
|
|
1168
|
+
*/
|
|
1169
|
+
export type ProjectKnowledgeBaseFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1170
|
+
/**
|
|
1171
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1172
|
+
*/
|
|
1173
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1174
|
+
/**
|
|
1175
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1176
|
+
*/
|
|
1177
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1178
|
+
/**
|
|
1179
|
+
* Choose, which related nodes to fetch as well
|
|
1180
|
+
*/
|
|
1181
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1182
|
+
/**
|
|
1183
|
+
* Filter, which ProjectKnowledgeBases to fetch.
|
|
1184
|
+
*/
|
|
1185
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
1186
|
+
/**
|
|
1187
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1188
|
+
*
|
|
1189
|
+
* Determine the order of ProjectKnowledgeBases to fetch.
|
|
1190
|
+
*/
|
|
1191
|
+
orderBy?: Prisma.ProjectKnowledgeBaseOrderByWithRelationInput | Prisma.ProjectKnowledgeBaseOrderByWithRelationInput[]
|
|
1192
|
+
/**
|
|
1193
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1194
|
+
*
|
|
1195
|
+
* Sets the position for listing ProjectKnowledgeBases.
|
|
1196
|
+
*/
|
|
1197
|
+
cursor?: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1198
|
+
/**
|
|
1199
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1200
|
+
*
|
|
1201
|
+
* Take `±n` ProjectKnowledgeBases from the position of the cursor.
|
|
1202
|
+
*/
|
|
1203
|
+
take?: number
|
|
1204
|
+
/**
|
|
1205
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1206
|
+
*
|
|
1207
|
+
* Skip the first `n` ProjectKnowledgeBases.
|
|
1208
|
+
*/
|
|
1209
|
+
skip?: number
|
|
1210
|
+
/**
|
|
1211
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1212
|
+
*
|
|
1213
|
+
* Filter by unique combinations of ProjectKnowledgeBases.
|
|
1214
|
+
*/
|
|
1215
|
+
distinct?: Prisma.ProjectKnowledgeBaseScalarFieldEnum | Prisma.ProjectKnowledgeBaseScalarFieldEnum[]
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* ProjectKnowledgeBase create
|
|
1220
|
+
*/
|
|
1221
|
+
export type ProjectKnowledgeBaseCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1222
|
+
/**
|
|
1223
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1224
|
+
*/
|
|
1225
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1226
|
+
/**
|
|
1227
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1228
|
+
*/
|
|
1229
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1230
|
+
/**
|
|
1231
|
+
* Choose, which related nodes to fetch as well
|
|
1232
|
+
*/
|
|
1233
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1234
|
+
/**
|
|
1235
|
+
* The data needed to create a ProjectKnowledgeBase.
|
|
1236
|
+
*/
|
|
1237
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateInput, Prisma.ProjectKnowledgeBaseUncheckedCreateInput>
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
/**
|
|
1241
|
+
* ProjectKnowledgeBase createMany
|
|
1242
|
+
*/
|
|
1243
|
+
export type ProjectKnowledgeBaseCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1244
|
+
/**
|
|
1245
|
+
* The data used to create many ProjectKnowledgeBases.
|
|
1246
|
+
*/
|
|
1247
|
+
data: Prisma.ProjectKnowledgeBaseCreateManyInput | Prisma.ProjectKnowledgeBaseCreateManyInput[]
|
|
1248
|
+
skipDuplicates?: boolean
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
/**
|
|
1252
|
+
* ProjectKnowledgeBase createManyAndReturn
|
|
1253
|
+
*/
|
|
1254
|
+
export type ProjectKnowledgeBaseCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1255
|
+
/**
|
|
1256
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1257
|
+
*/
|
|
1258
|
+
select?: Prisma.ProjectKnowledgeBaseSelectCreateManyAndReturn<ExtArgs> | null
|
|
1259
|
+
/**
|
|
1260
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1261
|
+
*/
|
|
1262
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1263
|
+
/**
|
|
1264
|
+
* The data used to create many ProjectKnowledgeBases.
|
|
1265
|
+
*/
|
|
1266
|
+
data: Prisma.ProjectKnowledgeBaseCreateManyInput | Prisma.ProjectKnowledgeBaseCreateManyInput[]
|
|
1267
|
+
skipDuplicates?: boolean
|
|
1268
|
+
/**
|
|
1269
|
+
* Choose, which related nodes to fetch as well
|
|
1270
|
+
*/
|
|
1271
|
+
include?: Prisma.ProjectKnowledgeBaseIncludeCreateManyAndReturn<ExtArgs> | null
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
/**
|
|
1275
|
+
* ProjectKnowledgeBase update
|
|
1276
|
+
*/
|
|
1277
|
+
export type ProjectKnowledgeBaseUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1278
|
+
/**
|
|
1279
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1280
|
+
*/
|
|
1281
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1282
|
+
/**
|
|
1283
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1284
|
+
*/
|
|
1285
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1286
|
+
/**
|
|
1287
|
+
* Choose, which related nodes to fetch as well
|
|
1288
|
+
*/
|
|
1289
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1290
|
+
/**
|
|
1291
|
+
* The data needed to update a ProjectKnowledgeBase.
|
|
1292
|
+
*/
|
|
1293
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateInput>
|
|
1294
|
+
/**
|
|
1295
|
+
* Choose, which ProjectKnowledgeBase to update.
|
|
1296
|
+
*/
|
|
1297
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
/**
|
|
1301
|
+
* ProjectKnowledgeBase updateMany
|
|
1302
|
+
*/
|
|
1303
|
+
export type ProjectKnowledgeBaseUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1304
|
+
/**
|
|
1305
|
+
* The data used to update ProjectKnowledgeBases.
|
|
1306
|
+
*/
|
|
1307
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateManyMutationInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateManyInput>
|
|
1308
|
+
/**
|
|
1309
|
+
* Filter which ProjectKnowledgeBases to update
|
|
1310
|
+
*/
|
|
1311
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
1312
|
+
/**
|
|
1313
|
+
* Limit how many ProjectKnowledgeBases to update.
|
|
1314
|
+
*/
|
|
1315
|
+
limit?: number
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
/**
|
|
1319
|
+
* ProjectKnowledgeBase updateManyAndReturn
|
|
1320
|
+
*/
|
|
1321
|
+
export type ProjectKnowledgeBaseUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1322
|
+
/**
|
|
1323
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1324
|
+
*/
|
|
1325
|
+
select?: Prisma.ProjectKnowledgeBaseSelectUpdateManyAndReturn<ExtArgs> | null
|
|
1326
|
+
/**
|
|
1327
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1328
|
+
*/
|
|
1329
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1330
|
+
/**
|
|
1331
|
+
* The data used to update ProjectKnowledgeBases.
|
|
1332
|
+
*/
|
|
1333
|
+
data: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateManyMutationInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateManyInput>
|
|
1334
|
+
/**
|
|
1335
|
+
* Filter which ProjectKnowledgeBases to update
|
|
1336
|
+
*/
|
|
1337
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
1338
|
+
/**
|
|
1339
|
+
* Limit how many ProjectKnowledgeBases to update.
|
|
1340
|
+
*/
|
|
1341
|
+
limit?: number
|
|
1342
|
+
/**
|
|
1343
|
+
* Choose, which related nodes to fetch as well
|
|
1344
|
+
*/
|
|
1345
|
+
include?: Prisma.ProjectKnowledgeBaseIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
/**
|
|
1349
|
+
* ProjectKnowledgeBase upsert
|
|
1350
|
+
*/
|
|
1351
|
+
export type ProjectKnowledgeBaseUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1352
|
+
/**
|
|
1353
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1354
|
+
*/
|
|
1355
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1356
|
+
/**
|
|
1357
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1358
|
+
*/
|
|
1359
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1360
|
+
/**
|
|
1361
|
+
* Choose, which related nodes to fetch as well
|
|
1362
|
+
*/
|
|
1363
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1364
|
+
/**
|
|
1365
|
+
* The filter to search for the ProjectKnowledgeBase to update in case it exists.
|
|
1366
|
+
*/
|
|
1367
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1368
|
+
/**
|
|
1369
|
+
* In case the ProjectKnowledgeBase found by the `where` argument doesn't exist, create a new ProjectKnowledgeBase with this data.
|
|
1370
|
+
*/
|
|
1371
|
+
create: Prisma.XOR<Prisma.ProjectKnowledgeBaseCreateInput, Prisma.ProjectKnowledgeBaseUncheckedCreateInput>
|
|
1372
|
+
/**
|
|
1373
|
+
* In case the ProjectKnowledgeBase was found with the provided `where` argument, update it with this data.
|
|
1374
|
+
*/
|
|
1375
|
+
update: Prisma.XOR<Prisma.ProjectKnowledgeBaseUpdateInput, Prisma.ProjectKnowledgeBaseUncheckedUpdateInput>
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
/**
|
|
1379
|
+
* ProjectKnowledgeBase delete
|
|
1380
|
+
*/
|
|
1381
|
+
export type ProjectKnowledgeBaseDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1382
|
+
/**
|
|
1383
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1384
|
+
*/
|
|
1385
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1386
|
+
/**
|
|
1387
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1388
|
+
*/
|
|
1389
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1390
|
+
/**
|
|
1391
|
+
* Choose, which related nodes to fetch as well
|
|
1392
|
+
*/
|
|
1393
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1394
|
+
/**
|
|
1395
|
+
* Filter which ProjectKnowledgeBase to delete.
|
|
1396
|
+
*/
|
|
1397
|
+
where: Prisma.ProjectKnowledgeBaseWhereUniqueInput
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
/**
|
|
1401
|
+
* ProjectKnowledgeBase deleteMany
|
|
1402
|
+
*/
|
|
1403
|
+
export type ProjectKnowledgeBaseDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1404
|
+
/**
|
|
1405
|
+
* Filter which ProjectKnowledgeBases to delete
|
|
1406
|
+
*/
|
|
1407
|
+
where?: Prisma.ProjectKnowledgeBaseWhereInput
|
|
1408
|
+
/**
|
|
1409
|
+
* Limit how many ProjectKnowledgeBases to delete.
|
|
1410
|
+
*/
|
|
1411
|
+
limit?: number
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* ProjectKnowledgeBase without action
|
|
1416
|
+
*/
|
|
1417
|
+
export type ProjectKnowledgeBaseDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1418
|
+
/**
|
|
1419
|
+
* Select specific fields to fetch from the ProjectKnowledgeBase
|
|
1420
|
+
*/
|
|
1421
|
+
select?: Prisma.ProjectKnowledgeBaseSelect<ExtArgs> | null
|
|
1422
|
+
/**
|
|
1423
|
+
* Omit specific fields from the ProjectKnowledgeBase
|
|
1424
|
+
*/
|
|
1425
|
+
omit?: Prisma.ProjectKnowledgeBaseOmit<ExtArgs> | null
|
|
1426
|
+
/**
|
|
1427
|
+
* Choose, which related nodes to fetch as well
|
|
1428
|
+
*/
|
|
1429
|
+
include?: Prisma.ProjectKnowledgeBaseInclude<ExtArgs> | null
|
|
1430
|
+
}
|