@helloao/cli 0.1.0 → 0.3.0

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 (67) hide show
  1. package/README.md +138 -136
  2. package/dist/cjs/cli.cjs +8049 -12681
  3. package/dist/cjs/index.cjs +7628 -12571
  4. package/dist/esm/cli.js +5699 -0
  5. package/dist/esm/cli.js.map +7 -0
  6. package/dist/esm/index.js +1972 -6262
  7. package/dist/esm/index.js.map +4 -4
  8. package/dist/types/actions.d.ts +71 -0
  9. package/dist/types/db.d.ts +12 -8
  10. package/dist/types/ebible.d.ts +1 -1
  11. package/dist/types/files.d.ts +12 -1
  12. package/dist/types/openapi.d.ts +2 -0
  13. package/dist/types/prisma-gen/browser.d.ts +110 -0
  14. package/dist/types/prisma-gen/client.d.ts +129 -0
  15. package/dist/types/prisma-gen/commonInputTypes.d.ts +378 -0
  16. package/dist/types/prisma-gen/enums.d.ts +2 -0
  17. package/dist/types/prisma-gen/internal/class.d.ts +353 -0
  18. package/dist/types/prisma-gen/internal/prismaNamespace.d.ts +2273 -0
  19. package/dist/types/prisma-gen/internal/prismaNamespaceBrowser.d.ts +294 -0
  20. package/dist/types/prisma-gen/models/Book.d.ts +2197 -0
  21. package/dist/types/prisma-gen/models/Chapter.d.ts +1934 -0
  22. package/dist/types/prisma-gen/models/ChapterAudioTiming.d.ts +1414 -0
  23. package/dist/types/prisma-gen/models/ChapterAudioUrl.d.ts +1414 -0
  24. package/dist/types/prisma-gen/models/ChapterFootnote.d.ts +1642 -0
  25. package/dist/types/prisma-gen/models/ChapterVerse.d.ts +1653 -0
  26. package/dist/types/prisma-gen/models/ChapterWords.d.ts +1366 -0
  27. package/dist/types/prisma-gen/models/Commentary.d.ts +1711 -0
  28. package/dist/types/prisma-gen/models/CommentaryBook.d.ts +1622 -0
  29. package/dist/types/prisma-gen/models/CommentaryChapter.d.ts +1487 -0
  30. package/dist/types/prisma-gen/models/CommentaryChapterVerse.d.ts +1514 -0
  31. package/dist/types/prisma-gen/models/CommentaryProfile.d.ts +1451 -0
  32. package/dist/types/prisma-gen/models/Dataset.d.ts +1667 -0
  33. package/dist/types/prisma-gen/models/DatasetBook.d.ts +1565 -0
  34. package/dist/types/prisma-gen/models/DatasetChapter.d.ts +1553 -0
  35. package/dist/types/prisma-gen/models/DatasetChapterVerse.d.ts +1600 -0
  36. package/dist/types/prisma-gen/models/DatasetReference.d.ts +1789 -0
  37. package/dist/types/prisma-gen/models/EBibleSource.d.ts +1686 -0
  38. package/dist/types/prisma-gen/models/InputFile.d.ts +1039 -0
  39. package/dist/types/prisma-gen/models/InputFileWarning.d.ts +946 -0
  40. package/dist/types/prisma-gen/models/Translation.d.ts +2238 -0
  41. package/dist/types/prisma-gen/models.d.ts +23 -0
  42. package/dist/types/s3.d.ts +2 -0
  43. package/dist/types/uploads.d.ts +7 -1
  44. package/migrations/20260217200934_add_license_notice/migration.sql +5 -0
  45. package/migrations/20260703000000_add_chapter_audio_timing/migration.sql +13 -0
  46. package/migrations/20260809000000_add_chapter_words/migration.sql +12 -0
  47. package/package.json +23 -17
  48. package/schema.prisma +43 -2
  49. package/prisma-gen/client.d.ts +0 -1
  50. package/prisma-gen/client.js +0 -4
  51. package/prisma-gen/default.d.ts +0 -1
  52. package/prisma-gen/default.js +0 -1
  53. package/prisma-gen/edge.d.ts +0 -1
  54. package/prisma-gen/edge.js +0 -401
  55. package/prisma-gen/index-browser.js +0 -395
  56. package/prisma-gen/index.d.ts +0 -33919
  57. package/prisma-gen/index.js +0 -424
  58. package/prisma-gen/runtime/edge-esm.js +0 -31
  59. package/prisma-gen/runtime/edge.js +0 -31
  60. package/prisma-gen/runtime/index-browser.d.ts +0 -365
  61. package/prisma-gen/runtime/index-browser.js +0 -13
  62. package/prisma-gen/runtime/library.d.ts +0 -3403
  63. package/prisma-gen/runtime/library.js +0 -143
  64. package/prisma-gen/runtime/react-native.js +0 -80
  65. package/prisma-gen/runtime/wasm.js +0 -32
  66. package/prisma-gen/wasm.d.ts +0 -1
  67. package/prisma-gen/wasm.js +0 -395
@@ -0,0 +1,1667 @@
1
+ import type * as runtime from "@prisma/client/runtime/client";
2
+ import type * as Prisma from "../internal/prismaNamespace";
3
+ /**
4
+ * Model Dataset
5
+ *
6
+ */
7
+ export type DatasetModel = runtime.Types.Result.DefaultSelection<Prisma.$DatasetPayload>;
8
+ export type AggregateDataset = {
9
+ _count: DatasetCountAggregateOutputType | null;
10
+ _min: DatasetMinAggregateOutputType | null;
11
+ _max: DatasetMaxAggregateOutputType | null;
12
+ };
13
+ export type DatasetMinAggregateOutputType = {
14
+ id: string | null;
15
+ name: string | null;
16
+ website: string | null;
17
+ licenseUrl: string | null;
18
+ licenseNotes: string | null;
19
+ englishName: string | null;
20
+ language: string | null;
21
+ textDirection: string | null;
22
+ sha256: string | null;
23
+ };
24
+ export type DatasetMaxAggregateOutputType = {
25
+ id: string | null;
26
+ name: string | null;
27
+ website: string | null;
28
+ licenseUrl: string | null;
29
+ licenseNotes: string | null;
30
+ englishName: string | null;
31
+ language: string | null;
32
+ textDirection: string | null;
33
+ sha256: string | null;
34
+ };
35
+ export type DatasetCountAggregateOutputType = {
36
+ id: number;
37
+ name: number;
38
+ website: number;
39
+ licenseUrl: number;
40
+ licenseNotes: number;
41
+ englishName: number;
42
+ language: number;
43
+ textDirection: number;
44
+ sha256: number;
45
+ _all: number;
46
+ };
47
+ export type DatasetMinAggregateInputType = {
48
+ id?: true;
49
+ name?: true;
50
+ website?: true;
51
+ licenseUrl?: true;
52
+ licenseNotes?: true;
53
+ englishName?: true;
54
+ language?: true;
55
+ textDirection?: true;
56
+ sha256?: true;
57
+ };
58
+ export type DatasetMaxAggregateInputType = {
59
+ id?: true;
60
+ name?: true;
61
+ website?: true;
62
+ licenseUrl?: true;
63
+ licenseNotes?: true;
64
+ englishName?: true;
65
+ language?: true;
66
+ textDirection?: true;
67
+ sha256?: true;
68
+ };
69
+ export type DatasetCountAggregateInputType = {
70
+ id?: true;
71
+ name?: true;
72
+ website?: true;
73
+ licenseUrl?: true;
74
+ licenseNotes?: true;
75
+ englishName?: true;
76
+ language?: true;
77
+ textDirection?: true;
78
+ sha256?: true;
79
+ _all?: true;
80
+ };
81
+ export type DatasetAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
82
+ /**
83
+ * Filter which Dataset to aggregate.
84
+ */
85
+ where?: Prisma.DatasetWhereInput;
86
+ /**
87
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
88
+ *
89
+ * Determine the order of Datasets to fetch.
90
+ */
91
+ orderBy?: Prisma.DatasetOrderByWithRelationInput | Prisma.DatasetOrderByWithRelationInput[];
92
+ /**
93
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
94
+ *
95
+ * Sets the start position
96
+ */
97
+ cursor?: Prisma.DatasetWhereUniqueInput;
98
+ /**
99
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
100
+ *
101
+ * Take `±n` Datasets from the position of the cursor.
102
+ */
103
+ take?: number;
104
+ /**
105
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
106
+ *
107
+ * Skip the first `n` Datasets.
108
+ */
109
+ skip?: number;
110
+ /**
111
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
112
+ *
113
+ * Count returned Datasets
114
+ **/
115
+ _count?: true | DatasetCountAggregateInputType;
116
+ /**
117
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
118
+ *
119
+ * Select which fields to find the minimum value
120
+ **/
121
+ _min?: DatasetMinAggregateInputType;
122
+ /**
123
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
124
+ *
125
+ * Select which fields to find the maximum value
126
+ **/
127
+ _max?: DatasetMaxAggregateInputType;
128
+ };
129
+ export type GetDatasetAggregateType<T extends DatasetAggregateArgs> = {
130
+ [P in keyof T & keyof AggregateDataset]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateDataset[P]> : Prisma.GetScalarType<T[P], AggregateDataset[P]>;
131
+ };
132
+ export type DatasetGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
133
+ where?: Prisma.DatasetWhereInput;
134
+ orderBy?: Prisma.DatasetOrderByWithAggregationInput | Prisma.DatasetOrderByWithAggregationInput[];
135
+ by: Prisma.DatasetScalarFieldEnum[] | Prisma.DatasetScalarFieldEnum;
136
+ having?: Prisma.DatasetScalarWhereWithAggregatesInput;
137
+ take?: number;
138
+ skip?: number;
139
+ _count?: DatasetCountAggregateInputType | true;
140
+ _min?: DatasetMinAggregateInputType;
141
+ _max?: DatasetMaxAggregateInputType;
142
+ };
143
+ export type DatasetGroupByOutputType = {
144
+ id: string;
145
+ name: string;
146
+ website: string;
147
+ licenseUrl: string;
148
+ licenseNotes: string | null;
149
+ englishName: string;
150
+ language: string;
151
+ textDirection: string;
152
+ sha256: string | null;
153
+ _count: DatasetCountAggregateOutputType | null;
154
+ _min: DatasetMinAggregateOutputType | null;
155
+ _max: DatasetMaxAggregateOutputType | null;
156
+ };
157
+ export type GetDatasetGroupByPayload<T extends DatasetGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<DatasetGroupByOutputType, T['by']> & {
158
+ [P in ((keyof T) & (keyof DatasetGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], DatasetGroupByOutputType[P]> : Prisma.GetScalarType<T[P], DatasetGroupByOutputType[P]>;
159
+ }>>;
160
+ export type DatasetWhereInput = {
161
+ AND?: Prisma.DatasetWhereInput | Prisma.DatasetWhereInput[];
162
+ OR?: Prisma.DatasetWhereInput[];
163
+ NOT?: Prisma.DatasetWhereInput | Prisma.DatasetWhereInput[];
164
+ id?: Prisma.StringFilter<"Dataset"> | string;
165
+ name?: Prisma.StringFilter<"Dataset"> | string;
166
+ website?: Prisma.StringFilter<"Dataset"> | string;
167
+ licenseUrl?: Prisma.StringFilter<"Dataset"> | string;
168
+ licenseNotes?: Prisma.StringNullableFilter<"Dataset"> | string | null;
169
+ englishName?: Prisma.StringFilter<"Dataset"> | string;
170
+ language?: Prisma.StringFilter<"Dataset"> | string;
171
+ textDirection?: Prisma.StringFilter<"Dataset"> | string;
172
+ sha256?: Prisma.StringNullableFilter<"Dataset"> | string | null;
173
+ books?: Prisma.DatasetBookListRelationFilter;
174
+ chapters?: Prisma.DatasetChapterListRelationFilter;
175
+ verses?: Prisma.DatasetChapterVerseListRelationFilter;
176
+ references?: Prisma.DatasetReferenceListRelationFilter;
177
+ };
178
+ export type DatasetOrderByWithRelationInput = {
179
+ id?: Prisma.SortOrder;
180
+ name?: Prisma.SortOrder;
181
+ website?: Prisma.SortOrder;
182
+ licenseUrl?: Prisma.SortOrder;
183
+ licenseNotes?: Prisma.SortOrderInput | Prisma.SortOrder;
184
+ englishName?: Prisma.SortOrder;
185
+ language?: Prisma.SortOrder;
186
+ textDirection?: Prisma.SortOrder;
187
+ sha256?: Prisma.SortOrderInput | Prisma.SortOrder;
188
+ books?: Prisma.DatasetBookOrderByRelationAggregateInput;
189
+ chapters?: Prisma.DatasetChapterOrderByRelationAggregateInput;
190
+ verses?: Prisma.DatasetChapterVerseOrderByRelationAggregateInput;
191
+ references?: Prisma.DatasetReferenceOrderByRelationAggregateInput;
192
+ };
193
+ export type DatasetWhereUniqueInput = Prisma.AtLeast<{
194
+ id?: string;
195
+ AND?: Prisma.DatasetWhereInput | Prisma.DatasetWhereInput[];
196
+ OR?: Prisma.DatasetWhereInput[];
197
+ NOT?: Prisma.DatasetWhereInput | Prisma.DatasetWhereInput[];
198
+ name?: Prisma.StringFilter<"Dataset"> | string;
199
+ website?: Prisma.StringFilter<"Dataset"> | string;
200
+ licenseUrl?: Prisma.StringFilter<"Dataset"> | string;
201
+ licenseNotes?: Prisma.StringNullableFilter<"Dataset"> | string | null;
202
+ englishName?: Prisma.StringFilter<"Dataset"> | string;
203
+ language?: Prisma.StringFilter<"Dataset"> | string;
204
+ textDirection?: Prisma.StringFilter<"Dataset"> | string;
205
+ sha256?: Prisma.StringNullableFilter<"Dataset"> | string | null;
206
+ books?: Prisma.DatasetBookListRelationFilter;
207
+ chapters?: Prisma.DatasetChapterListRelationFilter;
208
+ verses?: Prisma.DatasetChapterVerseListRelationFilter;
209
+ references?: Prisma.DatasetReferenceListRelationFilter;
210
+ }, "id">;
211
+ export type DatasetOrderByWithAggregationInput = {
212
+ id?: Prisma.SortOrder;
213
+ name?: Prisma.SortOrder;
214
+ website?: Prisma.SortOrder;
215
+ licenseUrl?: Prisma.SortOrder;
216
+ licenseNotes?: Prisma.SortOrderInput | Prisma.SortOrder;
217
+ englishName?: Prisma.SortOrder;
218
+ language?: Prisma.SortOrder;
219
+ textDirection?: Prisma.SortOrder;
220
+ sha256?: Prisma.SortOrderInput | Prisma.SortOrder;
221
+ _count?: Prisma.DatasetCountOrderByAggregateInput;
222
+ _max?: Prisma.DatasetMaxOrderByAggregateInput;
223
+ _min?: Prisma.DatasetMinOrderByAggregateInput;
224
+ };
225
+ export type DatasetScalarWhereWithAggregatesInput = {
226
+ AND?: Prisma.DatasetScalarWhereWithAggregatesInput | Prisma.DatasetScalarWhereWithAggregatesInput[];
227
+ OR?: Prisma.DatasetScalarWhereWithAggregatesInput[];
228
+ NOT?: Prisma.DatasetScalarWhereWithAggregatesInput | Prisma.DatasetScalarWhereWithAggregatesInput[];
229
+ id?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
230
+ name?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
231
+ website?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
232
+ licenseUrl?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
233
+ licenseNotes?: Prisma.StringNullableWithAggregatesFilter<"Dataset"> | string | null;
234
+ englishName?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
235
+ language?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
236
+ textDirection?: Prisma.StringWithAggregatesFilter<"Dataset"> | string;
237
+ sha256?: Prisma.StringNullableWithAggregatesFilter<"Dataset"> | string | null;
238
+ };
239
+ export type DatasetCreateInput = {
240
+ id: string;
241
+ name: string;
242
+ website: string;
243
+ licenseUrl: string;
244
+ licenseNotes?: string | null;
245
+ englishName: string;
246
+ language: string;
247
+ textDirection: string;
248
+ sha256?: string | null;
249
+ books?: Prisma.DatasetBookCreateNestedManyWithoutDatasetInput;
250
+ chapters?: Prisma.DatasetChapterCreateNestedManyWithoutDatasetInput;
251
+ verses?: Prisma.DatasetChapterVerseCreateNestedManyWithoutDatasetInput;
252
+ references?: Prisma.DatasetReferenceCreateNestedManyWithoutDatasetInput;
253
+ };
254
+ export type DatasetUncheckedCreateInput = {
255
+ id: string;
256
+ name: string;
257
+ website: string;
258
+ licenseUrl: string;
259
+ licenseNotes?: string | null;
260
+ englishName: string;
261
+ language: string;
262
+ textDirection: string;
263
+ sha256?: string | null;
264
+ books?: Prisma.DatasetBookUncheckedCreateNestedManyWithoutDatasetInput;
265
+ chapters?: Prisma.DatasetChapterUncheckedCreateNestedManyWithoutDatasetInput;
266
+ verses?: Prisma.DatasetChapterVerseUncheckedCreateNestedManyWithoutDatasetInput;
267
+ references?: Prisma.DatasetReferenceUncheckedCreateNestedManyWithoutDatasetInput;
268
+ };
269
+ export type DatasetUpdateInput = {
270
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
271
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
272
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
273
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
274
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
275
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
276
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
277
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
278
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
279
+ books?: Prisma.DatasetBookUpdateManyWithoutDatasetNestedInput;
280
+ chapters?: Prisma.DatasetChapterUpdateManyWithoutDatasetNestedInput;
281
+ verses?: Prisma.DatasetChapterVerseUpdateManyWithoutDatasetNestedInput;
282
+ references?: Prisma.DatasetReferenceUpdateManyWithoutDatasetNestedInput;
283
+ };
284
+ export type DatasetUncheckedUpdateInput = {
285
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
286
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
287
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
288
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
289
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
290
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
291
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
292
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
293
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
294
+ books?: Prisma.DatasetBookUncheckedUpdateManyWithoutDatasetNestedInput;
295
+ chapters?: Prisma.DatasetChapterUncheckedUpdateManyWithoutDatasetNestedInput;
296
+ verses?: Prisma.DatasetChapterVerseUncheckedUpdateManyWithoutDatasetNestedInput;
297
+ references?: Prisma.DatasetReferenceUncheckedUpdateManyWithoutDatasetNestedInput;
298
+ };
299
+ export type DatasetCreateManyInput = {
300
+ id: string;
301
+ name: string;
302
+ website: string;
303
+ licenseUrl: string;
304
+ licenseNotes?: string | null;
305
+ englishName: string;
306
+ language: string;
307
+ textDirection: string;
308
+ sha256?: string | null;
309
+ };
310
+ export type DatasetUpdateManyMutationInput = {
311
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
312
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
313
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
314
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
315
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
316
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
317
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
318
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
319
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
320
+ };
321
+ export type DatasetUncheckedUpdateManyInput = {
322
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
323
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
324
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
325
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
326
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
327
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
328
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
329
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
330
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
331
+ };
332
+ export type DatasetCountOrderByAggregateInput = {
333
+ id?: Prisma.SortOrder;
334
+ name?: Prisma.SortOrder;
335
+ website?: Prisma.SortOrder;
336
+ licenseUrl?: Prisma.SortOrder;
337
+ licenseNotes?: Prisma.SortOrder;
338
+ englishName?: Prisma.SortOrder;
339
+ language?: Prisma.SortOrder;
340
+ textDirection?: Prisma.SortOrder;
341
+ sha256?: Prisma.SortOrder;
342
+ };
343
+ export type DatasetMaxOrderByAggregateInput = {
344
+ id?: Prisma.SortOrder;
345
+ name?: Prisma.SortOrder;
346
+ website?: Prisma.SortOrder;
347
+ licenseUrl?: Prisma.SortOrder;
348
+ licenseNotes?: Prisma.SortOrder;
349
+ englishName?: Prisma.SortOrder;
350
+ language?: Prisma.SortOrder;
351
+ textDirection?: Prisma.SortOrder;
352
+ sha256?: Prisma.SortOrder;
353
+ };
354
+ export type DatasetMinOrderByAggregateInput = {
355
+ id?: Prisma.SortOrder;
356
+ name?: Prisma.SortOrder;
357
+ website?: Prisma.SortOrder;
358
+ licenseUrl?: Prisma.SortOrder;
359
+ licenseNotes?: Prisma.SortOrder;
360
+ englishName?: Prisma.SortOrder;
361
+ language?: Prisma.SortOrder;
362
+ textDirection?: Prisma.SortOrder;
363
+ sha256?: Prisma.SortOrder;
364
+ };
365
+ export type DatasetScalarRelationFilter = {
366
+ is?: Prisma.DatasetWhereInput;
367
+ isNot?: Prisma.DatasetWhereInput;
368
+ };
369
+ export type DatasetCreateNestedOneWithoutBooksInput = {
370
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutBooksInput, Prisma.DatasetUncheckedCreateWithoutBooksInput>;
371
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutBooksInput;
372
+ connect?: Prisma.DatasetWhereUniqueInput;
373
+ };
374
+ export type DatasetUpdateOneRequiredWithoutBooksNestedInput = {
375
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutBooksInput, Prisma.DatasetUncheckedCreateWithoutBooksInput>;
376
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutBooksInput;
377
+ upsert?: Prisma.DatasetUpsertWithoutBooksInput;
378
+ connect?: Prisma.DatasetWhereUniqueInput;
379
+ update?: Prisma.XOR<Prisma.XOR<Prisma.DatasetUpdateToOneWithWhereWithoutBooksInput, Prisma.DatasetUpdateWithoutBooksInput>, Prisma.DatasetUncheckedUpdateWithoutBooksInput>;
380
+ };
381
+ export type DatasetCreateNestedOneWithoutChaptersInput = {
382
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutChaptersInput, Prisma.DatasetUncheckedCreateWithoutChaptersInput>;
383
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutChaptersInput;
384
+ connect?: Prisma.DatasetWhereUniqueInput;
385
+ };
386
+ export type DatasetUpdateOneRequiredWithoutChaptersNestedInput = {
387
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutChaptersInput, Prisma.DatasetUncheckedCreateWithoutChaptersInput>;
388
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutChaptersInput;
389
+ upsert?: Prisma.DatasetUpsertWithoutChaptersInput;
390
+ connect?: Prisma.DatasetWhereUniqueInput;
391
+ update?: Prisma.XOR<Prisma.XOR<Prisma.DatasetUpdateToOneWithWhereWithoutChaptersInput, Prisma.DatasetUpdateWithoutChaptersInput>, Prisma.DatasetUncheckedUpdateWithoutChaptersInput>;
392
+ };
393
+ export type DatasetCreateNestedOneWithoutVersesInput = {
394
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutVersesInput, Prisma.DatasetUncheckedCreateWithoutVersesInput>;
395
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutVersesInput;
396
+ connect?: Prisma.DatasetWhereUniqueInput;
397
+ };
398
+ export type DatasetUpdateOneRequiredWithoutVersesNestedInput = {
399
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutVersesInput, Prisma.DatasetUncheckedCreateWithoutVersesInput>;
400
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutVersesInput;
401
+ upsert?: Prisma.DatasetUpsertWithoutVersesInput;
402
+ connect?: Prisma.DatasetWhereUniqueInput;
403
+ update?: Prisma.XOR<Prisma.XOR<Prisma.DatasetUpdateToOneWithWhereWithoutVersesInput, Prisma.DatasetUpdateWithoutVersesInput>, Prisma.DatasetUncheckedUpdateWithoutVersesInput>;
404
+ };
405
+ export type DatasetCreateNestedOneWithoutReferencesInput = {
406
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutReferencesInput, Prisma.DatasetUncheckedCreateWithoutReferencesInput>;
407
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutReferencesInput;
408
+ connect?: Prisma.DatasetWhereUniqueInput;
409
+ };
410
+ export type DatasetUpdateOneRequiredWithoutReferencesNestedInput = {
411
+ create?: Prisma.XOR<Prisma.DatasetCreateWithoutReferencesInput, Prisma.DatasetUncheckedCreateWithoutReferencesInput>;
412
+ connectOrCreate?: Prisma.DatasetCreateOrConnectWithoutReferencesInput;
413
+ upsert?: Prisma.DatasetUpsertWithoutReferencesInput;
414
+ connect?: Prisma.DatasetWhereUniqueInput;
415
+ update?: Prisma.XOR<Prisma.XOR<Prisma.DatasetUpdateToOneWithWhereWithoutReferencesInput, Prisma.DatasetUpdateWithoutReferencesInput>, Prisma.DatasetUncheckedUpdateWithoutReferencesInput>;
416
+ };
417
+ export type DatasetCreateWithoutBooksInput = {
418
+ id: string;
419
+ name: string;
420
+ website: string;
421
+ licenseUrl: string;
422
+ licenseNotes?: string | null;
423
+ englishName: string;
424
+ language: string;
425
+ textDirection: string;
426
+ sha256?: string | null;
427
+ chapters?: Prisma.DatasetChapterCreateNestedManyWithoutDatasetInput;
428
+ verses?: Prisma.DatasetChapterVerseCreateNestedManyWithoutDatasetInput;
429
+ references?: Prisma.DatasetReferenceCreateNestedManyWithoutDatasetInput;
430
+ };
431
+ export type DatasetUncheckedCreateWithoutBooksInput = {
432
+ id: string;
433
+ name: string;
434
+ website: string;
435
+ licenseUrl: string;
436
+ licenseNotes?: string | null;
437
+ englishName: string;
438
+ language: string;
439
+ textDirection: string;
440
+ sha256?: string | null;
441
+ chapters?: Prisma.DatasetChapterUncheckedCreateNestedManyWithoutDatasetInput;
442
+ verses?: Prisma.DatasetChapterVerseUncheckedCreateNestedManyWithoutDatasetInput;
443
+ references?: Prisma.DatasetReferenceUncheckedCreateNestedManyWithoutDatasetInput;
444
+ };
445
+ export type DatasetCreateOrConnectWithoutBooksInput = {
446
+ where: Prisma.DatasetWhereUniqueInput;
447
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutBooksInput, Prisma.DatasetUncheckedCreateWithoutBooksInput>;
448
+ };
449
+ export type DatasetUpsertWithoutBooksInput = {
450
+ update: Prisma.XOR<Prisma.DatasetUpdateWithoutBooksInput, Prisma.DatasetUncheckedUpdateWithoutBooksInput>;
451
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutBooksInput, Prisma.DatasetUncheckedCreateWithoutBooksInput>;
452
+ where?: Prisma.DatasetWhereInput;
453
+ };
454
+ export type DatasetUpdateToOneWithWhereWithoutBooksInput = {
455
+ where?: Prisma.DatasetWhereInput;
456
+ data: Prisma.XOR<Prisma.DatasetUpdateWithoutBooksInput, Prisma.DatasetUncheckedUpdateWithoutBooksInput>;
457
+ };
458
+ export type DatasetUpdateWithoutBooksInput = {
459
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
460
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
461
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
462
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
463
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
464
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
465
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
466
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
467
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
468
+ chapters?: Prisma.DatasetChapterUpdateManyWithoutDatasetNestedInput;
469
+ verses?: Prisma.DatasetChapterVerseUpdateManyWithoutDatasetNestedInput;
470
+ references?: Prisma.DatasetReferenceUpdateManyWithoutDatasetNestedInput;
471
+ };
472
+ export type DatasetUncheckedUpdateWithoutBooksInput = {
473
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
474
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
475
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
476
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
477
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
478
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
479
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
480
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
481
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
482
+ chapters?: Prisma.DatasetChapterUncheckedUpdateManyWithoutDatasetNestedInput;
483
+ verses?: Prisma.DatasetChapterVerseUncheckedUpdateManyWithoutDatasetNestedInput;
484
+ references?: Prisma.DatasetReferenceUncheckedUpdateManyWithoutDatasetNestedInput;
485
+ };
486
+ export type DatasetCreateWithoutChaptersInput = {
487
+ id: string;
488
+ name: string;
489
+ website: string;
490
+ licenseUrl: string;
491
+ licenseNotes?: string | null;
492
+ englishName: string;
493
+ language: string;
494
+ textDirection: string;
495
+ sha256?: string | null;
496
+ books?: Prisma.DatasetBookCreateNestedManyWithoutDatasetInput;
497
+ verses?: Prisma.DatasetChapterVerseCreateNestedManyWithoutDatasetInput;
498
+ references?: Prisma.DatasetReferenceCreateNestedManyWithoutDatasetInput;
499
+ };
500
+ export type DatasetUncheckedCreateWithoutChaptersInput = {
501
+ id: string;
502
+ name: string;
503
+ website: string;
504
+ licenseUrl: string;
505
+ licenseNotes?: string | null;
506
+ englishName: string;
507
+ language: string;
508
+ textDirection: string;
509
+ sha256?: string | null;
510
+ books?: Prisma.DatasetBookUncheckedCreateNestedManyWithoutDatasetInput;
511
+ verses?: Prisma.DatasetChapterVerseUncheckedCreateNestedManyWithoutDatasetInput;
512
+ references?: Prisma.DatasetReferenceUncheckedCreateNestedManyWithoutDatasetInput;
513
+ };
514
+ export type DatasetCreateOrConnectWithoutChaptersInput = {
515
+ where: Prisma.DatasetWhereUniqueInput;
516
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutChaptersInput, Prisma.DatasetUncheckedCreateWithoutChaptersInput>;
517
+ };
518
+ export type DatasetUpsertWithoutChaptersInput = {
519
+ update: Prisma.XOR<Prisma.DatasetUpdateWithoutChaptersInput, Prisma.DatasetUncheckedUpdateWithoutChaptersInput>;
520
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutChaptersInput, Prisma.DatasetUncheckedCreateWithoutChaptersInput>;
521
+ where?: Prisma.DatasetWhereInput;
522
+ };
523
+ export type DatasetUpdateToOneWithWhereWithoutChaptersInput = {
524
+ where?: Prisma.DatasetWhereInput;
525
+ data: Prisma.XOR<Prisma.DatasetUpdateWithoutChaptersInput, Prisma.DatasetUncheckedUpdateWithoutChaptersInput>;
526
+ };
527
+ export type DatasetUpdateWithoutChaptersInput = {
528
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
529
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
530
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
531
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
532
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
533
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
534
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
535
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
536
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
537
+ books?: Prisma.DatasetBookUpdateManyWithoutDatasetNestedInput;
538
+ verses?: Prisma.DatasetChapterVerseUpdateManyWithoutDatasetNestedInput;
539
+ references?: Prisma.DatasetReferenceUpdateManyWithoutDatasetNestedInput;
540
+ };
541
+ export type DatasetUncheckedUpdateWithoutChaptersInput = {
542
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
543
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
544
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
545
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
546
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
547
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
548
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
549
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
550
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
551
+ books?: Prisma.DatasetBookUncheckedUpdateManyWithoutDatasetNestedInput;
552
+ verses?: Prisma.DatasetChapterVerseUncheckedUpdateManyWithoutDatasetNestedInput;
553
+ references?: Prisma.DatasetReferenceUncheckedUpdateManyWithoutDatasetNestedInput;
554
+ };
555
+ export type DatasetCreateWithoutVersesInput = {
556
+ id: string;
557
+ name: string;
558
+ website: string;
559
+ licenseUrl: string;
560
+ licenseNotes?: string | null;
561
+ englishName: string;
562
+ language: string;
563
+ textDirection: string;
564
+ sha256?: string | null;
565
+ books?: Prisma.DatasetBookCreateNestedManyWithoutDatasetInput;
566
+ chapters?: Prisma.DatasetChapterCreateNestedManyWithoutDatasetInput;
567
+ references?: Prisma.DatasetReferenceCreateNestedManyWithoutDatasetInput;
568
+ };
569
+ export type DatasetUncheckedCreateWithoutVersesInput = {
570
+ id: string;
571
+ name: string;
572
+ website: string;
573
+ licenseUrl: string;
574
+ licenseNotes?: string | null;
575
+ englishName: string;
576
+ language: string;
577
+ textDirection: string;
578
+ sha256?: string | null;
579
+ books?: Prisma.DatasetBookUncheckedCreateNestedManyWithoutDatasetInput;
580
+ chapters?: Prisma.DatasetChapterUncheckedCreateNestedManyWithoutDatasetInput;
581
+ references?: Prisma.DatasetReferenceUncheckedCreateNestedManyWithoutDatasetInput;
582
+ };
583
+ export type DatasetCreateOrConnectWithoutVersesInput = {
584
+ where: Prisma.DatasetWhereUniqueInput;
585
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutVersesInput, Prisma.DatasetUncheckedCreateWithoutVersesInput>;
586
+ };
587
+ export type DatasetUpsertWithoutVersesInput = {
588
+ update: Prisma.XOR<Prisma.DatasetUpdateWithoutVersesInput, Prisma.DatasetUncheckedUpdateWithoutVersesInput>;
589
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutVersesInput, Prisma.DatasetUncheckedCreateWithoutVersesInput>;
590
+ where?: Prisma.DatasetWhereInput;
591
+ };
592
+ export type DatasetUpdateToOneWithWhereWithoutVersesInput = {
593
+ where?: Prisma.DatasetWhereInput;
594
+ data: Prisma.XOR<Prisma.DatasetUpdateWithoutVersesInput, Prisma.DatasetUncheckedUpdateWithoutVersesInput>;
595
+ };
596
+ export type DatasetUpdateWithoutVersesInput = {
597
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
598
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
599
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
600
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
601
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
602
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
603
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
604
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
605
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
606
+ books?: Prisma.DatasetBookUpdateManyWithoutDatasetNestedInput;
607
+ chapters?: Prisma.DatasetChapterUpdateManyWithoutDatasetNestedInput;
608
+ references?: Prisma.DatasetReferenceUpdateManyWithoutDatasetNestedInput;
609
+ };
610
+ export type DatasetUncheckedUpdateWithoutVersesInput = {
611
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
612
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
613
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
614
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
615
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
616
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
617
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
618
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
619
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
620
+ books?: Prisma.DatasetBookUncheckedUpdateManyWithoutDatasetNestedInput;
621
+ chapters?: Prisma.DatasetChapterUncheckedUpdateManyWithoutDatasetNestedInput;
622
+ references?: Prisma.DatasetReferenceUncheckedUpdateManyWithoutDatasetNestedInput;
623
+ };
624
+ export type DatasetCreateWithoutReferencesInput = {
625
+ id: string;
626
+ name: string;
627
+ website: string;
628
+ licenseUrl: string;
629
+ licenseNotes?: string | null;
630
+ englishName: string;
631
+ language: string;
632
+ textDirection: string;
633
+ sha256?: string | null;
634
+ books?: Prisma.DatasetBookCreateNestedManyWithoutDatasetInput;
635
+ chapters?: Prisma.DatasetChapterCreateNestedManyWithoutDatasetInput;
636
+ verses?: Prisma.DatasetChapterVerseCreateNestedManyWithoutDatasetInput;
637
+ };
638
+ export type DatasetUncheckedCreateWithoutReferencesInput = {
639
+ id: string;
640
+ name: string;
641
+ website: string;
642
+ licenseUrl: string;
643
+ licenseNotes?: string | null;
644
+ englishName: string;
645
+ language: string;
646
+ textDirection: string;
647
+ sha256?: string | null;
648
+ books?: Prisma.DatasetBookUncheckedCreateNestedManyWithoutDatasetInput;
649
+ chapters?: Prisma.DatasetChapterUncheckedCreateNestedManyWithoutDatasetInput;
650
+ verses?: Prisma.DatasetChapterVerseUncheckedCreateNestedManyWithoutDatasetInput;
651
+ };
652
+ export type DatasetCreateOrConnectWithoutReferencesInput = {
653
+ where: Prisma.DatasetWhereUniqueInput;
654
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutReferencesInput, Prisma.DatasetUncheckedCreateWithoutReferencesInput>;
655
+ };
656
+ export type DatasetUpsertWithoutReferencesInput = {
657
+ update: Prisma.XOR<Prisma.DatasetUpdateWithoutReferencesInput, Prisma.DatasetUncheckedUpdateWithoutReferencesInput>;
658
+ create: Prisma.XOR<Prisma.DatasetCreateWithoutReferencesInput, Prisma.DatasetUncheckedCreateWithoutReferencesInput>;
659
+ where?: Prisma.DatasetWhereInput;
660
+ };
661
+ export type DatasetUpdateToOneWithWhereWithoutReferencesInput = {
662
+ where?: Prisma.DatasetWhereInput;
663
+ data: Prisma.XOR<Prisma.DatasetUpdateWithoutReferencesInput, Prisma.DatasetUncheckedUpdateWithoutReferencesInput>;
664
+ };
665
+ export type DatasetUpdateWithoutReferencesInput = {
666
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
667
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
668
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
669
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
670
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
671
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
672
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
673
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
674
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
675
+ books?: Prisma.DatasetBookUpdateManyWithoutDatasetNestedInput;
676
+ chapters?: Prisma.DatasetChapterUpdateManyWithoutDatasetNestedInput;
677
+ verses?: Prisma.DatasetChapterVerseUpdateManyWithoutDatasetNestedInput;
678
+ };
679
+ export type DatasetUncheckedUpdateWithoutReferencesInput = {
680
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
681
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
682
+ website?: Prisma.StringFieldUpdateOperationsInput | string;
683
+ licenseUrl?: Prisma.StringFieldUpdateOperationsInput | string;
684
+ licenseNotes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
685
+ englishName?: Prisma.StringFieldUpdateOperationsInput | string;
686
+ language?: Prisma.StringFieldUpdateOperationsInput | string;
687
+ textDirection?: Prisma.StringFieldUpdateOperationsInput | string;
688
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
689
+ books?: Prisma.DatasetBookUncheckedUpdateManyWithoutDatasetNestedInput;
690
+ chapters?: Prisma.DatasetChapterUncheckedUpdateManyWithoutDatasetNestedInput;
691
+ verses?: Prisma.DatasetChapterVerseUncheckedUpdateManyWithoutDatasetNestedInput;
692
+ };
693
+ /**
694
+ * Count Type DatasetCountOutputType
695
+ */
696
+ export type DatasetCountOutputType = {
697
+ books: number;
698
+ chapters: number;
699
+ verses: number;
700
+ references: number;
701
+ };
702
+ export type DatasetCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
703
+ books?: boolean | DatasetCountOutputTypeCountBooksArgs;
704
+ chapters?: boolean | DatasetCountOutputTypeCountChaptersArgs;
705
+ verses?: boolean | DatasetCountOutputTypeCountVersesArgs;
706
+ references?: boolean | DatasetCountOutputTypeCountReferencesArgs;
707
+ };
708
+ /**
709
+ * DatasetCountOutputType without action
710
+ */
711
+ export type DatasetCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
712
+ /**
713
+ * Select specific fields to fetch from the DatasetCountOutputType
714
+ */
715
+ select?: Prisma.DatasetCountOutputTypeSelect<ExtArgs> | null;
716
+ };
717
+ /**
718
+ * DatasetCountOutputType without action
719
+ */
720
+ export type DatasetCountOutputTypeCountBooksArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
721
+ where?: Prisma.DatasetBookWhereInput;
722
+ };
723
+ /**
724
+ * DatasetCountOutputType without action
725
+ */
726
+ export type DatasetCountOutputTypeCountChaptersArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
727
+ where?: Prisma.DatasetChapterWhereInput;
728
+ };
729
+ /**
730
+ * DatasetCountOutputType without action
731
+ */
732
+ export type DatasetCountOutputTypeCountVersesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
733
+ where?: Prisma.DatasetChapterVerseWhereInput;
734
+ };
735
+ /**
736
+ * DatasetCountOutputType without action
737
+ */
738
+ export type DatasetCountOutputTypeCountReferencesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
739
+ where?: Prisma.DatasetReferenceWhereInput;
740
+ };
741
+ export type DatasetSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
742
+ id?: boolean;
743
+ name?: boolean;
744
+ website?: boolean;
745
+ licenseUrl?: boolean;
746
+ licenseNotes?: boolean;
747
+ englishName?: boolean;
748
+ language?: boolean;
749
+ textDirection?: boolean;
750
+ sha256?: boolean;
751
+ books?: boolean | Prisma.Dataset$booksArgs<ExtArgs>;
752
+ chapters?: boolean | Prisma.Dataset$chaptersArgs<ExtArgs>;
753
+ verses?: boolean | Prisma.Dataset$versesArgs<ExtArgs>;
754
+ references?: boolean | Prisma.Dataset$referencesArgs<ExtArgs>;
755
+ _count?: boolean | Prisma.DatasetCountOutputTypeDefaultArgs<ExtArgs>;
756
+ }, ExtArgs["result"]["dataset"]>;
757
+ export type DatasetSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
758
+ id?: boolean;
759
+ name?: boolean;
760
+ website?: boolean;
761
+ licenseUrl?: boolean;
762
+ licenseNotes?: boolean;
763
+ englishName?: boolean;
764
+ language?: boolean;
765
+ textDirection?: boolean;
766
+ sha256?: boolean;
767
+ }, ExtArgs["result"]["dataset"]>;
768
+ export type DatasetSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
769
+ id?: boolean;
770
+ name?: boolean;
771
+ website?: boolean;
772
+ licenseUrl?: boolean;
773
+ licenseNotes?: boolean;
774
+ englishName?: boolean;
775
+ language?: boolean;
776
+ textDirection?: boolean;
777
+ sha256?: boolean;
778
+ }, ExtArgs["result"]["dataset"]>;
779
+ export type DatasetSelectScalar = {
780
+ id?: boolean;
781
+ name?: boolean;
782
+ website?: boolean;
783
+ licenseUrl?: boolean;
784
+ licenseNotes?: boolean;
785
+ englishName?: boolean;
786
+ language?: boolean;
787
+ textDirection?: boolean;
788
+ sha256?: boolean;
789
+ };
790
+ export type DatasetOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "website" | "licenseUrl" | "licenseNotes" | "englishName" | "language" | "textDirection" | "sha256", ExtArgs["result"]["dataset"]>;
791
+ export type DatasetInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
792
+ books?: boolean | Prisma.Dataset$booksArgs<ExtArgs>;
793
+ chapters?: boolean | Prisma.Dataset$chaptersArgs<ExtArgs>;
794
+ verses?: boolean | Prisma.Dataset$versesArgs<ExtArgs>;
795
+ references?: boolean | Prisma.Dataset$referencesArgs<ExtArgs>;
796
+ _count?: boolean | Prisma.DatasetCountOutputTypeDefaultArgs<ExtArgs>;
797
+ };
798
+ export type DatasetIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
799
+ export type DatasetIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
800
+ export type $DatasetPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
801
+ name: "Dataset";
802
+ objects: {
803
+ books: Prisma.$DatasetBookPayload<ExtArgs>[];
804
+ chapters: Prisma.$DatasetChapterPayload<ExtArgs>[];
805
+ verses: Prisma.$DatasetChapterVersePayload<ExtArgs>[];
806
+ references: Prisma.$DatasetReferencePayload<ExtArgs>[];
807
+ };
808
+ scalars: runtime.Types.Extensions.GetPayloadResult<{
809
+ id: string;
810
+ name: string;
811
+ website: string;
812
+ licenseUrl: string;
813
+ licenseNotes: string | null;
814
+ englishName: string;
815
+ language: string;
816
+ textDirection: string;
817
+ sha256: string | null;
818
+ }, ExtArgs["result"]["dataset"]>;
819
+ composites: {};
820
+ };
821
+ export type DatasetGetPayload<S extends boolean | null | undefined | DatasetDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$DatasetPayload, S>;
822
+ export type DatasetCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<DatasetFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
823
+ select?: DatasetCountAggregateInputType | true;
824
+ };
825
+ export interface DatasetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
826
+ [K: symbol]: {
827
+ types: Prisma.TypeMap<ExtArgs>['model']['Dataset'];
828
+ meta: {
829
+ name: 'Dataset';
830
+ };
831
+ };
832
+ /**
833
+ * Find zero or one Dataset that matches the filter.
834
+ * @param {DatasetFindUniqueArgs} args - Arguments to find a Dataset
835
+ * @example
836
+ * // Get one Dataset
837
+ * const dataset = await prisma.dataset.findUnique({
838
+ * where: {
839
+ * // ... provide filter here
840
+ * }
841
+ * })
842
+ */
843
+ findUnique<T extends DatasetFindUniqueArgs>(args: Prisma.SelectSubset<T, DatasetFindUniqueArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
844
+ /**
845
+ * Find one Dataset that matches the filter or throw an error with `error.code='P2025'`
846
+ * if no matches were found.
847
+ * @param {DatasetFindUniqueOrThrowArgs} args - Arguments to find a Dataset
848
+ * @example
849
+ * // Get one Dataset
850
+ * const dataset = await prisma.dataset.findUniqueOrThrow({
851
+ * where: {
852
+ * // ... provide filter here
853
+ * }
854
+ * })
855
+ */
856
+ findUniqueOrThrow<T extends DatasetFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, DatasetFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
857
+ /**
858
+ * Find the first Dataset that matches the filter.
859
+ * Note, that providing `undefined` is treated as the value not being there.
860
+ * Read more here: https://pris.ly/d/null-undefined
861
+ * @param {DatasetFindFirstArgs} args - Arguments to find a Dataset
862
+ * @example
863
+ * // Get one Dataset
864
+ * const dataset = await prisma.dataset.findFirst({
865
+ * where: {
866
+ * // ... provide filter here
867
+ * }
868
+ * })
869
+ */
870
+ findFirst<T extends DatasetFindFirstArgs>(args?: Prisma.SelectSubset<T, DatasetFindFirstArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
871
+ /**
872
+ * Find the first Dataset that matches the filter or
873
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
874
+ * Note, that providing `undefined` is treated as the value not being there.
875
+ * Read more here: https://pris.ly/d/null-undefined
876
+ * @param {DatasetFindFirstOrThrowArgs} args - Arguments to find a Dataset
877
+ * @example
878
+ * // Get one Dataset
879
+ * const dataset = await prisma.dataset.findFirstOrThrow({
880
+ * where: {
881
+ * // ... provide filter here
882
+ * }
883
+ * })
884
+ */
885
+ findFirstOrThrow<T extends DatasetFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, DatasetFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
886
+ /**
887
+ * Find zero or more Datasets that matches the filter.
888
+ * Note, that providing `undefined` is treated as the value not being there.
889
+ * Read more here: https://pris.ly/d/null-undefined
890
+ * @param {DatasetFindManyArgs} args - Arguments to filter and select certain fields only.
891
+ * @example
892
+ * // Get all Datasets
893
+ * const datasets = await prisma.dataset.findMany()
894
+ *
895
+ * // Get first 10 Datasets
896
+ * const datasets = await prisma.dataset.findMany({ take: 10 })
897
+ *
898
+ * // Only select the `id`
899
+ * const datasetWithIdOnly = await prisma.dataset.findMany({ select: { id: true } })
900
+ *
901
+ */
902
+ findMany<T extends DatasetFindManyArgs>(args?: Prisma.SelectSubset<T, DatasetFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
903
+ /**
904
+ * Create a Dataset.
905
+ * @param {DatasetCreateArgs} args - Arguments to create a Dataset.
906
+ * @example
907
+ * // Create one Dataset
908
+ * const Dataset = await prisma.dataset.create({
909
+ * data: {
910
+ * // ... data to create a Dataset
911
+ * }
912
+ * })
913
+ *
914
+ */
915
+ create<T extends DatasetCreateArgs>(args: Prisma.SelectSubset<T, DatasetCreateArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
916
+ /**
917
+ * Create many Datasets.
918
+ * @param {DatasetCreateManyArgs} args - Arguments to create many Datasets.
919
+ * @example
920
+ * // Create many Datasets
921
+ * const dataset = await prisma.dataset.createMany({
922
+ * data: [
923
+ * // ... provide data here
924
+ * ]
925
+ * })
926
+ *
927
+ */
928
+ createMany<T extends DatasetCreateManyArgs>(args?: Prisma.SelectSubset<T, DatasetCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
929
+ /**
930
+ * Create many Datasets and returns the data saved in the database.
931
+ * @param {DatasetCreateManyAndReturnArgs} args - Arguments to create many Datasets.
932
+ * @example
933
+ * // Create many Datasets
934
+ * const dataset = await prisma.dataset.createManyAndReturn({
935
+ * data: [
936
+ * // ... provide data here
937
+ * ]
938
+ * })
939
+ *
940
+ * // Create many Datasets and only return the `id`
941
+ * const datasetWithIdOnly = await prisma.dataset.createManyAndReturn({
942
+ * select: { id: true },
943
+ * data: [
944
+ * // ... provide data here
945
+ * ]
946
+ * })
947
+ * Note, that providing `undefined` is treated as the value not being there.
948
+ * Read more here: https://pris.ly/d/null-undefined
949
+ *
950
+ */
951
+ createManyAndReturn<T extends DatasetCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, DatasetCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
952
+ /**
953
+ * Delete a Dataset.
954
+ * @param {DatasetDeleteArgs} args - Arguments to delete one Dataset.
955
+ * @example
956
+ * // Delete one Dataset
957
+ * const Dataset = await prisma.dataset.delete({
958
+ * where: {
959
+ * // ... filter to delete one Dataset
960
+ * }
961
+ * })
962
+ *
963
+ */
964
+ delete<T extends DatasetDeleteArgs>(args: Prisma.SelectSubset<T, DatasetDeleteArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
965
+ /**
966
+ * Update one Dataset.
967
+ * @param {DatasetUpdateArgs} args - Arguments to update one Dataset.
968
+ * @example
969
+ * // Update one Dataset
970
+ * const dataset = await prisma.dataset.update({
971
+ * where: {
972
+ * // ... provide filter here
973
+ * },
974
+ * data: {
975
+ * // ... provide data here
976
+ * }
977
+ * })
978
+ *
979
+ */
980
+ update<T extends DatasetUpdateArgs>(args: Prisma.SelectSubset<T, DatasetUpdateArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
981
+ /**
982
+ * Delete zero or more Datasets.
983
+ * @param {DatasetDeleteManyArgs} args - Arguments to filter Datasets to delete.
984
+ * @example
985
+ * // Delete a few Datasets
986
+ * const { count } = await prisma.dataset.deleteMany({
987
+ * where: {
988
+ * // ... provide filter here
989
+ * }
990
+ * })
991
+ *
992
+ */
993
+ deleteMany<T extends DatasetDeleteManyArgs>(args?: Prisma.SelectSubset<T, DatasetDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
994
+ /**
995
+ * Update zero or more Datasets.
996
+ * Note, that providing `undefined` is treated as the value not being there.
997
+ * Read more here: https://pris.ly/d/null-undefined
998
+ * @param {DatasetUpdateManyArgs} args - Arguments to update one or more rows.
999
+ * @example
1000
+ * // Update many Datasets
1001
+ * const dataset = await prisma.dataset.updateMany({
1002
+ * where: {
1003
+ * // ... provide filter here
1004
+ * },
1005
+ * data: {
1006
+ * // ... provide data here
1007
+ * }
1008
+ * })
1009
+ *
1010
+ */
1011
+ updateMany<T extends DatasetUpdateManyArgs>(args: Prisma.SelectSubset<T, DatasetUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
1012
+ /**
1013
+ * Update zero or more Datasets and returns the data updated in the database.
1014
+ * @param {DatasetUpdateManyAndReturnArgs} args - Arguments to update many Datasets.
1015
+ * @example
1016
+ * // Update many Datasets
1017
+ * const dataset = await prisma.dataset.updateManyAndReturn({
1018
+ * where: {
1019
+ * // ... provide filter here
1020
+ * },
1021
+ * data: [
1022
+ * // ... provide data here
1023
+ * ]
1024
+ * })
1025
+ *
1026
+ * // Update zero or more Datasets and only return the `id`
1027
+ * const datasetWithIdOnly = await prisma.dataset.updateManyAndReturn({
1028
+ * select: { id: true },
1029
+ * where: {
1030
+ * // ... provide filter here
1031
+ * },
1032
+ * data: [
1033
+ * // ... provide data here
1034
+ * ]
1035
+ * })
1036
+ * Note, that providing `undefined` is treated as the value not being there.
1037
+ * Read more here: https://pris.ly/d/null-undefined
1038
+ *
1039
+ */
1040
+ updateManyAndReturn<T extends DatasetUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, DatasetUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
1041
+ /**
1042
+ * Create or update one Dataset.
1043
+ * @param {DatasetUpsertArgs} args - Arguments to update or create a Dataset.
1044
+ * @example
1045
+ * // Update or create a Dataset
1046
+ * const dataset = await prisma.dataset.upsert({
1047
+ * create: {
1048
+ * // ... data to create a Dataset
1049
+ * },
1050
+ * update: {
1051
+ * // ... in case it already exists, update
1052
+ * },
1053
+ * where: {
1054
+ * // ... the filter for the Dataset we want to update
1055
+ * }
1056
+ * })
1057
+ */
1058
+ upsert<T extends DatasetUpsertArgs>(args: Prisma.SelectSubset<T, DatasetUpsertArgs<ExtArgs>>): Prisma.Prisma__DatasetClient<runtime.Types.Result.GetResult<Prisma.$DatasetPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
1059
+ /**
1060
+ * Count the number of Datasets.
1061
+ * Note, that providing `undefined` is treated as the value not being there.
1062
+ * Read more here: https://pris.ly/d/null-undefined
1063
+ * @param {DatasetCountArgs} args - Arguments to filter Datasets to count.
1064
+ * @example
1065
+ * // Count the number of Datasets
1066
+ * const count = await prisma.dataset.count({
1067
+ * where: {
1068
+ * // ... the filter for the Datasets we want to count
1069
+ * }
1070
+ * })
1071
+ **/
1072
+ count<T extends DatasetCountArgs>(args?: Prisma.Subset<T, DatasetCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], DatasetCountAggregateOutputType> : number>;
1073
+ /**
1074
+ * Allows you to perform aggregations operations on a Dataset.
1075
+ * Note, that providing `undefined` is treated as the value not being there.
1076
+ * Read more here: https://pris.ly/d/null-undefined
1077
+ * @param {DatasetAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
1078
+ * @example
1079
+ * // Ordered by age ascending
1080
+ * // Where email contains prisma.io
1081
+ * // Limited to the 10 users
1082
+ * const aggregations = await prisma.user.aggregate({
1083
+ * _avg: {
1084
+ * age: true,
1085
+ * },
1086
+ * where: {
1087
+ * email: {
1088
+ * contains: "prisma.io",
1089
+ * },
1090
+ * },
1091
+ * orderBy: {
1092
+ * age: "asc",
1093
+ * },
1094
+ * take: 10,
1095
+ * })
1096
+ **/
1097
+ aggregate<T extends DatasetAggregateArgs>(args: Prisma.Subset<T, DatasetAggregateArgs>): Prisma.PrismaPromise<GetDatasetAggregateType<T>>;
1098
+ /**
1099
+ * Group by Dataset.
1100
+ * Note, that providing `undefined` is treated as the value not being there.
1101
+ * Read more here: https://pris.ly/d/null-undefined
1102
+ * @param {DatasetGroupByArgs} args - Group by arguments.
1103
+ * @example
1104
+ * // Group by city, order by createdAt, get count
1105
+ * const result = await prisma.user.groupBy({
1106
+ * by: ['city', 'createdAt'],
1107
+ * orderBy: {
1108
+ * createdAt: true
1109
+ * },
1110
+ * _count: {
1111
+ * _all: true
1112
+ * },
1113
+ * })
1114
+ *
1115
+ **/
1116
+ groupBy<T extends DatasetGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
1117
+ orderBy: DatasetGroupByArgs['orderBy'];
1118
+ } : {
1119
+ orderBy?: DatasetGroupByArgs['orderBy'];
1120
+ }, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
1121
+ [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
1122
+ Error,
1123
+ 'Field ',
1124
+ P,
1125
+ ` in "having" needs to be provided in "by"`
1126
+ ];
1127
+ }[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
1128
+ [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
1129
+ }[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
1130
+ [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
1131
+ }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
1132
+ [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
1133
+ }[OrderFields]>(args: Prisma.SubsetIntersection<T, DatasetGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetDatasetGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
1134
+ /**
1135
+ * Fields of the Dataset model
1136
+ */
1137
+ readonly fields: DatasetFieldRefs;
1138
+ }
1139
+ /**
1140
+ * The delegate class that acts as a "Promise-like" for Dataset.
1141
+ * Why is this prefixed with `Prisma__`?
1142
+ * Because we want to prevent naming conflicts as mentioned in
1143
+ * https://github.com/prisma/prisma-client-js/issues/707
1144
+ */
1145
+ export interface Prisma__DatasetClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
1146
+ readonly [Symbol.toStringTag]: "PrismaPromise";
1147
+ books<T extends Prisma.Dataset$booksArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Dataset$booksArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetBookPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1148
+ chapters<T extends Prisma.Dataset$chaptersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Dataset$chaptersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetChapterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1149
+ verses<T extends Prisma.Dataset$versesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Dataset$versesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetChapterVersePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1150
+ references<T extends Prisma.Dataset$referencesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Dataset$referencesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DatasetReferencePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1151
+ /**
1152
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
1153
+ * @param onfulfilled The callback to execute when the Promise is resolved.
1154
+ * @param onrejected The callback to execute when the Promise is rejected.
1155
+ * @returns A Promise for the completion of which ever callback is executed.
1156
+ */
1157
+ 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>;
1158
+ /**
1159
+ * Attaches a callback for only the rejection of the Promise.
1160
+ * @param onrejected The callback to execute when the Promise is rejected.
1161
+ * @returns A Promise for the completion of the callback.
1162
+ */
1163
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
1164
+ /**
1165
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
1166
+ * resolved value cannot be modified from the callback.
1167
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
1168
+ * @returns A Promise for the completion of the callback.
1169
+ */
1170
+ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
1171
+ }
1172
+ /**
1173
+ * Fields of the Dataset model
1174
+ */
1175
+ export interface DatasetFieldRefs {
1176
+ readonly id: Prisma.FieldRef<"Dataset", 'String'>;
1177
+ readonly name: Prisma.FieldRef<"Dataset", 'String'>;
1178
+ readonly website: Prisma.FieldRef<"Dataset", 'String'>;
1179
+ readonly licenseUrl: Prisma.FieldRef<"Dataset", 'String'>;
1180
+ readonly licenseNotes: Prisma.FieldRef<"Dataset", 'String'>;
1181
+ readonly englishName: Prisma.FieldRef<"Dataset", 'String'>;
1182
+ readonly language: Prisma.FieldRef<"Dataset", 'String'>;
1183
+ readonly textDirection: Prisma.FieldRef<"Dataset", 'String'>;
1184
+ readonly sha256: Prisma.FieldRef<"Dataset", 'String'>;
1185
+ }
1186
+ /**
1187
+ * Dataset findUnique
1188
+ */
1189
+ export type DatasetFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1190
+ /**
1191
+ * Select specific fields to fetch from the Dataset
1192
+ */
1193
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1194
+ /**
1195
+ * Omit specific fields from the Dataset
1196
+ */
1197
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1198
+ /**
1199
+ * Choose, which related nodes to fetch as well
1200
+ */
1201
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1202
+ /**
1203
+ * Filter, which Dataset to fetch.
1204
+ */
1205
+ where: Prisma.DatasetWhereUniqueInput;
1206
+ };
1207
+ /**
1208
+ * Dataset findUniqueOrThrow
1209
+ */
1210
+ export type DatasetFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1211
+ /**
1212
+ * Select specific fields to fetch from the Dataset
1213
+ */
1214
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1215
+ /**
1216
+ * Omit specific fields from the Dataset
1217
+ */
1218
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1219
+ /**
1220
+ * Choose, which related nodes to fetch as well
1221
+ */
1222
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1223
+ /**
1224
+ * Filter, which Dataset to fetch.
1225
+ */
1226
+ where: Prisma.DatasetWhereUniqueInput;
1227
+ };
1228
+ /**
1229
+ * Dataset findFirst
1230
+ */
1231
+ export type DatasetFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1232
+ /**
1233
+ * Select specific fields to fetch from the Dataset
1234
+ */
1235
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1236
+ /**
1237
+ * Omit specific fields from the Dataset
1238
+ */
1239
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1240
+ /**
1241
+ * Choose, which related nodes to fetch as well
1242
+ */
1243
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1244
+ /**
1245
+ * Filter, which Dataset to fetch.
1246
+ */
1247
+ where?: Prisma.DatasetWhereInput;
1248
+ /**
1249
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1250
+ *
1251
+ * Determine the order of Datasets to fetch.
1252
+ */
1253
+ orderBy?: Prisma.DatasetOrderByWithRelationInput | Prisma.DatasetOrderByWithRelationInput[];
1254
+ /**
1255
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1256
+ *
1257
+ * Sets the position for searching for Datasets.
1258
+ */
1259
+ cursor?: Prisma.DatasetWhereUniqueInput;
1260
+ /**
1261
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1262
+ *
1263
+ * Take `±n` Datasets from the position of the cursor.
1264
+ */
1265
+ take?: number;
1266
+ /**
1267
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1268
+ *
1269
+ * Skip the first `n` Datasets.
1270
+ */
1271
+ skip?: number;
1272
+ /**
1273
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1274
+ *
1275
+ * Filter by unique combinations of Datasets.
1276
+ */
1277
+ distinct?: Prisma.DatasetScalarFieldEnum | Prisma.DatasetScalarFieldEnum[];
1278
+ };
1279
+ /**
1280
+ * Dataset findFirstOrThrow
1281
+ */
1282
+ export type DatasetFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1283
+ /**
1284
+ * Select specific fields to fetch from the Dataset
1285
+ */
1286
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1287
+ /**
1288
+ * Omit specific fields from the Dataset
1289
+ */
1290
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1291
+ /**
1292
+ * Choose, which related nodes to fetch as well
1293
+ */
1294
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1295
+ /**
1296
+ * Filter, which Dataset to fetch.
1297
+ */
1298
+ where?: Prisma.DatasetWhereInput;
1299
+ /**
1300
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1301
+ *
1302
+ * Determine the order of Datasets to fetch.
1303
+ */
1304
+ orderBy?: Prisma.DatasetOrderByWithRelationInput | Prisma.DatasetOrderByWithRelationInput[];
1305
+ /**
1306
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1307
+ *
1308
+ * Sets the position for searching for Datasets.
1309
+ */
1310
+ cursor?: Prisma.DatasetWhereUniqueInput;
1311
+ /**
1312
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1313
+ *
1314
+ * Take `±n` Datasets from the position of the cursor.
1315
+ */
1316
+ take?: number;
1317
+ /**
1318
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1319
+ *
1320
+ * Skip the first `n` Datasets.
1321
+ */
1322
+ skip?: number;
1323
+ /**
1324
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1325
+ *
1326
+ * Filter by unique combinations of Datasets.
1327
+ */
1328
+ distinct?: Prisma.DatasetScalarFieldEnum | Prisma.DatasetScalarFieldEnum[];
1329
+ };
1330
+ /**
1331
+ * Dataset findMany
1332
+ */
1333
+ export type DatasetFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1334
+ /**
1335
+ * Select specific fields to fetch from the Dataset
1336
+ */
1337
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1338
+ /**
1339
+ * Omit specific fields from the Dataset
1340
+ */
1341
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1342
+ /**
1343
+ * Choose, which related nodes to fetch as well
1344
+ */
1345
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1346
+ /**
1347
+ * Filter, which Datasets to fetch.
1348
+ */
1349
+ where?: Prisma.DatasetWhereInput;
1350
+ /**
1351
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1352
+ *
1353
+ * Determine the order of Datasets to fetch.
1354
+ */
1355
+ orderBy?: Prisma.DatasetOrderByWithRelationInput | Prisma.DatasetOrderByWithRelationInput[];
1356
+ /**
1357
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1358
+ *
1359
+ * Sets the position for listing Datasets.
1360
+ */
1361
+ cursor?: Prisma.DatasetWhereUniqueInput;
1362
+ /**
1363
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1364
+ *
1365
+ * Take `±n` Datasets from the position of the cursor.
1366
+ */
1367
+ take?: number;
1368
+ /**
1369
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1370
+ *
1371
+ * Skip the first `n` Datasets.
1372
+ */
1373
+ skip?: number;
1374
+ /**
1375
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1376
+ *
1377
+ * Filter by unique combinations of Datasets.
1378
+ */
1379
+ distinct?: Prisma.DatasetScalarFieldEnum | Prisma.DatasetScalarFieldEnum[];
1380
+ };
1381
+ /**
1382
+ * Dataset create
1383
+ */
1384
+ export type DatasetCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1385
+ /**
1386
+ * Select specific fields to fetch from the Dataset
1387
+ */
1388
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1389
+ /**
1390
+ * Omit specific fields from the Dataset
1391
+ */
1392
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1393
+ /**
1394
+ * Choose, which related nodes to fetch as well
1395
+ */
1396
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1397
+ /**
1398
+ * The data needed to create a Dataset.
1399
+ */
1400
+ data: Prisma.XOR<Prisma.DatasetCreateInput, Prisma.DatasetUncheckedCreateInput>;
1401
+ };
1402
+ /**
1403
+ * Dataset createMany
1404
+ */
1405
+ export type DatasetCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1406
+ /**
1407
+ * The data used to create many Datasets.
1408
+ */
1409
+ data: Prisma.DatasetCreateManyInput | Prisma.DatasetCreateManyInput[];
1410
+ };
1411
+ /**
1412
+ * Dataset createManyAndReturn
1413
+ */
1414
+ export type DatasetCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1415
+ /**
1416
+ * Select specific fields to fetch from the Dataset
1417
+ */
1418
+ select?: Prisma.DatasetSelectCreateManyAndReturn<ExtArgs> | null;
1419
+ /**
1420
+ * Omit specific fields from the Dataset
1421
+ */
1422
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1423
+ /**
1424
+ * The data used to create many Datasets.
1425
+ */
1426
+ data: Prisma.DatasetCreateManyInput | Prisma.DatasetCreateManyInput[];
1427
+ };
1428
+ /**
1429
+ * Dataset update
1430
+ */
1431
+ export type DatasetUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1432
+ /**
1433
+ * Select specific fields to fetch from the Dataset
1434
+ */
1435
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1436
+ /**
1437
+ * Omit specific fields from the Dataset
1438
+ */
1439
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1440
+ /**
1441
+ * Choose, which related nodes to fetch as well
1442
+ */
1443
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1444
+ /**
1445
+ * The data needed to update a Dataset.
1446
+ */
1447
+ data: Prisma.XOR<Prisma.DatasetUpdateInput, Prisma.DatasetUncheckedUpdateInput>;
1448
+ /**
1449
+ * Choose, which Dataset to update.
1450
+ */
1451
+ where: Prisma.DatasetWhereUniqueInput;
1452
+ };
1453
+ /**
1454
+ * Dataset updateMany
1455
+ */
1456
+ export type DatasetUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1457
+ /**
1458
+ * The data used to update Datasets.
1459
+ */
1460
+ data: Prisma.XOR<Prisma.DatasetUpdateManyMutationInput, Prisma.DatasetUncheckedUpdateManyInput>;
1461
+ /**
1462
+ * Filter which Datasets to update
1463
+ */
1464
+ where?: Prisma.DatasetWhereInput;
1465
+ /**
1466
+ * Limit how many Datasets to update.
1467
+ */
1468
+ limit?: number;
1469
+ };
1470
+ /**
1471
+ * Dataset updateManyAndReturn
1472
+ */
1473
+ export type DatasetUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1474
+ /**
1475
+ * Select specific fields to fetch from the Dataset
1476
+ */
1477
+ select?: Prisma.DatasetSelectUpdateManyAndReturn<ExtArgs> | null;
1478
+ /**
1479
+ * Omit specific fields from the Dataset
1480
+ */
1481
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1482
+ /**
1483
+ * The data used to update Datasets.
1484
+ */
1485
+ data: Prisma.XOR<Prisma.DatasetUpdateManyMutationInput, Prisma.DatasetUncheckedUpdateManyInput>;
1486
+ /**
1487
+ * Filter which Datasets to update
1488
+ */
1489
+ where?: Prisma.DatasetWhereInput;
1490
+ /**
1491
+ * Limit how many Datasets to update.
1492
+ */
1493
+ limit?: number;
1494
+ };
1495
+ /**
1496
+ * Dataset upsert
1497
+ */
1498
+ export type DatasetUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1499
+ /**
1500
+ * Select specific fields to fetch from the Dataset
1501
+ */
1502
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1503
+ /**
1504
+ * Omit specific fields from the Dataset
1505
+ */
1506
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1507
+ /**
1508
+ * Choose, which related nodes to fetch as well
1509
+ */
1510
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1511
+ /**
1512
+ * The filter to search for the Dataset to update in case it exists.
1513
+ */
1514
+ where: Prisma.DatasetWhereUniqueInput;
1515
+ /**
1516
+ * In case the Dataset found by the `where` argument doesn't exist, create a new Dataset with this data.
1517
+ */
1518
+ create: Prisma.XOR<Prisma.DatasetCreateInput, Prisma.DatasetUncheckedCreateInput>;
1519
+ /**
1520
+ * In case the Dataset was found with the provided `where` argument, update it with this data.
1521
+ */
1522
+ update: Prisma.XOR<Prisma.DatasetUpdateInput, Prisma.DatasetUncheckedUpdateInput>;
1523
+ };
1524
+ /**
1525
+ * Dataset delete
1526
+ */
1527
+ export type DatasetDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1528
+ /**
1529
+ * Select specific fields to fetch from the Dataset
1530
+ */
1531
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1532
+ /**
1533
+ * Omit specific fields from the Dataset
1534
+ */
1535
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1536
+ /**
1537
+ * Choose, which related nodes to fetch as well
1538
+ */
1539
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1540
+ /**
1541
+ * Filter which Dataset to delete.
1542
+ */
1543
+ where: Prisma.DatasetWhereUniqueInput;
1544
+ };
1545
+ /**
1546
+ * Dataset deleteMany
1547
+ */
1548
+ export type DatasetDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1549
+ /**
1550
+ * Filter which Datasets to delete
1551
+ */
1552
+ where?: Prisma.DatasetWhereInput;
1553
+ /**
1554
+ * Limit how many Datasets to delete.
1555
+ */
1556
+ limit?: number;
1557
+ };
1558
+ /**
1559
+ * Dataset.books
1560
+ */
1561
+ export type Dataset$booksArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1562
+ /**
1563
+ * Select specific fields to fetch from the DatasetBook
1564
+ */
1565
+ select?: Prisma.DatasetBookSelect<ExtArgs> | null;
1566
+ /**
1567
+ * Omit specific fields from the DatasetBook
1568
+ */
1569
+ omit?: Prisma.DatasetBookOmit<ExtArgs> | null;
1570
+ /**
1571
+ * Choose, which related nodes to fetch as well
1572
+ */
1573
+ include?: Prisma.DatasetBookInclude<ExtArgs> | null;
1574
+ where?: Prisma.DatasetBookWhereInput;
1575
+ orderBy?: Prisma.DatasetBookOrderByWithRelationInput | Prisma.DatasetBookOrderByWithRelationInput[];
1576
+ cursor?: Prisma.DatasetBookWhereUniqueInput;
1577
+ take?: number;
1578
+ skip?: number;
1579
+ distinct?: Prisma.DatasetBookScalarFieldEnum | Prisma.DatasetBookScalarFieldEnum[];
1580
+ };
1581
+ /**
1582
+ * Dataset.chapters
1583
+ */
1584
+ export type Dataset$chaptersArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1585
+ /**
1586
+ * Select specific fields to fetch from the DatasetChapter
1587
+ */
1588
+ select?: Prisma.DatasetChapterSelect<ExtArgs> | null;
1589
+ /**
1590
+ * Omit specific fields from the DatasetChapter
1591
+ */
1592
+ omit?: Prisma.DatasetChapterOmit<ExtArgs> | null;
1593
+ /**
1594
+ * Choose, which related nodes to fetch as well
1595
+ */
1596
+ include?: Prisma.DatasetChapterInclude<ExtArgs> | null;
1597
+ where?: Prisma.DatasetChapterWhereInput;
1598
+ orderBy?: Prisma.DatasetChapterOrderByWithRelationInput | Prisma.DatasetChapterOrderByWithRelationInput[];
1599
+ cursor?: Prisma.DatasetChapterWhereUniqueInput;
1600
+ take?: number;
1601
+ skip?: number;
1602
+ distinct?: Prisma.DatasetChapterScalarFieldEnum | Prisma.DatasetChapterScalarFieldEnum[];
1603
+ };
1604
+ /**
1605
+ * Dataset.verses
1606
+ */
1607
+ export type Dataset$versesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1608
+ /**
1609
+ * Select specific fields to fetch from the DatasetChapterVerse
1610
+ */
1611
+ select?: Prisma.DatasetChapterVerseSelect<ExtArgs> | null;
1612
+ /**
1613
+ * Omit specific fields from the DatasetChapterVerse
1614
+ */
1615
+ omit?: Prisma.DatasetChapterVerseOmit<ExtArgs> | null;
1616
+ /**
1617
+ * Choose, which related nodes to fetch as well
1618
+ */
1619
+ include?: Prisma.DatasetChapterVerseInclude<ExtArgs> | null;
1620
+ where?: Prisma.DatasetChapterVerseWhereInput;
1621
+ orderBy?: Prisma.DatasetChapterVerseOrderByWithRelationInput | Prisma.DatasetChapterVerseOrderByWithRelationInput[];
1622
+ cursor?: Prisma.DatasetChapterVerseWhereUniqueInput;
1623
+ take?: number;
1624
+ skip?: number;
1625
+ distinct?: Prisma.DatasetChapterVerseScalarFieldEnum | Prisma.DatasetChapterVerseScalarFieldEnum[];
1626
+ };
1627
+ /**
1628
+ * Dataset.references
1629
+ */
1630
+ export type Dataset$referencesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1631
+ /**
1632
+ * Select specific fields to fetch from the DatasetReference
1633
+ */
1634
+ select?: Prisma.DatasetReferenceSelect<ExtArgs> | null;
1635
+ /**
1636
+ * Omit specific fields from the DatasetReference
1637
+ */
1638
+ omit?: Prisma.DatasetReferenceOmit<ExtArgs> | null;
1639
+ /**
1640
+ * Choose, which related nodes to fetch as well
1641
+ */
1642
+ include?: Prisma.DatasetReferenceInclude<ExtArgs> | null;
1643
+ where?: Prisma.DatasetReferenceWhereInput;
1644
+ orderBy?: Prisma.DatasetReferenceOrderByWithRelationInput | Prisma.DatasetReferenceOrderByWithRelationInput[];
1645
+ cursor?: Prisma.DatasetReferenceWhereUniqueInput;
1646
+ take?: number;
1647
+ skip?: number;
1648
+ distinct?: Prisma.DatasetReferenceScalarFieldEnum | Prisma.DatasetReferenceScalarFieldEnum[];
1649
+ };
1650
+ /**
1651
+ * Dataset without action
1652
+ */
1653
+ export type DatasetDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1654
+ /**
1655
+ * Select specific fields to fetch from the Dataset
1656
+ */
1657
+ select?: Prisma.DatasetSelect<ExtArgs> | null;
1658
+ /**
1659
+ * Omit specific fields from the Dataset
1660
+ */
1661
+ omit?: Prisma.DatasetOmit<ExtArgs> | null;
1662
+ /**
1663
+ * Choose, which related nodes to fetch as well
1664
+ */
1665
+ include?: Prisma.DatasetInclude<ExtArgs> | null;
1666
+ };
1667
+ //# sourceMappingURL=Dataset.d.ts.map