@helloao/cli 0.0.12 → 0.0.14
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/README.md +24 -20
- package/dist/cjs/cli.cjs +1656 -2218
- package/dist/cjs/index.cjs +1793 -2400
- package/dist/esm/index.js +947 -202
- package/dist/esm/index.js.map +4 -4
- package/dist/types/actions.d.ts +61 -7
- package/dist/types/conversion.d.ts +13 -0
- package/dist/types/db.d.ts +8 -4
- package/dist/types/downloads.d.ts +12 -0
- package/dist/types/ebible.d.ts +6 -0
- package/meta/ARBNAV.json +10 -0
- package/meta/BSB.json +10 -0
- package/meta/HBOMAS.json +10 -0
- package/meta/HINIRV.json +10 -0
- package/meta/eng_dra.json +10 -0
- package/migrations/20250212175023_add_ebible_sources/migration.sql +24 -0
- package/migrations/20250212183533_add_usfm_download_date/migration.sql +39 -0
- package/migrations/20250212193627_add_usfm_download_path/migration.sql +2 -0
- package/migrations/20250625201152_add_extra_ebible_metadata/migration.sql +3 -0
- package/migrations/20250630200532_add_apocryhpa_flag/migration.sql +2 -0
- package/migrations/20250701195337_add_file_warnings/migration.sql +8 -0
- package/package.json +6 -3
- package/prisma-gen/edge.js +41 -4
- package/prisma-gen/index-browser.js +38 -0
- package/prisma-gen/index.d.ts +3416 -334
- package/prisma-gen/index.js +41 -4
- package/prisma-gen/wasm.js +38 -0
- package/schema.prisma +61 -0
package/prisma-gen/index.d.ts
CHANGED
|
@@ -23,11 +23,21 @@ export type Translation = $Result.DefaultSelection<Prisma.$TranslationPayload>
|
|
|
23
23
|
*
|
|
24
24
|
*/
|
|
25
25
|
export type Commentary = $Result.DefaultSelection<Prisma.$CommentaryPayload>
|
|
26
|
+
/**
|
|
27
|
+
* Model EBibleSource
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export type EBibleSource = $Result.DefaultSelection<Prisma.$EBibleSourcePayload>
|
|
26
31
|
/**
|
|
27
32
|
* Model InputFile
|
|
28
33
|
*
|
|
29
34
|
*/
|
|
30
35
|
export type InputFile = $Result.DefaultSelection<Prisma.$InputFilePayload>
|
|
36
|
+
/**
|
|
37
|
+
* Model InputFileWarning
|
|
38
|
+
*
|
|
39
|
+
*/
|
|
40
|
+
export type InputFileWarning = $Result.DefaultSelection<Prisma.$InputFileWarningPayload>
|
|
31
41
|
/**
|
|
32
42
|
* Model Book
|
|
33
43
|
*
|
|
@@ -217,6 +227,16 @@ export class PrismaClient<
|
|
|
217
227
|
*/
|
|
218
228
|
get commentary(): Prisma.CommentaryDelegate<ExtArgs>;
|
|
219
229
|
|
|
230
|
+
/**
|
|
231
|
+
* `prisma.eBibleSource`: Exposes CRUD operations for the **EBibleSource** model.
|
|
232
|
+
* Example usage:
|
|
233
|
+
* ```ts
|
|
234
|
+
* // Fetch zero or more EBibleSources
|
|
235
|
+
* const eBibleSources = await prisma.eBibleSource.findMany()
|
|
236
|
+
* ```
|
|
237
|
+
*/
|
|
238
|
+
get eBibleSource(): Prisma.EBibleSourceDelegate<ExtArgs>;
|
|
239
|
+
|
|
220
240
|
/**
|
|
221
241
|
* `prisma.inputFile`: Exposes CRUD operations for the **InputFile** model.
|
|
222
242
|
* Example usage:
|
|
@@ -227,6 +247,16 @@ export class PrismaClient<
|
|
|
227
247
|
*/
|
|
228
248
|
get inputFile(): Prisma.InputFileDelegate<ExtArgs>;
|
|
229
249
|
|
|
250
|
+
/**
|
|
251
|
+
* `prisma.inputFileWarning`: Exposes CRUD operations for the **InputFileWarning** model.
|
|
252
|
+
* Example usage:
|
|
253
|
+
* ```ts
|
|
254
|
+
* // Fetch zero or more InputFileWarnings
|
|
255
|
+
* const inputFileWarnings = await prisma.inputFileWarning.findMany()
|
|
256
|
+
* ```
|
|
257
|
+
*/
|
|
258
|
+
get inputFileWarning(): Prisma.InputFileWarningDelegate<ExtArgs>;
|
|
259
|
+
|
|
230
260
|
/**
|
|
231
261
|
* `prisma.book`: Exposes CRUD operations for the **Book** model.
|
|
232
262
|
* Example usage:
|
|
@@ -759,7 +789,9 @@ export namespace Prisma {
|
|
|
759
789
|
export const ModelName: {
|
|
760
790
|
Translation: 'Translation',
|
|
761
791
|
Commentary: 'Commentary',
|
|
792
|
+
EBibleSource: 'EBibleSource',
|
|
762
793
|
InputFile: 'InputFile',
|
|
794
|
+
InputFileWarning: 'InputFileWarning',
|
|
763
795
|
Book: 'Book',
|
|
764
796
|
CommentaryBook: 'CommentaryBook',
|
|
765
797
|
CommentaryProfile: 'CommentaryProfile',
|
|
@@ -784,7 +816,7 @@ export namespace Prisma {
|
|
|
784
816
|
|
|
785
817
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
786
818
|
meta: {
|
|
787
|
-
modelProps: "translation" | "commentary" | "inputFile" | "book" | "commentaryBook" | "commentaryProfile" | "chapter" | "commentaryChapter" | "chapterAudioUrl" | "chapterVerse" | "commentaryChapterVerse" | "chapterFootnote"
|
|
819
|
+
modelProps: "translation" | "commentary" | "eBibleSource" | "inputFile" | "inputFileWarning" | "book" | "commentaryBook" | "commentaryProfile" | "chapter" | "commentaryChapter" | "chapterAudioUrl" | "chapterVerse" | "commentaryChapterVerse" | "chapterFootnote"
|
|
788
820
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
789
821
|
}
|
|
790
822
|
model: {
|
|
@@ -928,6 +960,76 @@ export namespace Prisma {
|
|
|
928
960
|
}
|
|
929
961
|
}
|
|
930
962
|
}
|
|
963
|
+
EBibleSource: {
|
|
964
|
+
payload: Prisma.$EBibleSourcePayload<ExtArgs>
|
|
965
|
+
fields: Prisma.EBibleSourceFieldRefs
|
|
966
|
+
operations: {
|
|
967
|
+
findUnique: {
|
|
968
|
+
args: Prisma.EBibleSourceFindUniqueArgs<ExtArgs>
|
|
969
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload> | null
|
|
970
|
+
}
|
|
971
|
+
findUniqueOrThrow: {
|
|
972
|
+
args: Prisma.EBibleSourceFindUniqueOrThrowArgs<ExtArgs>
|
|
973
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>
|
|
974
|
+
}
|
|
975
|
+
findFirst: {
|
|
976
|
+
args: Prisma.EBibleSourceFindFirstArgs<ExtArgs>
|
|
977
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload> | null
|
|
978
|
+
}
|
|
979
|
+
findFirstOrThrow: {
|
|
980
|
+
args: Prisma.EBibleSourceFindFirstOrThrowArgs<ExtArgs>
|
|
981
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>
|
|
982
|
+
}
|
|
983
|
+
findMany: {
|
|
984
|
+
args: Prisma.EBibleSourceFindManyArgs<ExtArgs>
|
|
985
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>[]
|
|
986
|
+
}
|
|
987
|
+
create: {
|
|
988
|
+
args: Prisma.EBibleSourceCreateArgs<ExtArgs>
|
|
989
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>
|
|
990
|
+
}
|
|
991
|
+
createMany: {
|
|
992
|
+
args: Prisma.EBibleSourceCreateManyArgs<ExtArgs>
|
|
993
|
+
result: BatchPayload
|
|
994
|
+
}
|
|
995
|
+
createManyAndReturn: {
|
|
996
|
+
args: Prisma.EBibleSourceCreateManyAndReturnArgs<ExtArgs>
|
|
997
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>[]
|
|
998
|
+
}
|
|
999
|
+
delete: {
|
|
1000
|
+
args: Prisma.EBibleSourceDeleteArgs<ExtArgs>
|
|
1001
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>
|
|
1002
|
+
}
|
|
1003
|
+
update: {
|
|
1004
|
+
args: Prisma.EBibleSourceUpdateArgs<ExtArgs>
|
|
1005
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>
|
|
1006
|
+
}
|
|
1007
|
+
deleteMany: {
|
|
1008
|
+
args: Prisma.EBibleSourceDeleteManyArgs<ExtArgs>
|
|
1009
|
+
result: BatchPayload
|
|
1010
|
+
}
|
|
1011
|
+
updateMany: {
|
|
1012
|
+
args: Prisma.EBibleSourceUpdateManyArgs<ExtArgs>
|
|
1013
|
+
result: BatchPayload
|
|
1014
|
+
}
|
|
1015
|
+
upsert: {
|
|
1016
|
+
args: Prisma.EBibleSourceUpsertArgs<ExtArgs>
|
|
1017
|
+
result: $Utils.PayloadToResult<Prisma.$EBibleSourcePayload>
|
|
1018
|
+
}
|
|
1019
|
+
aggregate: {
|
|
1020
|
+
args: Prisma.EBibleSourceAggregateArgs<ExtArgs>
|
|
1021
|
+
result: $Utils.Optional<AggregateEBibleSource>
|
|
1022
|
+
}
|
|
1023
|
+
groupBy: {
|
|
1024
|
+
args: Prisma.EBibleSourceGroupByArgs<ExtArgs>
|
|
1025
|
+
result: $Utils.Optional<EBibleSourceGroupByOutputType>[]
|
|
1026
|
+
}
|
|
1027
|
+
count: {
|
|
1028
|
+
args: Prisma.EBibleSourceCountArgs<ExtArgs>
|
|
1029
|
+
result: $Utils.Optional<EBibleSourceCountAggregateOutputType> | number
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
931
1033
|
InputFile: {
|
|
932
1034
|
payload: Prisma.$InputFilePayload<ExtArgs>
|
|
933
1035
|
fields: Prisma.InputFileFieldRefs
|
|
@@ -998,6 +1100,76 @@ export namespace Prisma {
|
|
|
998
1100
|
}
|
|
999
1101
|
}
|
|
1000
1102
|
}
|
|
1103
|
+
InputFileWarning: {
|
|
1104
|
+
payload: Prisma.$InputFileWarningPayload<ExtArgs>
|
|
1105
|
+
fields: Prisma.InputFileWarningFieldRefs
|
|
1106
|
+
operations: {
|
|
1107
|
+
findUnique: {
|
|
1108
|
+
args: Prisma.InputFileWarningFindUniqueArgs<ExtArgs>
|
|
1109
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload> | null
|
|
1110
|
+
}
|
|
1111
|
+
findUniqueOrThrow: {
|
|
1112
|
+
args: Prisma.InputFileWarningFindUniqueOrThrowArgs<ExtArgs>
|
|
1113
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>
|
|
1114
|
+
}
|
|
1115
|
+
findFirst: {
|
|
1116
|
+
args: Prisma.InputFileWarningFindFirstArgs<ExtArgs>
|
|
1117
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload> | null
|
|
1118
|
+
}
|
|
1119
|
+
findFirstOrThrow: {
|
|
1120
|
+
args: Prisma.InputFileWarningFindFirstOrThrowArgs<ExtArgs>
|
|
1121
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>
|
|
1122
|
+
}
|
|
1123
|
+
findMany: {
|
|
1124
|
+
args: Prisma.InputFileWarningFindManyArgs<ExtArgs>
|
|
1125
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>[]
|
|
1126
|
+
}
|
|
1127
|
+
create: {
|
|
1128
|
+
args: Prisma.InputFileWarningCreateArgs<ExtArgs>
|
|
1129
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>
|
|
1130
|
+
}
|
|
1131
|
+
createMany: {
|
|
1132
|
+
args: Prisma.InputFileWarningCreateManyArgs<ExtArgs>
|
|
1133
|
+
result: BatchPayload
|
|
1134
|
+
}
|
|
1135
|
+
createManyAndReturn: {
|
|
1136
|
+
args: Prisma.InputFileWarningCreateManyAndReturnArgs<ExtArgs>
|
|
1137
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>[]
|
|
1138
|
+
}
|
|
1139
|
+
delete: {
|
|
1140
|
+
args: Prisma.InputFileWarningDeleteArgs<ExtArgs>
|
|
1141
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>
|
|
1142
|
+
}
|
|
1143
|
+
update: {
|
|
1144
|
+
args: Prisma.InputFileWarningUpdateArgs<ExtArgs>
|
|
1145
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>
|
|
1146
|
+
}
|
|
1147
|
+
deleteMany: {
|
|
1148
|
+
args: Prisma.InputFileWarningDeleteManyArgs<ExtArgs>
|
|
1149
|
+
result: BatchPayload
|
|
1150
|
+
}
|
|
1151
|
+
updateMany: {
|
|
1152
|
+
args: Prisma.InputFileWarningUpdateManyArgs<ExtArgs>
|
|
1153
|
+
result: BatchPayload
|
|
1154
|
+
}
|
|
1155
|
+
upsert: {
|
|
1156
|
+
args: Prisma.InputFileWarningUpsertArgs<ExtArgs>
|
|
1157
|
+
result: $Utils.PayloadToResult<Prisma.$InputFileWarningPayload>
|
|
1158
|
+
}
|
|
1159
|
+
aggregate: {
|
|
1160
|
+
args: Prisma.InputFileWarningAggregateArgs<ExtArgs>
|
|
1161
|
+
result: $Utils.Optional<AggregateInputFileWarning>
|
|
1162
|
+
}
|
|
1163
|
+
groupBy: {
|
|
1164
|
+
args: Prisma.InputFileWarningGroupByArgs<ExtArgs>
|
|
1165
|
+
result: $Utils.Optional<InputFileWarningGroupByOutputType>[]
|
|
1166
|
+
}
|
|
1167
|
+
count: {
|
|
1168
|
+
args: Prisma.InputFileWarningCountArgs<ExtArgs>
|
|
1169
|
+
result: $Utils.Optional<InputFileWarningCountAggregateOutputType> | number
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1001
1173
|
Book: {
|
|
1002
1174
|
payload: Prisma.$BookPayload<ExtArgs>
|
|
1003
1175
|
fields: Prisma.BookFieldRefs
|
|
@@ -4291,362 +4463,2410 @@ export namespace Prisma {
|
|
|
4291
4463
|
|
|
4292
4464
|
|
|
4293
4465
|
/**
|
|
4294
|
-
* Model
|
|
4466
|
+
* Model EBibleSource
|
|
4295
4467
|
*/
|
|
4296
4468
|
|
|
4297
|
-
export type
|
|
4298
|
-
_count:
|
|
4299
|
-
_avg:
|
|
4300
|
-
_sum:
|
|
4301
|
-
_min:
|
|
4302
|
-
_max:
|
|
4469
|
+
export type AggregateEBibleSource = {
|
|
4470
|
+
_count: EBibleSourceCountAggregateOutputType | null
|
|
4471
|
+
_avg: EBibleSourceAvgAggregateOutputType | null
|
|
4472
|
+
_sum: EBibleSourceSumAggregateOutputType | null
|
|
4473
|
+
_min: EBibleSourceMinAggregateOutputType | null
|
|
4474
|
+
_max: EBibleSourceMaxAggregateOutputType | null
|
|
4303
4475
|
}
|
|
4304
4476
|
|
|
4305
|
-
export type
|
|
4306
|
-
|
|
4477
|
+
export type EBibleSourceAvgAggregateOutputType = {
|
|
4478
|
+
oldTestamentBooks: number | null
|
|
4479
|
+
oldTestamentChapters: number | null
|
|
4480
|
+
oldTestamentVerses: number | null
|
|
4481
|
+
newTestamentBooks: number | null
|
|
4482
|
+
newTestamentChapters: number | null
|
|
4483
|
+
newTestamentVerses: number | null
|
|
4484
|
+
apocryphaBooks: number | null
|
|
4485
|
+
apocryphaChapters: number | null
|
|
4486
|
+
apocryphaVerses: number | null
|
|
4307
4487
|
}
|
|
4308
4488
|
|
|
4309
|
-
export type
|
|
4310
|
-
|
|
4489
|
+
export type EBibleSourceSumAggregateOutputType = {
|
|
4490
|
+
oldTestamentBooks: number | null
|
|
4491
|
+
oldTestamentChapters: number | null
|
|
4492
|
+
oldTestamentVerses: number | null
|
|
4493
|
+
newTestamentBooks: number | null
|
|
4494
|
+
newTestamentChapters: number | null
|
|
4495
|
+
newTestamentVerses: number | null
|
|
4496
|
+
apocryphaBooks: number | null
|
|
4497
|
+
apocryphaChapters: number | null
|
|
4498
|
+
apocryphaVerses: number | null
|
|
4311
4499
|
}
|
|
4312
4500
|
|
|
4313
|
-
export type
|
|
4501
|
+
export type EBibleSourceMinAggregateOutputType = {
|
|
4502
|
+
id: string | null
|
|
4503
|
+
usfmZipUrl: string | null
|
|
4504
|
+
usfmZipEtag: string | null
|
|
4505
|
+
languageCode: string | null
|
|
4506
|
+
title: string | null
|
|
4507
|
+
shortTitle: string | null
|
|
4508
|
+
textDirection: string | null
|
|
4509
|
+
redistributable: boolean | null
|
|
4510
|
+
description: string | null
|
|
4511
|
+
copyright: string | null
|
|
4512
|
+
FCBHID: string | null
|
|
4513
|
+
updateDate: Date | null
|
|
4514
|
+
sourceDate: Date | null
|
|
4515
|
+
oldTestamentBooks: number | null
|
|
4516
|
+
oldTestamentChapters: number | null
|
|
4517
|
+
oldTestamentVerses: number | null
|
|
4518
|
+
newTestamentBooks: number | null
|
|
4519
|
+
newTestamentChapters: number | null
|
|
4520
|
+
newTestamentVerses: number | null
|
|
4521
|
+
apocryphaBooks: number | null
|
|
4522
|
+
apocryphaChapters: number | null
|
|
4523
|
+
apocryphaVerses: number | null
|
|
4314
4524
|
translationId: string | null
|
|
4315
|
-
|
|
4316
|
-
|
|
4525
|
+
usfmDownloadDate: Date | null
|
|
4526
|
+
usfmDownloadPath: string | null
|
|
4317
4527
|
sha256: string | null
|
|
4318
|
-
sizeInBytes: number | null
|
|
4319
4528
|
}
|
|
4320
4529
|
|
|
4321
|
-
export type
|
|
4530
|
+
export type EBibleSourceMaxAggregateOutputType = {
|
|
4531
|
+
id: string | null
|
|
4532
|
+
usfmZipUrl: string | null
|
|
4533
|
+
usfmZipEtag: string | null
|
|
4534
|
+
languageCode: string | null
|
|
4535
|
+
title: string | null
|
|
4536
|
+
shortTitle: string | null
|
|
4537
|
+
textDirection: string | null
|
|
4538
|
+
redistributable: boolean | null
|
|
4539
|
+
description: string | null
|
|
4540
|
+
copyright: string | null
|
|
4541
|
+
FCBHID: string | null
|
|
4542
|
+
updateDate: Date | null
|
|
4543
|
+
sourceDate: Date | null
|
|
4544
|
+
oldTestamentBooks: number | null
|
|
4545
|
+
oldTestamentChapters: number | null
|
|
4546
|
+
oldTestamentVerses: number | null
|
|
4547
|
+
newTestamentBooks: number | null
|
|
4548
|
+
newTestamentChapters: number | null
|
|
4549
|
+
newTestamentVerses: number | null
|
|
4550
|
+
apocryphaBooks: number | null
|
|
4551
|
+
apocryphaChapters: number | null
|
|
4552
|
+
apocryphaVerses: number | null
|
|
4322
4553
|
translationId: string | null
|
|
4323
|
-
|
|
4324
|
-
|
|
4554
|
+
usfmDownloadDate: Date | null
|
|
4555
|
+
usfmDownloadPath: string | null
|
|
4325
4556
|
sha256: string | null
|
|
4326
|
-
sizeInBytes: number | null
|
|
4327
4557
|
}
|
|
4328
4558
|
|
|
4329
|
-
export type
|
|
4559
|
+
export type EBibleSourceCountAggregateOutputType = {
|
|
4560
|
+
id: number
|
|
4561
|
+
usfmZipUrl: number
|
|
4562
|
+
usfmZipEtag: number
|
|
4563
|
+
languageCode: number
|
|
4564
|
+
title: number
|
|
4565
|
+
shortTitle: number
|
|
4566
|
+
textDirection: number
|
|
4567
|
+
redistributable: number
|
|
4568
|
+
description: number
|
|
4569
|
+
copyright: number
|
|
4570
|
+
FCBHID: number
|
|
4571
|
+
updateDate: number
|
|
4572
|
+
sourceDate: number
|
|
4573
|
+
oldTestamentBooks: number
|
|
4574
|
+
oldTestamentChapters: number
|
|
4575
|
+
oldTestamentVerses: number
|
|
4576
|
+
newTestamentBooks: number
|
|
4577
|
+
newTestamentChapters: number
|
|
4578
|
+
newTestamentVerses: number
|
|
4579
|
+
apocryphaBooks: number
|
|
4580
|
+
apocryphaChapters: number
|
|
4581
|
+
apocryphaVerses: number
|
|
4330
4582
|
translationId: number
|
|
4331
|
-
|
|
4332
|
-
|
|
4583
|
+
usfmDownloadDate: number
|
|
4584
|
+
usfmDownloadPath: number
|
|
4333
4585
|
sha256: number
|
|
4334
|
-
sizeInBytes: number
|
|
4335
4586
|
_all: number
|
|
4336
4587
|
}
|
|
4337
4588
|
|
|
4338
4589
|
|
|
4339
|
-
export type
|
|
4340
|
-
|
|
4590
|
+
export type EBibleSourceAvgAggregateInputType = {
|
|
4591
|
+
oldTestamentBooks?: true
|
|
4592
|
+
oldTestamentChapters?: true
|
|
4593
|
+
oldTestamentVerses?: true
|
|
4594
|
+
newTestamentBooks?: true
|
|
4595
|
+
newTestamentChapters?: true
|
|
4596
|
+
newTestamentVerses?: true
|
|
4597
|
+
apocryphaBooks?: true
|
|
4598
|
+
apocryphaChapters?: true
|
|
4599
|
+
apocryphaVerses?: true
|
|
4341
4600
|
}
|
|
4342
4601
|
|
|
4343
|
-
export type
|
|
4344
|
-
|
|
4602
|
+
export type EBibleSourceSumAggregateInputType = {
|
|
4603
|
+
oldTestamentBooks?: true
|
|
4604
|
+
oldTestamentChapters?: true
|
|
4605
|
+
oldTestamentVerses?: true
|
|
4606
|
+
newTestamentBooks?: true
|
|
4607
|
+
newTestamentChapters?: true
|
|
4608
|
+
newTestamentVerses?: true
|
|
4609
|
+
apocryphaBooks?: true
|
|
4610
|
+
apocryphaChapters?: true
|
|
4611
|
+
apocryphaVerses?: true
|
|
4345
4612
|
}
|
|
4346
4613
|
|
|
4347
|
-
export type
|
|
4614
|
+
export type EBibleSourceMinAggregateInputType = {
|
|
4615
|
+
id?: true
|
|
4616
|
+
usfmZipUrl?: true
|
|
4617
|
+
usfmZipEtag?: true
|
|
4618
|
+
languageCode?: true
|
|
4619
|
+
title?: true
|
|
4620
|
+
shortTitle?: true
|
|
4621
|
+
textDirection?: true
|
|
4622
|
+
redistributable?: true
|
|
4623
|
+
description?: true
|
|
4624
|
+
copyright?: true
|
|
4625
|
+
FCBHID?: true
|
|
4626
|
+
updateDate?: true
|
|
4627
|
+
sourceDate?: true
|
|
4628
|
+
oldTestamentBooks?: true
|
|
4629
|
+
oldTestamentChapters?: true
|
|
4630
|
+
oldTestamentVerses?: true
|
|
4631
|
+
newTestamentBooks?: true
|
|
4632
|
+
newTestamentChapters?: true
|
|
4633
|
+
newTestamentVerses?: true
|
|
4634
|
+
apocryphaBooks?: true
|
|
4635
|
+
apocryphaChapters?: true
|
|
4636
|
+
apocryphaVerses?: true
|
|
4348
4637
|
translationId?: true
|
|
4349
|
-
|
|
4350
|
-
|
|
4638
|
+
usfmDownloadDate?: true
|
|
4639
|
+
usfmDownloadPath?: true
|
|
4351
4640
|
sha256?: true
|
|
4352
|
-
sizeInBytes?: true
|
|
4353
4641
|
}
|
|
4354
4642
|
|
|
4355
|
-
export type
|
|
4643
|
+
export type EBibleSourceMaxAggregateInputType = {
|
|
4644
|
+
id?: true
|
|
4645
|
+
usfmZipUrl?: true
|
|
4646
|
+
usfmZipEtag?: true
|
|
4647
|
+
languageCode?: true
|
|
4648
|
+
title?: true
|
|
4649
|
+
shortTitle?: true
|
|
4650
|
+
textDirection?: true
|
|
4651
|
+
redistributable?: true
|
|
4652
|
+
description?: true
|
|
4653
|
+
copyright?: true
|
|
4654
|
+
FCBHID?: true
|
|
4655
|
+
updateDate?: true
|
|
4656
|
+
sourceDate?: true
|
|
4657
|
+
oldTestamentBooks?: true
|
|
4658
|
+
oldTestamentChapters?: true
|
|
4659
|
+
oldTestamentVerses?: true
|
|
4660
|
+
newTestamentBooks?: true
|
|
4661
|
+
newTestamentChapters?: true
|
|
4662
|
+
newTestamentVerses?: true
|
|
4663
|
+
apocryphaBooks?: true
|
|
4664
|
+
apocryphaChapters?: true
|
|
4665
|
+
apocryphaVerses?: true
|
|
4356
4666
|
translationId?: true
|
|
4357
|
-
|
|
4358
|
-
|
|
4667
|
+
usfmDownloadDate?: true
|
|
4668
|
+
usfmDownloadPath?: true
|
|
4359
4669
|
sha256?: true
|
|
4360
|
-
sizeInBytes?: true
|
|
4361
4670
|
}
|
|
4362
4671
|
|
|
4363
|
-
export type
|
|
4672
|
+
export type EBibleSourceCountAggregateInputType = {
|
|
4673
|
+
id?: true
|
|
4674
|
+
usfmZipUrl?: true
|
|
4675
|
+
usfmZipEtag?: true
|
|
4676
|
+
languageCode?: true
|
|
4677
|
+
title?: true
|
|
4678
|
+
shortTitle?: true
|
|
4679
|
+
textDirection?: true
|
|
4680
|
+
redistributable?: true
|
|
4681
|
+
description?: true
|
|
4682
|
+
copyright?: true
|
|
4683
|
+
FCBHID?: true
|
|
4684
|
+
updateDate?: true
|
|
4685
|
+
sourceDate?: true
|
|
4686
|
+
oldTestamentBooks?: true
|
|
4687
|
+
oldTestamentChapters?: true
|
|
4688
|
+
oldTestamentVerses?: true
|
|
4689
|
+
newTestamentBooks?: true
|
|
4690
|
+
newTestamentChapters?: true
|
|
4691
|
+
newTestamentVerses?: true
|
|
4692
|
+
apocryphaBooks?: true
|
|
4693
|
+
apocryphaChapters?: true
|
|
4694
|
+
apocryphaVerses?: true
|
|
4364
4695
|
translationId?: true
|
|
4365
|
-
|
|
4366
|
-
|
|
4696
|
+
usfmDownloadDate?: true
|
|
4697
|
+
usfmDownloadPath?: true
|
|
4367
4698
|
sha256?: true
|
|
4368
|
-
sizeInBytes?: true
|
|
4369
4699
|
_all?: true
|
|
4370
4700
|
}
|
|
4371
4701
|
|
|
4372
|
-
export type
|
|
4702
|
+
export type EBibleSourceAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4373
4703
|
/**
|
|
4374
|
-
* Filter which
|
|
4704
|
+
* Filter which EBibleSource to aggregate.
|
|
4375
4705
|
*/
|
|
4376
|
-
where?:
|
|
4706
|
+
where?: EBibleSourceWhereInput
|
|
4377
4707
|
/**
|
|
4378
4708
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
4379
4709
|
*
|
|
4380
|
-
* Determine the order of
|
|
4710
|
+
* Determine the order of EBibleSources to fetch.
|
|
4381
4711
|
*/
|
|
4382
|
-
orderBy?:
|
|
4712
|
+
orderBy?: EBibleSourceOrderByWithRelationInput | EBibleSourceOrderByWithRelationInput[]
|
|
4383
4713
|
/**
|
|
4384
4714
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
4385
4715
|
*
|
|
4386
4716
|
* Sets the start position
|
|
4387
4717
|
*/
|
|
4388
|
-
cursor?:
|
|
4718
|
+
cursor?: EBibleSourceWhereUniqueInput
|
|
4389
4719
|
/**
|
|
4390
4720
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
4391
4721
|
*
|
|
4392
|
-
* Take `±n`
|
|
4722
|
+
* Take `±n` EBibleSources from the position of the cursor.
|
|
4393
4723
|
*/
|
|
4394
4724
|
take?: number
|
|
4395
4725
|
/**
|
|
4396
4726
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
4397
4727
|
*
|
|
4398
|
-
* Skip the first `n`
|
|
4728
|
+
* Skip the first `n` EBibleSources.
|
|
4399
4729
|
*/
|
|
4400
4730
|
skip?: number
|
|
4401
4731
|
/**
|
|
4402
4732
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
4403
4733
|
*
|
|
4404
|
-
* Count returned
|
|
4734
|
+
* Count returned EBibleSources
|
|
4405
4735
|
**/
|
|
4406
|
-
_count?: true |
|
|
4736
|
+
_count?: true | EBibleSourceCountAggregateInputType
|
|
4407
4737
|
/**
|
|
4408
4738
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
4409
4739
|
*
|
|
4410
4740
|
* Select which fields to average
|
|
4411
4741
|
**/
|
|
4412
|
-
_avg?:
|
|
4742
|
+
_avg?: EBibleSourceAvgAggregateInputType
|
|
4413
4743
|
/**
|
|
4414
4744
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
4415
4745
|
*
|
|
4416
4746
|
* Select which fields to sum
|
|
4417
4747
|
**/
|
|
4418
|
-
_sum?:
|
|
4748
|
+
_sum?: EBibleSourceSumAggregateInputType
|
|
4419
4749
|
/**
|
|
4420
4750
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
4421
4751
|
*
|
|
4422
4752
|
* Select which fields to find the minimum value
|
|
4423
4753
|
**/
|
|
4424
|
-
_min?:
|
|
4754
|
+
_min?: EBibleSourceMinAggregateInputType
|
|
4425
4755
|
/**
|
|
4426
4756
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
4427
4757
|
*
|
|
4428
4758
|
* Select which fields to find the maximum value
|
|
4429
4759
|
**/
|
|
4430
|
-
_max?:
|
|
4760
|
+
_max?: EBibleSourceMaxAggregateInputType
|
|
4431
4761
|
}
|
|
4432
4762
|
|
|
4433
|
-
export type
|
|
4434
|
-
[P in keyof T & keyof
|
|
4763
|
+
export type GetEBibleSourceAggregateType<T extends EBibleSourceAggregateArgs> = {
|
|
4764
|
+
[P in keyof T & keyof AggregateEBibleSource]: P extends '_count' | 'count'
|
|
4435
4765
|
? T[P] extends true
|
|
4436
4766
|
? number
|
|
4437
|
-
: GetScalarType<T[P],
|
|
4438
|
-
: GetScalarType<T[P],
|
|
4767
|
+
: GetScalarType<T[P], AggregateEBibleSource[P]>
|
|
4768
|
+
: GetScalarType<T[P], AggregateEBibleSource[P]>
|
|
4439
4769
|
}
|
|
4440
4770
|
|
|
4441
4771
|
|
|
4442
4772
|
|
|
4443
4773
|
|
|
4444
|
-
export type
|
|
4445
|
-
where?:
|
|
4446
|
-
orderBy?:
|
|
4447
|
-
by:
|
|
4448
|
-
having?:
|
|
4774
|
+
export type EBibleSourceGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4775
|
+
where?: EBibleSourceWhereInput
|
|
4776
|
+
orderBy?: EBibleSourceOrderByWithAggregationInput | EBibleSourceOrderByWithAggregationInput[]
|
|
4777
|
+
by: EBibleSourceScalarFieldEnum[] | EBibleSourceScalarFieldEnum
|
|
4778
|
+
having?: EBibleSourceScalarWhereWithAggregatesInput
|
|
4449
4779
|
take?: number
|
|
4450
4780
|
skip?: number
|
|
4451
|
-
_count?:
|
|
4452
|
-
_avg?:
|
|
4453
|
-
_sum?:
|
|
4454
|
-
_min?:
|
|
4455
|
-
_max?:
|
|
4781
|
+
_count?: EBibleSourceCountAggregateInputType | true
|
|
4782
|
+
_avg?: EBibleSourceAvgAggregateInputType
|
|
4783
|
+
_sum?: EBibleSourceSumAggregateInputType
|
|
4784
|
+
_min?: EBibleSourceMinAggregateInputType
|
|
4785
|
+
_max?: EBibleSourceMaxAggregateInputType
|
|
4456
4786
|
}
|
|
4457
4787
|
|
|
4458
|
-
export type
|
|
4788
|
+
export type EBibleSourceGroupByOutputType = {
|
|
4789
|
+
id: string
|
|
4790
|
+
usfmZipUrl: string | null
|
|
4791
|
+
usfmZipEtag: string | null
|
|
4792
|
+
languageCode: string
|
|
4793
|
+
title: string
|
|
4794
|
+
shortTitle: string | null
|
|
4795
|
+
textDirection: string | null
|
|
4796
|
+
redistributable: boolean
|
|
4797
|
+
description: string
|
|
4798
|
+
copyright: string
|
|
4799
|
+
FCBHID: string
|
|
4800
|
+
updateDate: Date
|
|
4801
|
+
sourceDate: Date
|
|
4802
|
+
oldTestamentBooks: number
|
|
4803
|
+
oldTestamentChapters: number
|
|
4804
|
+
oldTestamentVerses: number
|
|
4805
|
+
newTestamentBooks: number
|
|
4806
|
+
newTestamentChapters: number
|
|
4807
|
+
newTestamentVerses: number
|
|
4808
|
+
apocryphaBooks: number
|
|
4809
|
+
apocryphaChapters: number
|
|
4810
|
+
apocryphaVerses: number
|
|
4459
4811
|
translationId: string
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
sha256: string
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
_max: InputFileMaxAggregateOutputType | null
|
|
4812
|
+
usfmDownloadDate: Date | null
|
|
4813
|
+
usfmDownloadPath: string | null
|
|
4814
|
+
sha256: string | null
|
|
4815
|
+
_count: EBibleSourceCountAggregateOutputType | null
|
|
4816
|
+
_avg: EBibleSourceAvgAggregateOutputType | null
|
|
4817
|
+
_sum: EBibleSourceSumAggregateOutputType | null
|
|
4818
|
+
_min: EBibleSourceMinAggregateOutputType | null
|
|
4819
|
+
_max: EBibleSourceMaxAggregateOutputType | null
|
|
4469
4820
|
}
|
|
4470
4821
|
|
|
4471
|
-
type
|
|
4822
|
+
type GetEBibleSourceGroupByPayload<T extends EBibleSourceGroupByArgs> = Prisma.PrismaPromise<
|
|
4472
4823
|
Array<
|
|
4473
|
-
PickEnumerable<
|
|
4824
|
+
PickEnumerable<EBibleSourceGroupByOutputType, T['by']> &
|
|
4474
4825
|
{
|
|
4475
|
-
[P in ((keyof T) & (keyof
|
|
4826
|
+
[P in ((keyof T) & (keyof EBibleSourceGroupByOutputType))]: P extends '_count'
|
|
4476
4827
|
? T[P] extends boolean
|
|
4477
4828
|
? number
|
|
4478
|
-
: GetScalarType<T[P],
|
|
4479
|
-
: GetScalarType<T[P],
|
|
4829
|
+
: GetScalarType<T[P], EBibleSourceGroupByOutputType[P]>
|
|
4830
|
+
: GetScalarType<T[P], EBibleSourceGroupByOutputType[P]>
|
|
4480
4831
|
}
|
|
4481
4832
|
>
|
|
4482
4833
|
>
|
|
4483
4834
|
|
|
4484
4835
|
|
|
4485
|
-
export type
|
|
4836
|
+
export type EBibleSourceSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
4837
|
+
id?: boolean
|
|
4838
|
+
usfmZipUrl?: boolean
|
|
4839
|
+
usfmZipEtag?: boolean
|
|
4840
|
+
languageCode?: boolean
|
|
4841
|
+
title?: boolean
|
|
4842
|
+
shortTitle?: boolean
|
|
4843
|
+
textDirection?: boolean
|
|
4844
|
+
redistributable?: boolean
|
|
4845
|
+
description?: boolean
|
|
4846
|
+
copyright?: boolean
|
|
4847
|
+
FCBHID?: boolean
|
|
4848
|
+
updateDate?: boolean
|
|
4849
|
+
sourceDate?: boolean
|
|
4850
|
+
oldTestamentBooks?: boolean
|
|
4851
|
+
oldTestamentChapters?: boolean
|
|
4852
|
+
oldTestamentVerses?: boolean
|
|
4853
|
+
newTestamentBooks?: boolean
|
|
4854
|
+
newTestamentChapters?: boolean
|
|
4855
|
+
newTestamentVerses?: boolean
|
|
4856
|
+
apocryphaBooks?: boolean
|
|
4857
|
+
apocryphaChapters?: boolean
|
|
4858
|
+
apocryphaVerses?: boolean
|
|
4486
4859
|
translationId?: boolean
|
|
4487
|
-
|
|
4488
|
-
|
|
4860
|
+
usfmDownloadDate?: boolean
|
|
4861
|
+
usfmDownloadPath?: boolean
|
|
4489
4862
|
sha256?: boolean
|
|
4490
|
-
|
|
4491
|
-
}, ExtArgs["result"]["inputFile"]>
|
|
4863
|
+
}, ExtArgs["result"]["eBibleSource"]>
|
|
4492
4864
|
|
|
4493
|
-
export type
|
|
4865
|
+
export type EBibleSourceSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
4866
|
+
id?: boolean
|
|
4867
|
+
usfmZipUrl?: boolean
|
|
4868
|
+
usfmZipEtag?: boolean
|
|
4869
|
+
languageCode?: boolean
|
|
4870
|
+
title?: boolean
|
|
4871
|
+
shortTitle?: boolean
|
|
4872
|
+
textDirection?: boolean
|
|
4873
|
+
redistributable?: boolean
|
|
4874
|
+
description?: boolean
|
|
4875
|
+
copyright?: boolean
|
|
4876
|
+
FCBHID?: boolean
|
|
4877
|
+
updateDate?: boolean
|
|
4878
|
+
sourceDate?: boolean
|
|
4879
|
+
oldTestamentBooks?: boolean
|
|
4880
|
+
oldTestamentChapters?: boolean
|
|
4881
|
+
oldTestamentVerses?: boolean
|
|
4882
|
+
newTestamentBooks?: boolean
|
|
4883
|
+
newTestamentChapters?: boolean
|
|
4884
|
+
newTestamentVerses?: boolean
|
|
4885
|
+
apocryphaBooks?: boolean
|
|
4886
|
+
apocryphaChapters?: boolean
|
|
4887
|
+
apocryphaVerses?: boolean
|
|
4494
4888
|
translationId?: boolean
|
|
4495
|
-
|
|
4496
|
-
|
|
4889
|
+
usfmDownloadDate?: boolean
|
|
4890
|
+
usfmDownloadPath?: boolean
|
|
4497
4891
|
sha256?: boolean
|
|
4498
|
-
|
|
4499
|
-
}, ExtArgs["result"]["inputFile"]>
|
|
4892
|
+
}, ExtArgs["result"]["eBibleSource"]>
|
|
4500
4893
|
|
|
4501
|
-
export type
|
|
4894
|
+
export type EBibleSourceSelectScalar = {
|
|
4895
|
+
id?: boolean
|
|
4896
|
+
usfmZipUrl?: boolean
|
|
4897
|
+
usfmZipEtag?: boolean
|
|
4898
|
+
languageCode?: boolean
|
|
4899
|
+
title?: boolean
|
|
4900
|
+
shortTitle?: boolean
|
|
4901
|
+
textDirection?: boolean
|
|
4902
|
+
redistributable?: boolean
|
|
4903
|
+
description?: boolean
|
|
4904
|
+
copyright?: boolean
|
|
4905
|
+
FCBHID?: boolean
|
|
4906
|
+
updateDate?: boolean
|
|
4907
|
+
sourceDate?: boolean
|
|
4908
|
+
oldTestamentBooks?: boolean
|
|
4909
|
+
oldTestamentChapters?: boolean
|
|
4910
|
+
oldTestamentVerses?: boolean
|
|
4911
|
+
newTestamentBooks?: boolean
|
|
4912
|
+
newTestamentChapters?: boolean
|
|
4913
|
+
newTestamentVerses?: boolean
|
|
4914
|
+
apocryphaBooks?: boolean
|
|
4915
|
+
apocryphaChapters?: boolean
|
|
4916
|
+
apocryphaVerses?: boolean
|
|
4502
4917
|
translationId?: boolean
|
|
4503
|
-
|
|
4504
|
-
|
|
4918
|
+
usfmDownloadDate?: boolean
|
|
4919
|
+
usfmDownloadPath?: boolean
|
|
4505
4920
|
sha256?: boolean
|
|
4506
|
-
sizeInBytes?: boolean
|
|
4507
4921
|
}
|
|
4508
4922
|
|
|
4509
4923
|
|
|
4510
|
-
export type $
|
|
4511
|
-
name: "
|
|
4924
|
+
export type $EBibleSourcePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4925
|
+
name: "EBibleSource"
|
|
4512
4926
|
objects: {}
|
|
4513
4927
|
scalars: $Extensions.GetPayloadResult<{
|
|
4928
|
+
id: string
|
|
4929
|
+
usfmZipUrl: string | null
|
|
4930
|
+
usfmZipEtag: string | null
|
|
4931
|
+
languageCode: string
|
|
4932
|
+
title: string
|
|
4933
|
+
shortTitle: string | null
|
|
4934
|
+
textDirection: string | null
|
|
4935
|
+
redistributable: boolean
|
|
4936
|
+
description: string
|
|
4937
|
+
copyright: string
|
|
4938
|
+
FCBHID: string
|
|
4939
|
+
updateDate: Date
|
|
4940
|
+
sourceDate: Date
|
|
4941
|
+
oldTestamentBooks: number
|
|
4942
|
+
oldTestamentChapters: number
|
|
4943
|
+
oldTestamentVerses: number
|
|
4944
|
+
newTestamentBooks: number
|
|
4945
|
+
newTestamentChapters: number
|
|
4946
|
+
newTestamentVerses: number
|
|
4947
|
+
apocryphaBooks: number
|
|
4948
|
+
apocryphaChapters: number
|
|
4949
|
+
apocryphaVerses: number
|
|
4514
4950
|
translationId: string
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
sha256: string
|
|
4518
|
-
|
|
4519
|
-
}, ExtArgs["result"]["inputFile"]>
|
|
4951
|
+
usfmDownloadDate: Date | null
|
|
4952
|
+
usfmDownloadPath: string | null
|
|
4953
|
+
sha256: string | null
|
|
4954
|
+
}, ExtArgs["result"]["eBibleSource"]>
|
|
4520
4955
|
composites: {}
|
|
4521
4956
|
}
|
|
4522
4957
|
|
|
4523
|
-
type
|
|
4958
|
+
type EBibleSourceGetPayload<S extends boolean | null | undefined | EBibleSourceDefaultArgs> = $Result.GetResult<Prisma.$EBibleSourcePayload, S>
|
|
4524
4959
|
|
|
4525
|
-
type
|
|
4526
|
-
Omit<
|
|
4527
|
-
select?:
|
|
4960
|
+
type EBibleSourceCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
4961
|
+
Omit<EBibleSourceFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
4962
|
+
select?: EBibleSourceCountAggregateInputType | true
|
|
4528
4963
|
}
|
|
4529
4964
|
|
|
4530
|
-
export interface
|
|
4531
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
4965
|
+
export interface EBibleSourceDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
4966
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['EBibleSource'], meta: { name: 'EBibleSource' } }
|
|
4532
4967
|
/**
|
|
4533
|
-
* Find zero or one
|
|
4534
|
-
* @param {
|
|
4968
|
+
* Find zero or one EBibleSource that matches the filter.
|
|
4969
|
+
* @param {EBibleSourceFindUniqueArgs} args - Arguments to find a EBibleSource
|
|
4535
4970
|
* @example
|
|
4536
|
-
* // Get one
|
|
4537
|
-
* const
|
|
4971
|
+
* // Get one EBibleSource
|
|
4972
|
+
* const eBibleSource = await prisma.eBibleSource.findUnique({
|
|
4538
4973
|
* where: {
|
|
4539
4974
|
* // ... provide filter here
|
|
4540
4975
|
* }
|
|
4541
4976
|
* })
|
|
4542
4977
|
*/
|
|
4543
|
-
findUnique<T extends
|
|
4978
|
+
findUnique<T extends EBibleSourceFindUniqueArgs>(args: SelectSubset<T, EBibleSourceFindUniqueArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
4544
4979
|
|
|
4545
4980
|
/**
|
|
4546
|
-
* Find one
|
|
4981
|
+
* Find one EBibleSource that matches the filter or throw an error with `error.code='P2025'`
|
|
4547
4982
|
* if no matches were found.
|
|
4548
|
-
* @param {
|
|
4983
|
+
* @param {EBibleSourceFindUniqueOrThrowArgs} args - Arguments to find a EBibleSource
|
|
4549
4984
|
* @example
|
|
4550
|
-
* // Get one
|
|
4551
|
-
* const
|
|
4985
|
+
* // Get one EBibleSource
|
|
4986
|
+
* const eBibleSource = await prisma.eBibleSource.findUniqueOrThrow({
|
|
4552
4987
|
* where: {
|
|
4553
4988
|
* // ... provide filter here
|
|
4554
4989
|
* }
|
|
4555
4990
|
* })
|
|
4556
4991
|
*/
|
|
4557
|
-
findUniqueOrThrow<T extends
|
|
4992
|
+
findUniqueOrThrow<T extends EBibleSourceFindUniqueOrThrowArgs>(args: SelectSubset<T, EBibleSourceFindUniqueOrThrowArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
4558
4993
|
|
|
4559
4994
|
/**
|
|
4560
|
-
* Find the first
|
|
4995
|
+
* Find the first EBibleSource that matches the filter.
|
|
4561
4996
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4562
4997
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4563
|
-
* @param {
|
|
4998
|
+
* @param {EBibleSourceFindFirstArgs} args - Arguments to find a EBibleSource
|
|
4564
4999
|
* @example
|
|
4565
|
-
* // Get one
|
|
4566
|
-
* const
|
|
5000
|
+
* // Get one EBibleSource
|
|
5001
|
+
* const eBibleSource = await prisma.eBibleSource.findFirst({
|
|
4567
5002
|
* where: {
|
|
4568
5003
|
* // ... provide filter here
|
|
4569
5004
|
* }
|
|
4570
5005
|
* })
|
|
4571
5006
|
*/
|
|
4572
|
-
findFirst<T extends
|
|
5007
|
+
findFirst<T extends EBibleSourceFindFirstArgs>(args?: SelectSubset<T, EBibleSourceFindFirstArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
4573
5008
|
|
|
4574
5009
|
/**
|
|
4575
|
-
* Find the first
|
|
5010
|
+
* Find the first EBibleSource that matches the filter or
|
|
4576
5011
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
4577
5012
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4578
5013
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4579
|
-
* @param {
|
|
5014
|
+
* @param {EBibleSourceFindFirstOrThrowArgs} args - Arguments to find a EBibleSource
|
|
4580
5015
|
* @example
|
|
4581
|
-
* // Get one
|
|
4582
|
-
* const
|
|
5016
|
+
* // Get one EBibleSource
|
|
5017
|
+
* const eBibleSource = await prisma.eBibleSource.findFirstOrThrow({
|
|
4583
5018
|
* where: {
|
|
4584
5019
|
* // ... provide filter here
|
|
4585
5020
|
* }
|
|
4586
5021
|
* })
|
|
4587
5022
|
*/
|
|
4588
|
-
findFirstOrThrow<T extends
|
|
5023
|
+
findFirstOrThrow<T extends EBibleSourceFindFirstOrThrowArgs>(args?: SelectSubset<T, EBibleSourceFindFirstOrThrowArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
4589
5024
|
|
|
4590
5025
|
/**
|
|
4591
|
-
* Find zero or more
|
|
5026
|
+
* Find zero or more EBibleSources that matches the filter.
|
|
5027
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5028
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5029
|
+
* @param {EBibleSourceFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
5030
|
+
* @example
|
|
5031
|
+
* // Get all EBibleSources
|
|
5032
|
+
* const eBibleSources = await prisma.eBibleSource.findMany()
|
|
5033
|
+
*
|
|
5034
|
+
* // Get first 10 EBibleSources
|
|
5035
|
+
* const eBibleSources = await prisma.eBibleSource.findMany({ take: 10 })
|
|
5036
|
+
*
|
|
5037
|
+
* // Only select the `id`
|
|
5038
|
+
* const eBibleSourceWithIdOnly = await prisma.eBibleSource.findMany({ select: { id: true } })
|
|
5039
|
+
*
|
|
5040
|
+
*/
|
|
5041
|
+
findMany<T extends EBibleSourceFindManyArgs>(args?: SelectSubset<T, EBibleSourceFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "findMany">>
|
|
5042
|
+
|
|
5043
|
+
/**
|
|
5044
|
+
* Create a EBibleSource.
|
|
5045
|
+
* @param {EBibleSourceCreateArgs} args - Arguments to create a EBibleSource.
|
|
5046
|
+
* @example
|
|
5047
|
+
* // Create one EBibleSource
|
|
5048
|
+
* const EBibleSource = await prisma.eBibleSource.create({
|
|
5049
|
+
* data: {
|
|
5050
|
+
* // ... data to create a EBibleSource
|
|
5051
|
+
* }
|
|
5052
|
+
* })
|
|
5053
|
+
*
|
|
5054
|
+
*/
|
|
5055
|
+
create<T extends EBibleSourceCreateArgs>(args: SelectSubset<T, EBibleSourceCreateArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
5056
|
+
|
|
5057
|
+
/**
|
|
5058
|
+
* Create many EBibleSources.
|
|
5059
|
+
* @param {EBibleSourceCreateManyArgs} args - Arguments to create many EBibleSources.
|
|
5060
|
+
* @example
|
|
5061
|
+
* // Create many EBibleSources
|
|
5062
|
+
* const eBibleSource = await prisma.eBibleSource.createMany({
|
|
5063
|
+
* data: [
|
|
5064
|
+
* // ... provide data here
|
|
5065
|
+
* ]
|
|
5066
|
+
* })
|
|
5067
|
+
*
|
|
5068
|
+
*/
|
|
5069
|
+
createMany<T extends EBibleSourceCreateManyArgs>(args?: SelectSubset<T, EBibleSourceCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
5070
|
+
|
|
5071
|
+
/**
|
|
5072
|
+
* Create many EBibleSources and returns the data saved in the database.
|
|
5073
|
+
* @param {EBibleSourceCreateManyAndReturnArgs} args - Arguments to create many EBibleSources.
|
|
5074
|
+
* @example
|
|
5075
|
+
* // Create many EBibleSources
|
|
5076
|
+
* const eBibleSource = await prisma.eBibleSource.createManyAndReturn({
|
|
5077
|
+
* data: [
|
|
5078
|
+
* // ... provide data here
|
|
5079
|
+
* ]
|
|
5080
|
+
* })
|
|
5081
|
+
*
|
|
5082
|
+
* // Create many EBibleSources and only return the `id`
|
|
5083
|
+
* const eBibleSourceWithIdOnly = await prisma.eBibleSource.createManyAndReturn({
|
|
5084
|
+
* select: { id: true },
|
|
5085
|
+
* data: [
|
|
5086
|
+
* // ... provide data here
|
|
5087
|
+
* ]
|
|
5088
|
+
* })
|
|
5089
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5090
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5091
|
+
*
|
|
5092
|
+
*/
|
|
5093
|
+
createManyAndReturn<T extends EBibleSourceCreateManyAndReturnArgs>(args?: SelectSubset<T, EBibleSourceCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "createManyAndReturn">>
|
|
5094
|
+
|
|
5095
|
+
/**
|
|
5096
|
+
* Delete a EBibleSource.
|
|
5097
|
+
* @param {EBibleSourceDeleteArgs} args - Arguments to delete one EBibleSource.
|
|
5098
|
+
* @example
|
|
5099
|
+
* // Delete one EBibleSource
|
|
5100
|
+
* const EBibleSource = await prisma.eBibleSource.delete({
|
|
5101
|
+
* where: {
|
|
5102
|
+
* // ... filter to delete one EBibleSource
|
|
5103
|
+
* }
|
|
5104
|
+
* })
|
|
5105
|
+
*
|
|
5106
|
+
*/
|
|
5107
|
+
delete<T extends EBibleSourceDeleteArgs>(args: SelectSubset<T, EBibleSourceDeleteArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
5108
|
+
|
|
5109
|
+
/**
|
|
5110
|
+
* Update one EBibleSource.
|
|
5111
|
+
* @param {EBibleSourceUpdateArgs} args - Arguments to update one EBibleSource.
|
|
5112
|
+
* @example
|
|
5113
|
+
* // Update one EBibleSource
|
|
5114
|
+
* const eBibleSource = await prisma.eBibleSource.update({
|
|
5115
|
+
* where: {
|
|
5116
|
+
* // ... provide filter here
|
|
5117
|
+
* },
|
|
5118
|
+
* data: {
|
|
5119
|
+
* // ... provide data here
|
|
5120
|
+
* }
|
|
5121
|
+
* })
|
|
5122
|
+
*
|
|
5123
|
+
*/
|
|
5124
|
+
update<T extends EBibleSourceUpdateArgs>(args: SelectSubset<T, EBibleSourceUpdateArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
5125
|
+
|
|
5126
|
+
/**
|
|
5127
|
+
* Delete zero or more EBibleSources.
|
|
5128
|
+
* @param {EBibleSourceDeleteManyArgs} args - Arguments to filter EBibleSources to delete.
|
|
5129
|
+
* @example
|
|
5130
|
+
* // Delete a few EBibleSources
|
|
5131
|
+
* const { count } = await prisma.eBibleSource.deleteMany({
|
|
5132
|
+
* where: {
|
|
5133
|
+
* // ... provide filter here
|
|
5134
|
+
* }
|
|
5135
|
+
* })
|
|
5136
|
+
*
|
|
5137
|
+
*/
|
|
5138
|
+
deleteMany<T extends EBibleSourceDeleteManyArgs>(args?: SelectSubset<T, EBibleSourceDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
5139
|
+
|
|
5140
|
+
/**
|
|
5141
|
+
* Update zero or more EBibleSources.
|
|
5142
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5143
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5144
|
+
* @param {EBibleSourceUpdateManyArgs} args - Arguments to update one or more rows.
|
|
5145
|
+
* @example
|
|
5146
|
+
* // Update many EBibleSources
|
|
5147
|
+
* const eBibleSource = await prisma.eBibleSource.updateMany({
|
|
5148
|
+
* where: {
|
|
5149
|
+
* // ... provide filter here
|
|
5150
|
+
* },
|
|
5151
|
+
* data: {
|
|
5152
|
+
* // ... provide data here
|
|
5153
|
+
* }
|
|
5154
|
+
* })
|
|
5155
|
+
*
|
|
5156
|
+
*/
|
|
5157
|
+
updateMany<T extends EBibleSourceUpdateManyArgs>(args: SelectSubset<T, EBibleSourceUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
5158
|
+
|
|
5159
|
+
/**
|
|
5160
|
+
* Create or update one EBibleSource.
|
|
5161
|
+
* @param {EBibleSourceUpsertArgs} args - Arguments to update or create a EBibleSource.
|
|
5162
|
+
* @example
|
|
5163
|
+
* // Update or create a EBibleSource
|
|
5164
|
+
* const eBibleSource = await prisma.eBibleSource.upsert({
|
|
5165
|
+
* create: {
|
|
5166
|
+
* // ... data to create a EBibleSource
|
|
5167
|
+
* },
|
|
5168
|
+
* update: {
|
|
5169
|
+
* // ... in case it already exists, update
|
|
5170
|
+
* },
|
|
5171
|
+
* where: {
|
|
5172
|
+
* // ... the filter for the EBibleSource we want to update
|
|
5173
|
+
* }
|
|
5174
|
+
* })
|
|
5175
|
+
*/
|
|
5176
|
+
upsert<T extends EBibleSourceUpsertArgs>(args: SelectSubset<T, EBibleSourceUpsertArgs<ExtArgs>>): Prisma__EBibleSourceClient<$Result.GetResult<Prisma.$EBibleSourcePayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
5177
|
+
|
|
5178
|
+
|
|
5179
|
+
/**
|
|
5180
|
+
* Count the number of EBibleSources.
|
|
5181
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5182
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5183
|
+
* @param {EBibleSourceCountArgs} args - Arguments to filter EBibleSources to count.
|
|
5184
|
+
* @example
|
|
5185
|
+
* // Count the number of EBibleSources
|
|
5186
|
+
* const count = await prisma.eBibleSource.count({
|
|
5187
|
+
* where: {
|
|
5188
|
+
* // ... the filter for the EBibleSources we want to count
|
|
5189
|
+
* }
|
|
5190
|
+
* })
|
|
5191
|
+
**/
|
|
5192
|
+
count<T extends EBibleSourceCountArgs>(
|
|
5193
|
+
args?: Subset<T, EBibleSourceCountArgs>,
|
|
5194
|
+
): Prisma.PrismaPromise<
|
|
5195
|
+
T extends $Utils.Record<'select', any>
|
|
5196
|
+
? T['select'] extends true
|
|
5197
|
+
? number
|
|
5198
|
+
: GetScalarType<T['select'], EBibleSourceCountAggregateOutputType>
|
|
5199
|
+
: number
|
|
5200
|
+
>
|
|
5201
|
+
|
|
5202
|
+
/**
|
|
5203
|
+
* Allows you to perform aggregations operations on a EBibleSource.
|
|
5204
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5205
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5206
|
+
* @param {EBibleSourceAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
5207
|
+
* @example
|
|
5208
|
+
* // Ordered by age ascending
|
|
5209
|
+
* // Where email contains prisma.io
|
|
5210
|
+
* // Limited to the 10 users
|
|
5211
|
+
* const aggregations = await prisma.user.aggregate({
|
|
5212
|
+
* _avg: {
|
|
5213
|
+
* age: true,
|
|
5214
|
+
* },
|
|
5215
|
+
* where: {
|
|
5216
|
+
* email: {
|
|
5217
|
+
* contains: "prisma.io",
|
|
5218
|
+
* },
|
|
5219
|
+
* },
|
|
5220
|
+
* orderBy: {
|
|
5221
|
+
* age: "asc",
|
|
5222
|
+
* },
|
|
5223
|
+
* take: 10,
|
|
5224
|
+
* })
|
|
5225
|
+
**/
|
|
5226
|
+
aggregate<T extends EBibleSourceAggregateArgs>(args: Subset<T, EBibleSourceAggregateArgs>): Prisma.PrismaPromise<GetEBibleSourceAggregateType<T>>
|
|
5227
|
+
|
|
5228
|
+
/**
|
|
5229
|
+
* Group by EBibleSource.
|
|
5230
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5231
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5232
|
+
* @param {EBibleSourceGroupByArgs} args - Group by arguments.
|
|
5233
|
+
* @example
|
|
5234
|
+
* // Group by city, order by createdAt, get count
|
|
5235
|
+
* const result = await prisma.user.groupBy({
|
|
5236
|
+
* by: ['city', 'createdAt'],
|
|
5237
|
+
* orderBy: {
|
|
5238
|
+
* createdAt: true
|
|
5239
|
+
* },
|
|
5240
|
+
* _count: {
|
|
5241
|
+
* _all: true
|
|
5242
|
+
* },
|
|
5243
|
+
* })
|
|
5244
|
+
*
|
|
5245
|
+
**/
|
|
5246
|
+
groupBy<
|
|
5247
|
+
T extends EBibleSourceGroupByArgs,
|
|
5248
|
+
HasSelectOrTake extends Or<
|
|
5249
|
+
Extends<'skip', Keys<T>>,
|
|
5250
|
+
Extends<'take', Keys<T>>
|
|
5251
|
+
>,
|
|
5252
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
5253
|
+
? { orderBy: EBibleSourceGroupByArgs['orderBy'] }
|
|
5254
|
+
: { orderBy?: EBibleSourceGroupByArgs['orderBy'] },
|
|
5255
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
5256
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
5257
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
5258
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
5259
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
5260
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
5261
|
+
InputErrors extends ByEmpty extends True
|
|
5262
|
+
? `Error: "by" must not be empty.`
|
|
5263
|
+
: HavingValid extends False
|
|
5264
|
+
? {
|
|
5265
|
+
[P in HavingFields]: P extends ByFields
|
|
5266
|
+
? never
|
|
5267
|
+
: P extends string
|
|
5268
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
5269
|
+
: [
|
|
5270
|
+
Error,
|
|
5271
|
+
'Field ',
|
|
5272
|
+
P,
|
|
5273
|
+
` in "having" needs to be provided in "by"`,
|
|
5274
|
+
]
|
|
5275
|
+
}[HavingFields]
|
|
5276
|
+
: 'take' extends Keys<T>
|
|
5277
|
+
? 'orderBy' extends Keys<T>
|
|
5278
|
+
? ByValid extends True
|
|
5279
|
+
? {}
|
|
5280
|
+
: {
|
|
5281
|
+
[P in OrderFields]: P extends ByFields
|
|
5282
|
+
? never
|
|
5283
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
5284
|
+
}[OrderFields]
|
|
5285
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
5286
|
+
: 'skip' extends Keys<T>
|
|
5287
|
+
? 'orderBy' extends Keys<T>
|
|
5288
|
+
? ByValid extends True
|
|
5289
|
+
? {}
|
|
5290
|
+
: {
|
|
5291
|
+
[P in OrderFields]: P extends ByFields
|
|
5292
|
+
? never
|
|
5293
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
5294
|
+
}[OrderFields]
|
|
5295
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
5296
|
+
: ByValid extends True
|
|
5297
|
+
? {}
|
|
5298
|
+
: {
|
|
5299
|
+
[P in OrderFields]: P extends ByFields
|
|
5300
|
+
? never
|
|
5301
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
5302
|
+
}[OrderFields]
|
|
5303
|
+
>(args: SubsetIntersection<T, EBibleSourceGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEBibleSourceGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
5304
|
+
/**
|
|
5305
|
+
* Fields of the EBibleSource model
|
|
5306
|
+
*/
|
|
5307
|
+
readonly fields: EBibleSourceFieldRefs;
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
/**
|
|
5311
|
+
* The delegate class that acts as a "Promise-like" for EBibleSource.
|
|
5312
|
+
* Why is this prefixed with `Prisma__`?
|
|
5313
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
5314
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
5315
|
+
*/
|
|
5316
|
+
export interface Prisma__EBibleSourceClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
5317
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
5318
|
+
/**
|
|
5319
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
5320
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
5321
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
5322
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
5323
|
+
*/
|
|
5324
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
5325
|
+
/**
|
|
5326
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
5327
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
5328
|
+
* @returns A Promise for the completion of the callback.
|
|
5329
|
+
*/
|
|
5330
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
5331
|
+
/**
|
|
5332
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
5333
|
+
* resolved value cannot be modified from the callback.
|
|
5334
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
5335
|
+
* @returns A Promise for the completion of the callback.
|
|
5336
|
+
*/
|
|
5337
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
5338
|
+
}
|
|
5339
|
+
|
|
5340
|
+
|
|
5341
|
+
|
|
5342
|
+
|
|
5343
|
+
/**
|
|
5344
|
+
* Fields of the EBibleSource model
|
|
5345
|
+
*/
|
|
5346
|
+
interface EBibleSourceFieldRefs {
|
|
5347
|
+
readonly id: FieldRef<"EBibleSource", 'String'>
|
|
5348
|
+
readonly usfmZipUrl: FieldRef<"EBibleSource", 'String'>
|
|
5349
|
+
readonly usfmZipEtag: FieldRef<"EBibleSource", 'String'>
|
|
5350
|
+
readonly languageCode: FieldRef<"EBibleSource", 'String'>
|
|
5351
|
+
readonly title: FieldRef<"EBibleSource", 'String'>
|
|
5352
|
+
readonly shortTitle: FieldRef<"EBibleSource", 'String'>
|
|
5353
|
+
readonly textDirection: FieldRef<"EBibleSource", 'String'>
|
|
5354
|
+
readonly redistributable: FieldRef<"EBibleSource", 'Boolean'>
|
|
5355
|
+
readonly description: FieldRef<"EBibleSource", 'String'>
|
|
5356
|
+
readonly copyright: FieldRef<"EBibleSource", 'String'>
|
|
5357
|
+
readonly FCBHID: FieldRef<"EBibleSource", 'String'>
|
|
5358
|
+
readonly updateDate: FieldRef<"EBibleSource", 'DateTime'>
|
|
5359
|
+
readonly sourceDate: FieldRef<"EBibleSource", 'DateTime'>
|
|
5360
|
+
readonly oldTestamentBooks: FieldRef<"EBibleSource", 'Int'>
|
|
5361
|
+
readonly oldTestamentChapters: FieldRef<"EBibleSource", 'Int'>
|
|
5362
|
+
readonly oldTestamentVerses: FieldRef<"EBibleSource", 'Int'>
|
|
5363
|
+
readonly newTestamentBooks: FieldRef<"EBibleSource", 'Int'>
|
|
5364
|
+
readonly newTestamentChapters: FieldRef<"EBibleSource", 'Int'>
|
|
5365
|
+
readonly newTestamentVerses: FieldRef<"EBibleSource", 'Int'>
|
|
5366
|
+
readonly apocryphaBooks: FieldRef<"EBibleSource", 'Int'>
|
|
5367
|
+
readonly apocryphaChapters: FieldRef<"EBibleSource", 'Int'>
|
|
5368
|
+
readonly apocryphaVerses: FieldRef<"EBibleSource", 'Int'>
|
|
5369
|
+
readonly translationId: FieldRef<"EBibleSource", 'String'>
|
|
5370
|
+
readonly usfmDownloadDate: FieldRef<"EBibleSource", 'DateTime'>
|
|
5371
|
+
readonly usfmDownloadPath: FieldRef<"EBibleSource", 'String'>
|
|
5372
|
+
readonly sha256: FieldRef<"EBibleSource", 'String'>
|
|
5373
|
+
}
|
|
5374
|
+
|
|
5375
|
+
|
|
5376
|
+
// Custom InputTypes
|
|
5377
|
+
/**
|
|
5378
|
+
* EBibleSource findUnique
|
|
5379
|
+
*/
|
|
5380
|
+
export type EBibleSourceFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5381
|
+
/**
|
|
5382
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5383
|
+
*/
|
|
5384
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5385
|
+
/**
|
|
5386
|
+
* Filter, which EBibleSource to fetch.
|
|
5387
|
+
*/
|
|
5388
|
+
where: EBibleSourceWhereUniqueInput
|
|
5389
|
+
}
|
|
5390
|
+
|
|
5391
|
+
/**
|
|
5392
|
+
* EBibleSource findUniqueOrThrow
|
|
5393
|
+
*/
|
|
5394
|
+
export type EBibleSourceFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5395
|
+
/**
|
|
5396
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5397
|
+
*/
|
|
5398
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5399
|
+
/**
|
|
5400
|
+
* Filter, which EBibleSource to fetch.
|
|
5401
|
+
*/
|
|
5402
|
+
where: EBibleSourceWhereUniqueInput
|
|
5403
|
+
}
|
|
5404
|
+
|
|
5405
|
+
/**
|
|
5406
|
+
* EBibleSource findFirst
|
|
5407
|
+
*/
|
|
5408
|
+
export type EBibleSourceFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5409
|
+
/**
|
|
5410
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5411
|
+
*/
|
|
5412
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5413
|
+
/**
|
|
5414
|
+
* Filter, which EBibleSource to fetch.
|
|
5415
|
+
*/
|
|
5416
|
+
where?: EBibleSourceWhereInput
|
|
5417
|
+
/**
|
|
5418
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
5419
|
+
*
|
|
5420
|
+
* Determine the order of EBibleSources to fetch.
|
|
5421
|
+
*/
|
|
5422
|
+
orderBy?: EBibleSourceOrderByWithRelationInput | EBibleSourceOrderByWithRelationInput[]
|
|
5423
|
+
/**
|
|
5424
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
5425
|
+
*
|
|
5426
|
+
* Sets the position for searching for EBibleSources.
|
|
5427
|
+
*/
|
|
5428
|
+
cursor?: EBibleSourceWhereUniqueInput
|
|
5429
|
+
/**
|
|
5430
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5431
|
+
*
|
|
5432
|
+
* Take `±n` EBibleSources from the position of the cursor.
|
|
5433
|
+
*/
|
|
5434
|
+
take?: number
|
|
5435
|
+
/**
|
|
5436
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5437
|
+
*
|
|
5438
|
+
* Skip the first `n` EBibleSources.
|
|
5439
|
+
*/
|
|
5440
|
+
skip?: number
|
|
5441
|
+
/**
|
|
5442
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
5443
|
+
*
|
|
5444
|
+
* Filter by unique combinations of EBibleSources.
|
|
5445
|
+
*/
|
|
5446
|
+
distinct?: EBibleSourceScalarFieldEnum | EBibleSourceScalarFieldEnum[]
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
/**
|
|
5450
|
+
* EBibleSource findFirstOrThrow
|
|
5451
|
+
*/
|
|
5452
|
+
export type EBibleSourceFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5453
|
+
/**
|
|
5454
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5455
|
+
*/
|
|
5456
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5457
|
+
/**
|
|
5458
|
+
* Filter, which EBibleSource to fetch.
|
|
5459
|
+
*/
|
|
5460
|
+
where?: EBibleSourceWhereInput
|
|
5461
|
+
/**
|
|
5462
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
5463
|
+
*
|
|
5464
|
+
* Determine the order of EBibleSources to fetch.
|
|
5465
|
+
*/
|
|
5466
|
+
orderBy?: EBibleSourceOrderByWithRelationInput | EBibleSourceOrderByWithRelationInput[]
|
|
5467
|
+
/**
|
|
5468
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
5469
|
+
*
|
|
5470
|
+
* Sets the position for searching for EBibleSources.
|
|
5471
|
+
*/
|
|
5472
|
+
cursor?: EBibleSourceWhereUniqueInput
|
|
5473
|
+
/**
|
|
5474
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5475
|
+
*
|
|
5476
|
+
* Take `±n` EBibleSources from the position of the cursor.
|
|
5477
|
+
*/
|
|
5478
|
+
take?: number
|
|
5479
|
+
/**
|
|
5480
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5481
|
+
*
|
|
5482
|
+
* Skip the first `n` EBibleSources.
|
|
5483
|
+
*/
|
|
5484
|
+
skip?: number
|
|
5485
|
+
/**
|
|
5486
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
5487
|
+
*
|
|
5488
|
+
* Filter by unique combinations of EBibleSources.
|
|
5489
|
+
*/
|
|
5490
|
+
distinct?: EBibleSourceScalarFieldEnum | EBibleSourceScalarFieldEnum[]
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5493
|
+
/**
|
|
5494
|
+
* EBibleSource findMany
|
|
5495
|
+
*/
|
|
5496
|
+
export type EBibleSourceFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5497
|
+
/**
|
|
5498
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5499
|
+
*/
|
|
5500
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5501
|
+
/**
|
|
5502
|
+
* Filter, which EBibleSources to fetch.
|
|
5503
|
+
*/
|
|
5504
|
+
where?: EBibleSourceWhereInput
|
|
5505
|
+
/**
|
|
5506
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
5507
|
+
*
|
|
5508
|
+
* Determine the order of EBibleSources to fetch.
|
|
5509
|
+
*/
|
|
5510
|
+
orderBy?: EBibleSourceOrderByWithRelationInput | EBibleSourceOrderByWithRelationInput[]
|
|
5511
|
+
/**
|
|
5512
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
5513
|
+
*
|
|
5514
|
+
* Sets the position for listing EBibleSources.
|
|
5515
|
+
*/
|
|
5516
|
+
cursor?: EBibleSourceWhereUniqueInput
|
|
5517
|
+
/**
|
|
5518
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5519
|
+
*
|
|
5520
|
+
* Take `±n` EBibleSources from the position of the cursor.
|
|
5521
|
+
*/
|
|
5522
|
+
take?: number
|
|
5523
|
+
/**
|
|
5524
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5525
|
+
*
|
|
5526
|
+
* Skip the first `n` EBibleSources.
|
|
5527
|
+
*/
|
|
5528
|
+
skip?: number
|
|
5529
|
+
distinct?: EBibleSourceScalarFieldEnum | EBibleSourceScalarFieldEnum[]
|
|
5530
|
+
}
|
|
5531
|
+
|
|
5532
|
+
/**
|
|
5533
|
+
* EBibleSource create
|
|
5534
|
+
*/
|
|
5535
|
+
export type EBibleSourceCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5536
|
+
/**
|
|
5537
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5538
|
+
*/
|
|
5539
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5540
|
+
/**
|
|
5541
|
+
* The data needed to create a EBibleSource.
|
|
5542
|
+
*/
|
|
5543
|
+
data: XOR<EBibleSourceCreateInput, EBibleSourceUncheckedCreateInput>
|
|
5544
|
+
}
|
|
5545
|
+
|
|
5546
|
+
/**
|
|
5547
|
+
* EBibleSource createMany
|
|
5548
|
+
*/
|
|
5549
|
+
export type EBibleSourceCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5550
|
+
/**
|
|
5551
|
+
* The data used to create many EBibleSources.
|
|
5552
|
+
*/
|
|
5553
|
+
data: EBibleSourceCreateManyInput | EBibleSourceCreateManyInput[]
|
|
5554
|
+
}
|
|
5555
|
+
|
|
5556
|
+
/**
|
|
5557
|
+
* EBibleSource createManyAndReturn
|
|
5558
|
+
*/
|
|
5559
|
+
export type EBibleSourceCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5560
|
+
/**
|
|
5561
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5562
|
+
*/
|
|
5563
|
+
select?: EBibleSourceSelectCreateManyAndReturn<ExtArgs> | null
|
|
5564
|
+
/**
|
|
5565
|
+
* The data used to create many EBibleSources.
|
|
5566
|
+
*/
|
|
5567
|
+
data: EBibleSourceCreateManyInput | EBibleSourceCreateManyInput[]
|
|
5568
|
+
}
|
|
5569
|
+
|
|
5570
|
+
/**
|
|
5571
|
+
* EBibleSource update
|
|
5572
|
+
*/
|
|
5573
|
+
export type EBibleSourceUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5574
|
+
/**
|
|
5575
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5576
|
+
*/
|
|
5577
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5578
|
+
/**
|
|
5579
|
+
* The data needed to update a EBibleSource.
|
|
5580
|
+
*/
|
|
5581
|
+
data: XOR<EBibleSourceUpdateInput, EBibleSourceUncheckedUpdateInput>
|
|
5582
|
+
/**
|
|
5583
|
+
* Choose, which EBibleSource to update.
|
|
5584
|
+
*/
|
|
5585
|
+
where: EBibleSourceWhereUniqueInput
|
|
5586
|
+
}
|
|
5587
|
+
|
|
5588
|
+
/**
|
|
5589
|
+
* EBibleSource updateMany
|
|
5590
|
+
*/
|
|
5591
|
+
export type EBibleSourceUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5592
|
+
/**
|
|
5593
|
+
* The data used to update EBibleSources.
|
|
5594
|
+
*/
|
|
5595
|
+
data: XOR<EBibleSourceUpdateManyMutationInput, EBibleSourceUncheckedUpdateManyInput>
|
|
5596
|
+
/**
|
|
5597
|
+
* Filter which EBibleSources to update
|
|
5598
|
+
*/
|
|
5599
|
+
where?: EBibleSourceWhereInput
|
|
5600
|
+
}
|
|
5601
|
+
|
|
5602
|
+
/**
|
|
5603
|
+
* EBibleSource upsert
|
|
5604
|
+
*/
|
|
5605
|
+
export type EBibleSourceUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5606
|
+
/**
|
|
5607
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5608
|
+
*/
|
|
5609
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5610
|
+
/**
|
|
5611
|
+
* The filter to search for the EBibleSource to update in case it exists.
|
|
5612
|
+
*/
|
|
5613
|
+
where: EBibleSourceWhereUniqueInput
|
|
5614
|
+
/**
|
|
5615
|
+
* In case the EBibleSource found by the `where` argument doesn't exist, create a new EBibleSource with this data.
|
|
5616
|
+
*/
|
|
5617
|
+
create: XOR<EBibleSourceCreateInput, EBibleSourceUncheckedCreateInput>
|
|
5618
|
+
/**
|
|
5619
|
+
* In case the EBibleSource was found with the provided `where` argument, update it with this data.
|
|
5620
|
+
*/
|
|
5621
|
+
update: XOR<EBibleSourceUpdateInput, EBibleSourceUncheckedUpdateInput>
|
|
5622
|
+
}
|
|
5623
|
+
|
|
5624
|
+
/**
|
|
5625
|
+
* EBibleSource delete
|
|
5626
|
+
*/
|
|
5627
|
+
export type EBibleSourceDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5628
|
+
/**
|
|
5629
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5630
|
+
*/
|
|
5631
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5632
|
+
/**
|
|
5633
|
+
* Filter which EBibleSource to delete.
|
|
5634
|
+
*/
|
|
5635
|
+
where: EBibleSourceWhereUniqueInput
|
|
5636
|
+
}
|
|
5637
|
+
|
|
5638
|
+
/**
|
|
5639
|
+
* EBibleSource deleteMany
|
|
5640
|
+
*/
|
|
5641
|
+
export type EBibleSourceDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5642
|
+
/**
|
|
5643
|
+
* Filter which EBibleSources to delete
|
|
5644
|
+
*/
|
|
5645
|
+
where?: EBibleSourceWhereInput
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
/**
|
|
5649
|
+
* EBibleSource without action
|
|
5650
|
+
*/
|
|
5651
|
+
export type EBibleSourceDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5652
|
+
/**
|
|
5653
|
+
* Select specific fields to fetch from the EBibleSource
|
|
5654
|
+
*/
|
|
5655
|
+
select?: EBibleSourceSelect<ExtArgs> | null
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5658
|
+
|
|
5659
|
+
/**
|
|
5660
|
+
* Model InputFile
|
|
5661
|
+
*/
|
|
5662
|
+
|
|
5663
|
+
export type AggregateInputFile = {
|
|
5664
|
+
_count: InputFileCountAggregateOutputType | null
|
|
5665
|
+
_avg: InputFileAvgAggregateOutputType | null
|
|
5666
|
+
_sum: InputFileSumAggregateOutputType | null
|
|
5667
|
+
_min: InputFileMinAggregateOutputType | null
|
|
5668
|
+
_max: InputFileMaxAggregateOutputType | null
|
|
5669
|
+
}
|
|
5670
|
+
|
|
5671
|
+
export type InputFileAvgAggregateOutputType = {
|
|
5672
|
+
sizeInBytes: number | null
|
|
5673
|
+
}
|
|
5674
|
+
|
|
5675
|
+
export type InputFileSumAggregateOutputType = {
|
|
5676
|
+
sizeInBytes: number | null
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5679
|
+
export type InputFileMinAggregateOutputType = {
|
|
5680
|
+
translationId: string | null
|
|
5681
|
+
name: string | null
|
|
5682
|
+
format: string | null
|
|
5683
|
+
sha256: string | null
|
|
5684
|
+
sizeInBytes: number | null
|
|
5685
|
+
}
|
|
5686
|
+
|
|
5687
|
+
export type InputFileMaxAggregateOutputType = {
|
|
5688
|
+
translationId: string | null
|
|
5689
|
+
name: string | null
|
|
5690
|
+
format: string | null
|
|
5691
|
+
sha256: string | null
|
|
5692
|
+
sizeInBytes: number | null
|
|
5693
|
+
}
|
|
5694
|
+
|
|
5695
|
+
export type InputFileCountAggregateOutputType = {
|
|
5696
|
+
translationId: number
|
|
5697
|
+
name: number
|
|
5698
|
+
format: number
|
|
5699
|
+
sha256: number
|
|
5700
|
+
sizeInBytes: number
|
|
5701
|
+
_all: number
|
|
5702
|
+
}
|
|
5703
|
+
|
|
5704
|
+
|
|
5705
|
+
export type InputFileAvgAggregateInputType = {
|
|
5706
|
+
sizeInBytes?: true
|
|
5707
|
+
}
|
|
5708
|
+
|
|
5709
|
+
export type InputFileSumAggregateInputType = {
|
|
5710
|
+
sizeInBytes?: true
|
|
5711
|
+
}
|
|
5712
|
+
|
|
5713
|
+
export type InputFileMinAggregateInputType = {
|
|
5714
|
+
translationId?: true
|
|
5715
|
+
name?: true
|
|
5716
|
+
format?: true
|
|
5717
|
+
sha256?: true
|
|
5718
|
+
sizeInBytes?: true
|
|
5719
|
+
}
|
|
5720
|
+
|
|
5721
|
+
export type InputFileMaxAggregateInputType = {
|
|
5722
|
+
translationId?: true
|
|
5723
|
+
name?: true
|
|
5724
|
+
format?: true
|
|
5725
|
+
sha256?: true
|
|
5726
|
+
sizeInBytes?: true
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5729
|
+
export type InputFileCountAggregateInputType = {
|
|
5730
|
+
translationId?: true
|
|
5731
|
+
name?: true
|
|
5732
|
+
format?: true
|
|
5733
|
+
sha256?: true
|
|
5734
|
+
sizeInBytes?: true
|
|
5735
|
+
_all?: true
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5738
|
+
export type InputFileAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5739
|
+
/**
|
|
5740
|
+
* Filter which InputFile to aggregate.
|
|
5741
|
+
*/
|
|
5742
|
+
where?: InputFileWhereInput
|
|
5743
|
+
/**
|
|
5744
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
5745
|
+
*
|
|
5746
|
+
* Determine the order of InputFiles to fetch.
|
|
5747
|
+
*/
|
|
5748
|
+
orderBy?: InputFileOrderByWithRelationInput | InputFileOrderByWithRelationInput[]
|
|
5749
|
+
/**
|
|
5750
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
5751
|
+
*
|
|
5752
|
+
* Sets the start position
|
|
5753
|
+
*/
|
|
5754
|
+
cursor?: InputFileWhereUniqueInput
|
|
5755
|
+
/**
|
|
5756
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5757
|
+
*
|
|
5758
|
+
* Take `±n` InputFiles from the position of the cursor.
|
|
5759
|
+
*/
|
|
5760
|
+
take?: number
|
|
5761
|
+
/**
|
|
5762
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5763
|
+
*
|
|
5764
|
+
* Skip the first `n` InputFiles.
|
|
5765
|
+
*/
|
|
5766
|
+
skip?: number
|
|
5767
|
+
/**
|
|
5768
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
5769
|
+
*
|
|
5770
|
+
* Count returned InputFiles
|
|
5771
|
+
**/
|
|
5772
|
+
_count?: true | InputFileCountAggregateInputType
|
|
5773
|
+
/**
|
|
5774
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
5775
|
+
*
|
|
5776
|
+
* Select which fields to average
|
|
5777
|
+
**/
|
|
5778
|
+
_avg?: InputFileAvgAggregateInputType
|
|
5779
|
+
/**
|
|
5780
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
5781
|
+
*
|
|
5782
|
+
* Select which fields to sum
|
|
5783
|
+
**/
|
|
5784
|
+
_sum?: InputFileSumAggregateInputType
|
|
5785
|
+
/**
|
|
5786
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
5787
|
+
*
|
|
5788
|
+
* Select which fields to find the minimum value
|
|
5789
|
+
**/
|
|
5790
|
+
_min?: InputFileMinAggregateInputType
|
|
5791
|
+
/**
|
|
5792
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
5793
|
+
*
|
|
5794
|
+
* Select which fields to find the maximum value
|
|
5795
|
+
**/
|
|
5796
|
+
_max?: InputFileMaxAggregateInputType
|
|
5797
|
+
}
|
|
5798
|
+
|
|
5799
|
+
export type GetInputFileAggregateType<T extends InputFileAggregateArgs> = {
|
|
5800
|
+
[P in keyof T & keyof AggregateInputFile]: P extends '_count' | 'count'
|
|
5801
|
+
? T[P] extends true
|
|
5802
|
+
? number
|
|
5803
|
+
: GetScalarType<T[P], AggregateInputFile[P]>
|
|
5804
|
+
: GetScalarType<T[P], AggregateInputFile[P]>
|
|
5805
|
+
}
|
|
5806
|
+
|
|
5807
|
+
|
|
5808
|
+
|
|
5809
|
+
|
|
5810
|
+
export type InputFileGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5811
|
+
where?: InputFileWhereInput
|
|
5812
|
+
orderBy?: InputFileOrderByWithAggregationInput | InputFileOrderByWithAggregationInput[]
|
|
5813
|
+
by: InputFileScalarFieldEnum[] | InputFileScalarFieldEnum
|
|
5814
|
+
having?: InputFileScalarWhereWithAggregatesInput
|
|
5815
|
+
take?: number
|
|
5816
|
+
skip?: number
|
|
5817
|
+
_count?: InputFileCountAggregateInputType | true
|
|
5818
|
+
_avg?: InputFileAvgAggregateInputType
|
|
5819
|
+
_sum?: InputFileSumAggregateInputType
|
|
5820
|
+
_min?: InputFileMinAggregateInputType
|
|
5821
|
+
_max?: InputFileMaxAggregateInputType
|
|
5822
|
+
}
|
|
5823
|
+
|
|
5824
|
+
export type InputFileGroupByOutputType = {
|
|
5825
|
+
translationId: string
|
|
5826
|
+
name: string
|
|
5827
|
+
format: string
|
|
5828
|
+
sha256: string
|
|
5829
|
+
sizeInBytes: number
|
|
5830
|
+
_count: InputFileCountAggregateOutputType | null
|
|
5831
|
+
_avg: InputFileAvgAggregateOutputType | null
|
|
5832
|
+
_sum: InputFileSumAggregateOutputType | null
|
|
5833
|
+
_min: InputFileMinAggregateOutputType | null
|
|
5834
|
+
_max: InputFileMaxAggregateOutputType | null
|
|
5835
|
+
}
|
|
5836
|
+
|
|
5837
|
+
type GetInputFileGroupByPayload<T extends InputFileGroupByArgs> = Prisma.PrismaPromise<
|
|
5838
|
+
Array<
|
|
5839
|
+
PickEnumerable<InputFileGroupByOutputType, T['by']> &
|
|
5840
|
+
{
|
|
5841
|
+
[P in ((keyof T) & (keyof InputFileGroupByOutputType))]: P extends '_count'
|
|
5842
|
+
? T[P] extends boolean
|
|
5843
|
+
? number
|
|
5844
|
+
: GetScalarType<T[P], InputFileGroupByOutputType[P]>
|
|
5845
|
+
: GetScalarType<T[P], InputFileGroupByOutputType[P]>
|
|
5846
|
+
}
|
|
5847
|
+
>
|
|
5848
|
+
>
|
|
5849
|
+
|
|
5850
|
+
|
|
5851
|
+
export type InputFileSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5852
|
+
translationId?: boolean
|
|
5853
|
+
name?: boolean
|
|
5854
|
+
format?: boolean
|
|
5855
|
+
sha256?: boolean
|
|
5856
|
+
sizeInBytes?: boolean
|
|
5857
|
+
}, ExtArgs["result"]["inputFile"]>
|
|
5858
|
+
|
|
5859
|
+
export type InputFileSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5860
|
+
translationId?: boolean
|
|
5861
|
+
name?: boolean
|
|
5862
|
+
format?: boolean
|
|
5863
|
+
sha256?: boolean
|
|
5864
|
+
sizeInBytes?: boolean
|
|
5865
|
+
}, ExtArgs["result"]["inputFile"]>
|
|
5866
|
+
|
|
5867
|
+
export type InputFileSelectScalar = {
|
|
5868
|
+
translationId?: boolean
|
|
5869
|
+
name?: boolean
|
|
5870
|
+
format?: boolean
|
|
5871
|
+
sha256?: boolean
|
|
5872
|
+
sizeInBytes?: boolean
|
|
5873
|
+
}
|
|
5874
|
+
|
|
5875
|
+
|
|
5876
|
+
export type $InputFilePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5877
|
+
name: "InputFile"
|
|
5878
|
+
objects: {}
|
|
5879
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
5880
|
+
translationId: string
|
|
5881
|
+
name: string
|
|
5882
|
+
format: string
|
|
5883
|
+
sha256: string
|
|
5884
|
+
sizeInBytes: number
|
|
5885
|
+
}, ExtArgs["result"]["inputFile"]>
|
|
5886
|
+
composites: {}
|
|
5887
|
+
}
|
|
5888
|
+
|
|
5889
|
+
type InputFileGetPayload<S extends boolean | null | undefined | InputFileDefaultArgs> = $Result.GetResult<Prisma.$InputFilePayload, S>
|
|
5890
|
+
|
|
5891
|
+
type InputFileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
5892
|
+
Omit<InputFileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
5893
|
+
select?: InputFileCountAggregateInputType | true
|
|
5894
|
+
}
|
|
5895
|
+
|
|
5896
|
+
export interface InputFileDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
5897
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['InputFile'], meta: { name: 'InputFile' } }
|
|
5898
|
+
/**
|
|
5899
|
+
* Find zero or one InputFile that matches the filter.
|
|
5900
|
+
* @param {InputFileFindUniqueArgs} args - Arguments to find a InputFile
|
|
5901
|
+
* @example
|
|
5902
|
+
* // Get one InputFile
|
|
5903
|
+
* const inputFile = await prisma.inputFile.findUnique({
|
|
5904
|
+
* where: {
|
|
5905
|
+
* // ... provide filter here
|
|
5906
|
+
* }
|
|
5907
|
+
* })
|
|
5908
|
+
*/
|
|
5909
|
+
findUnique<T extends InputFileFindUniqueArgs>(args: SelectSubset<T, InputFileFindUniqueArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
5910
|
+
|
|
5911
|
+
/**
|
|
5912
|
+
* Find one InputFile that matches the filter or throw an error with `error.code='P2025'`
|
|
5913
|
+
* if no matches were found.
|
|
5914
|
+
* @param {InputFileFindUniqueOrThrowArgs} args - Arguments to find a InputFile
|
|
5915
|
+
* @example
|
|
5916
|
+
* // Get one InputFile
|
|
5917
|
+
* const inputFile = await prisma.inputFile.findUniqueOrThrow({
|
|
5918
|
+
* where: {
|
|
5919
|
+
* // ... provide filter here
|
|
5920
|
+
* }
|
|
5921
|
+
* })
|
|
5922
|
+
*/
|
|
5923
|
+
findUniqueOrThrow<T extends InputFileFindUniqueOrThrowArgs>(args: SelectSubset<T, InputFileFindUniqueOrThrowArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
5924
|
+
|
|
5925
|
+
/**
|
|
5926
|
+
* Find the first InputFile that matches the filter.
|
|
5927
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5928
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5929
|
+
* @param {InputFileFindFirstArgs} args - Arguments to find a InputFile
|
|
5930
|
+
* @example
|
|
5931
|
+
* // Get one InputFile
|
|
5932
|
+
* const inputFile = await prisma.inputFile.findFirst({
|
|
5933
|
+
* where: {
|
|
5934
|
+
* // ... provide filter here
|
|
5935
|
+
* }
|
|
5936
|
+
* })
|
|
5937
|
+
*/
|
|
5938
|
+
findFirst<T extends InputFileFindFirstArgs>(args?: SelectSubset<T, InputFileFindFirstArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
5939
|
+
|
|
5940
|
+
/**
|
|
5941
|
+
* Find the first InputFile that matches the filter or
|
|
5942
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
5943
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
5944
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
5945
|
+
* @param {InputFileFindFirstOrThrowArgs} args - Arguments to find a InputFile
|
|
5946
|
+
* @example
|
|
5947
|
+
* // Get one InputFile
|
|
5948
|
+
* const inputFile = await prisma.inputFile.findFirstOrThrow({
|
|
5949
|
+
* where: {
|
|
5950
|
+
* // ... provide filter here
|
|
5951
|
+
* }
|
|
5952
|
+
* })
|
|
5953
|
+
*/
|
|
5954
|
+
findFirstOrThrow<T extends InputFileFindFirstOrThrowArgs>(args?: SelectSubset<T, InputFileFindFirstOrThrowArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
5955
|
+
|
|
5956
|
+
/**
|
|
5957
|
+
* Find zero or more InputFiles that matches the filter.
|
|
4592
5958
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4593
5959
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4594
5960
|
* @param {InputFileFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
4595
5961
|
* @example
|
|
4596
|
-
* // Get all InputFiles
|
|
4597
|
-
* const inputFiles = await prisma.inputFile.findMany()
|
|
5962
|
+
* // Get all InputFiles
|
|
5963
|
+
* const inputFiles = await prisma.inputFile.findMany()
|
|
5964
|
+
*
|
|
5965
|
+
* // Get first 10 InputFiles
|
|
5966
|
+
* const inputFiles = await prisma.inputFile.findMany({ take: 10 })
|
|
5967
|
+
*
|
|
5968
|
+
* // Only select the `translationId`
|
|
5969
|
+
* const inputFileWithTranslationIdOnly = await prisma.inputFile.findMany({ select: { translationId: true } })
|
|
5970
|
+
*
|
|
5971
|
+
*/
|
|
5972
|
+
findMany<T extends InputFileFindManyArgs>(args?: SelectSubset<T, InputFileFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "findMany">>
|
|
5973
|
+
|
|
5974
|
+
/**
|
|
5975
|
+
* Create a InputFile.
|
|
5976
|
+
* @param {InputFileCreateArgs} args - Arguments to create a InputFile.
|
|
5977
|
+
* @example
|
|
5978
|
+
* // Create one InputFile
|
|
5979
|
+
* const InputFile = await prisma.inputFile.create({
|
|
5980
|
+
* data: {
|
|
5981
|
+
* // ... data to create a InputFile
|
|
5982
|
+
* }
|
|
5983
|
+
* })
|
|
5984
|
+
*
|
|
5985
|
+
*/
|
|
5986
|
+
create<T extends InputFileCreateArgs>(args: SelectSubset<T, InputFileCreateArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
5987
|
+
|
|
5988
|
+
/**
|
|
5989
|
+
* Create many InputFiles.
|
|
5990
|
+
* @param {InputFileCreateManyArgs} args - Arguments to create many InputFiles.
|
|
5991
|
+
* @example
|
|
5992
|
+
* // Create many InputFiles
|
|
5993
|
+
* const inputFile = await prisma.inputFile.createMany({
|
|
5994
|
+
* data: [
|
|
5995
|
+
* // ... provide data here
|
|
5996
|
+
* ]
|
|
5997
|
+
* })
|
|
5998
|
+
*
|
|
5999
|
+
*/
|
|
6000
|
+
createMany<T extends InputFileCreateManyArgs>(args?: SelectSubset<T, InputFileCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
6001
|
+
|
|
6002
|
+
/**
|
|
6003
|
+
* Create many InputFiles and returns the data saved in the database.
|
|
6004
|
+
* @param {InputFileCreateManyAndReturnArgs} args - Arguments to create many InputFiles.
|
|
6005
|
+
* @example
|
|
6006
|
+
* // Create many InputFiles
|
|
6007
|
+
* const inputFile = await prisma.inputFile.createManyAndReturn({
|
|
6008
|
+
* data: [
|
|
6009
|
+
* // ... provide data here
|
|
6010
|
+
* ]
|
|
6011
|
+
* })
|
|
6012
|
+
*
|
|
6013
|
+
* // Create many InputFiles and only return the `translationId`
|
|
6014
|
+
* const inputFileWithTranslationIdOnly = await prisma.inputFile.createManyAndReturn({
|
|
6015
|
+
* select: { translationId: true },
|
|
6016
|
+
* data: [
|
|
6017
|
+
* // ... provide data here
|
|
6018
|
+
* ]
|
|
6019
|
+
* })
|
|
6020
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6021
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6022
|
+
*
|
|
6023
|
+
*/
|
|
6024
|
+
createManyAndReturn<T extends InputFileCreateManyAndReturnArgs>(args?: SelectSubset<T, InputFileCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "createManyAndReturn">>
|
|
6025
|
+
|
|
6026
|
+
/**
|
|
6027
|
+
* Delete a InputFile.
|
|
6028
|
+
* @param {InputFileDeleteArgs} args - Arguments to delete one InputFile.
|
|
6029
|
+
* @example
|
|
6030
|
+
* // Delete one InputFile
|
|
6031
|
+
* const InputFile = await prisma.inputFile.delete({
|
|
6032
|
+
* where: {
|
|
6033
|
+
* // ... filter to delete one InputFile
|
|
6034
|
+
* }
|
|
6035
|
+
* })
|
|
6036
|
+
*
|
|
6037
|
+
*/
|
|
6038
|
+
delete<T extends InputFileDeleteArgs>(args: SelectSubset<T, InputFileDeleteArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
6039
|
+
|
|
6040
|
+
/**
|
|
6041
|
+
* Update one InputFile.
|
|
6042
|
+
* @param {InputFileUpdateArgs} args - Arguments to update one InputFile.
|
|
6043
|
+
* @example
|
|
6044
|
+
* // Update one InputFile
|
|
6045
|
+
* const inputFile = await prisma.inputFile.update({
|
|
6046
|
+
* where: {
|
|
6047
|
+
* // ... provide filter here
|
|
6048
|
+
* },
|
|
6049
|
+
* data: {
|
|
6050
|
+
* // ... provide data here
|
|
6051
|
+
* }
|
|
6052
|
+
* })
|
|
6053
|
+
*
|
|
6054
|
+
*/
|
|
6055
|
+
update<T extends InputFileUpdateArgs>(args: SelectSubset<T, InputFileUpdateArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
6056
|
+
|
|
6057
|
+
/**
|
|
6058
|
+
* Delete zero or more InputFiles.
|
|
6059
|
+
* @param {InputFileDeleteManyArgs} args - Arguments to filter InputFiles to delete.
|
|
6060
|
+
* @example
|
|
6061
|
+
* // Delete a few InputFiles
|
|
6062
|
+
* const { count } = await prisma.inputFile.deleteMany({
|
|
6063
|
+
* where: {
|
|
6064
|
+
* // ... provide filter here
|
|
6065
|
+
* }
|
|
6066
|
+
* })
|
|
6067
|
+
*
|
|
6068
|
+
*/
|
|
6069
|
+
deleteMany<T extends InputFileDeleteManyArgs>(args?: SelectSubset<T, InputFileDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
6070
|
+
|
|
6071
|
+
/**
|
|
6072
|
+
* Update zero or more InputFiles.
|
|
6073
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6074
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6075
|
+
* @param {InputFileUpdateManyArgs} args - Arguments to update one or more rows.
|
|
6076
|
+
* @example
|
|
6077
|
+
* // Update many InputFiles
|
|
6078
|
+
* const inputFile = await prisma.inputFile.updateMany({
|
|
6079
|
+
* where: {
|
|
6080
|
+
* // ... provide filter here
|
|
6081
|
+
* },
|
|
6082
|
+
* data: {
|
|
6083
|
+
* // ... provide data here
|
|
6084
|
+
* }
|
|
6085
|
+
* })
|
|
6086
|
+
*
|
|
6087
|
+
*/
|
|
6088
|
+
updateMany<T extends InputFileUpdateManyArgs>(args: SelectSubset<T, InputFileUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
6089
|
+
|
|
6090
|
+
/**
|
|
6091
|
+
* Create or update one InputFile.
|
|
6092
|
+
* @param {InputFileUpsertArgs} args - Arguments to update or create a InputFile.
|
|
6093
|
+
* @example
|
|
6094
|
+
* // Update or create a InputFile
|
|
6095
|
+
* const inputFile = await prisma.inputFile.upsert({
|
|
6096
|
+
* create: {
|
|
6097
|
+
* // ... data to create a InputFile
|
|
6098
|
+
* },
|
|
6099
|
+
* update: {
|
|
6100
|
+
* // ... in case it already exists, update
|
|
6101
|
+
* },
|
|
6102
|
+
* where: {
|
|
6103
|
+
* // ... the filter for the InputFile we want to update
|
|
6104
|
+
* }
|
|
6105
|
+
* })
|
|
6106
|
+
*/
|
|
6107
|
+
upsert<T extends InputFileUpsertArgs>(args: SelectSubset<T, InputFileUpsertArgs<ExtArgs>>): Prisma__InputFileClient<$Result.GetResult<Prisma.$InputFilePayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
6108
|
+
|
|
6109
|
+
|
|
6110
|
+
/**
|
|
6111
|
+
* Count the number of InputFiles.
|
|
6112
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6113
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6114
|
+
* @param {InputFileCountArgs} args - Arguments to filter InputFiles to count.
|
|
6115
|
+
* @example
|
|
6116
|
+
* // Count the number of InputFiles
|
|
6117
|
+
* const count = await prisma.inputFile.count({
|
|
6118
|
+
* where: {
|
|
6119
|
+
* // ... the filter for the InputFiles we want to count
|
|
6120
|
+
* }
|
|
6121
|
+
* })
|
|
6122
|
+
**/
|
|
6123
|
+
count<T extends InputFileCountArgs>(
|
|
6124
|
+
args?: Subset<T, InputFileCountArgs>,
|
|
6125
|
+
): Prisma.PrismaPromise<
|
|
6126
|
+
T extends $Utils.Record<'select', any>
|
|
6127
|
+
? T['select'] extends true
|
|
6128
|
+
? number
|
|
6129
|
+
: GetScalarType<T['select'], InputFileCountAggregateOutputType>
|
|
6130
|
+
: number
|
|
6131
|
+
>
|
|
6132
|
+
|
|
6133
|
+
/**
|
|
6134
|
+
* Allows you to perform aggregations operations on a InputFile.
|
|
6135
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6136
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6137
|
+
* @param {InputFileAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
6138
|
+
* @example
|
|
6139
|
+
* // Ordered by age ascending
|
|
6140
|
+
* // Where email contains prisma.io
|
|
6141
|
+
* // Limited to the 10 users
|
|
6142
|
+
* const aggregations = await prisma.user.aggregate({
|
|
6143
|
+
* _avg: {
|
|
6144
|
+
* age: true,
|
|
6145
|
+
* },
|
|
6146
|
+
* where: {
|
|
6147
|
+
* email: {
|
|
6148
|
+
* contains: "prisma.io",
|
|
6149
|
+
* },
|
|
6150
|
+
* },
|
|
6151
|
+
* orderBy: {
|
|
6152
|
+
* age: "asc",
|
|
6153
|
+
* },
|
|
6154
|
+
* take: 10,
|
|
6155
|
+
* })
|
|
6156
|
+
**/
|
|
6157
|
+
aggregate<T extends InputFileAggregateArgs>(args: Subset<T, InputFileAggregateArgs>): Prisma.PrismaPromise<GetInputFileAggregateType<T>>
|
|
6158
|
+
|
|
6159
|
+
/**
|
|
6160
|
+
* Group by InputFile.
|
|
6161
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6162
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6163
|
+
* @param {InputFileGroupByArgs} args - Group by arguments.
|
|
6164
|
+
* @example
|
|
6165
|
+
* // Group by city, order by createdAt, get count
|
|
6166
|
+
* const result = await prisma.user.groupBy({
|
|
6167
|
+
* by: ['city', 'createdAt'],
|
|
6168
|
+
* orderBy: {
|
|
6169
|
+
* createdAt: true
|
|
6170
|
+
* },
|
|
6171
|
+
* _count: {
|
|
6172
|
+
* _all: true
|
|
6173
|
+
* },
|
|
6174
|
+
* })
|
|
6175
|
+
*
|
|
6176
|
+
**/
|
|
6177
|
+
groupBy<
|
|
6178
|
+
T extends InputFileGroupByArgs,
|
|
6179
|
+
HasSelectOrTake extends Or<
|
|
6180
|
+
Extends<'skip', Keys<T>>,
|
|
6181
|
+
Extends<'take', Keys<T>>
|
|
6182
|
+
>,
|
|
6183
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
6184
|
+
? { orderBy: InputFileGroupByArgs['orderBy'] }
|
|
6185
|
+
: { orderBy?: InputFileGroupByArgs['orderBy'] },
|
|
6186
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
6187
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
6188
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
6189
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
6190
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
6191
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
6192
|
+
InputErrors extends ByEmpty extends True
|
|
6193
|
+
? `Error: "by" must not be empty.`
|
|
6194
|
+
: HavingValid extends False
|
|
6195
|
+
? {
|
|
6196
|
+
[P in HavingFields]: P extends ByFields
|
|
6197
|
+
? never
|
|
6198
|
+
: P extends string
|
|
6199
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
6200
|
+
: [
|
|
6201
|
+
Error,
|
|
6202
|
+
'Field ',
|
|
6203
|
+
P,
|
|
6204
|
+
` in "having" needs to be provided in "by"`,
|
|
6205
|
+
]
|
|
6206
|
+
}[HavingFields]
|
|
6207
|
+
: 'take' extends Keys<T>
|
|
6208
|
+
? 'orderBy' extends Keys<T>
|
|
6209
|
+
? ByValid extends True
|
|
6210
|
+
? {}
|
|
6211
|
+
: {
|
|
6212
|
+
[P in OrderFields]: P extends ByFields
|
|
6213
|
+
? never
|
|
6214
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
6215
|
+
}[OrderFields]
|
|
6216
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
6217
|
+
: 'skip' extends Keys<T>
|
|
6218
|
+
? 'orderBy' extends Keys<T>
|
|
6219
|
+
? ByValid extends True
|
|
6220
|
+
? {}
|
|
6221
|
+
: {
|
|
6222
|
+
[P in OrderFields]: P extends ByFields
|
|
6223
|
+
? never
|
|
6224
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
6225
|
+
}[OrderFields]
|
|
6226
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
6227
|
+
: ByValid extends True
|
|
6228
|
+
? {}
|
|
6229
|
+
: {
|
|
6230
|
+
[P in OrderFields]: P extends ByFields
|
|
6231
|
+
? never
|
|
6232
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
6233
|
+
}[OrderFields]
|
|
6234
|
+
>(args: SubsetIntersection<T, InputFileGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetInputFileGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
6235
|
+
/**
|
|
6236
|
+
* Fields of the InputFile model
|
|
6237
|
+
*/
|
|
6238
|
+
readonly fields: InputFileFieldRefs;
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
/**
|
|
6242
|
+
* The delegate class that acts as a "Promise-like" for InputFile.
|
|
6243
|
+
* Why is this prefixed with `Prisma__`?
|
|
6244
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
6245
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
6246
|
+
*/
|
|
6247
|
+
export interface Prisma__InputFileClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
6248
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
6249
|
+
/**
|
|
6250
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
6251
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
6252
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
6253
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
6254
|
+
*/
|
|
6255
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
6256
|
+
/**
|
|
6257
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
6258
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
6259
|
+
* @returns A Promise for the completion of the callback.
|
|
6260
|
+
*/
|
|
6261
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
6262
|
+
/**
|
|
6263
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
6264
|
+
* resolved value cannot be modified from the callback.
|
|
6265
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
6266
|
+
* @returns A Promise for the completion of the callback.
|
|
6267
|
+
*/
|
|
6268
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6271
|
+
|
|
6272
|
+
|
|
6273
|
+
|
|
6274
|
+
/**
|
|
6275
|
+
* Fields of the InputFile model
|
|
6276
|
+
*/
|
|
6277
|
+
interface InputFileFieldRefs {
|
|
6278
|
+
readonly translationId: FieldRef<"InputFile", 'String'>
|
|
6279
|
+
readonly name: FieldRef<"InputFile", 'String'>
|
|
6280
|
+
readonly format: FieldRef<"InputFile", 'String'>
|
|
6281
|
+
readonly sha256: FieldRef<"InputFile", 'String'>
|
|
6282
|
+
readonly sizeInBytes: FieldRef<"InputFile", 'Int'>
|
|
6283
|
+
}
|
|
6284
|
+
|
|
6285
|
+
|
|
6286
|
+
// Custom InputTypes
|
|
6287
|
+
/**
|
|
6288
|
+
* InputFile findUnique
|
|
6289
|
+
*/
|
|
6290
|
+
export type InputFileFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6291
|
+
/**
|
|
6292
|
+
* Select specific fields to fetch from the InputFile
|
|
6293
|
+
*/
|
|
6294
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6295
|
+
/**
|
|
6296
|
+
* Filter, which InputFile to fetch.
|
|
6297
|
+
*/
|
|
6298
|
+
where: InputFileWhereUniqueInput
|
|
6299
|
+
}
|
|
6300
|
+
|
|
6301
|
+
/**
|
|
6302
|
+
* InputFile findUniqueOrThrow
|
|
6303
|
+
*/
|
|
6304
|
+
export type InputFileFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6305
|
+
/**
|
|
6306
|
+
* Select specific fields to fetch from the InputFile
|
|
6307
|
+
*/
|
|
6308
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6309
|
+
/**
|
|
6310
|
+
* Filter, which InputFile to fetch.
|
|
6311
|
+
*/
|
|
6312
|
+
where: InputFileWhereUniqueInput
|
|
6313
|
+
}
|
|
6314
|
+
|
|
6315
|
+
/**
|
|
6316
|
+
* InputFile findFirst
|
|
6317
|
+
*/
|
|
6318
|
+
export type InputFileFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6319
|
+
/**
|
|
6320
|
+
* Select specific fields to fetch from the InputFile
|
|
6321
|
+
*/
|
|
6322
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6323
|
+
/**
|
|
6324
|
+
* Filter, which InputFile to fetch.
|
|
6325
|
+
*/
|
|
6326
|
+
where?: InputFileWhereInput
|
|
6327
|
+
/**
|
|
6328
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
6329
|
+
*
|
|
6330
|
+
* Determine the order of InputFiles to fetch.
|
|
6331
|
+
*/
|
|
6332
|
+
orderBy?: InputFileOrderByWithRelationInput | InputFileOrderByWithRelationInput[]
|
|
6333
|
+
/**
|
|
6334
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
6335
|
+
*
|
|
6336
|
+
* Sets the position for searching for InputFiles.
|
|
6337
|
+
*/
|
|
6338
|
+
cursor?: InputFileWhereUniqueInput
|
|
6339
|
+
/**
|
|
6340
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6341
|
+
*
|
|
6342
|
+
* Take `±n` InputFiles from the position of the cursor.
|
|
6343
|
+
*/
|
|
6344
|
+
take?: number
|
|
6345
|
+
/**
|
|
6346
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6347
|
+
*
|
|
6348
|
+
* Skip the first `n` InputFiles.
|
|
6349
|
+
*/
|
|
6350
|
+
skip?: number
|
|
6351
|
+
/**
|
|
6352
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
6353
|
+
*
|
|
6354
|
+
* Filter by unique combinations of InputFiles.
|
|
6355
|
+
*/
|
|
6356
|
+
distinct?: InputFileScalarFieldEnum | InputFileScalarFieldEnum[]
|
|
6357
|
+
}
|
|
6358
|
+
|
|
6359
|
+
/**
|
|
6360
|
+
* InputFile findFirstOrThrow
|
|
6361
|
+
*/
|
|
6362
|
+
export type InputFileFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6363
|
+
/**
|
|
6364
|
+
* Select specific fields to fetch from the InputFile
|
|
6365
|
+
*/
|
|
6366
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6367
|
+
/**
|
|
6368
|
+
* Filter, which InputFile to fetch.
|
|
6369
|
+
*/
|
|
6370
|
+
where?: InputFileWhereInput
|
|
6371
|
+
/**
|
|
6372
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
6373
|
+
*
|
|
6374
|
+
* Determine the order of InputFiles to fetch.
|
|
6375
|
+
*/
|
|
6376
|
+
orderBy?: InputFileOrderByWithRelationInput | InputFileOrderByWithRelationInput[]
|
|
6377
|
+
/**
|
|
6378
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
6379
|
+
*
|
|
6380
|
+
* Sets the position for searching for InputFiles.
|
|
6381
|
+
*/
|
|
6382
|
+
cursor?: InputFileWhereUniqueInput
|
|
6383
|
+
/**
|
|
6384
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6385
|
+
*
|
|
6386
|
+
* Take `±n` InputFiles from the position of the cursor.
|
|
6387
|
+
*/
|
|
6388
|
+
take?: number
|
|
6389
|
+
/**
|
|
6390
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6391
|
+
*
|
|
6392
|
+
* Skip the first `n` InputFiles.
|
|
6393
|
+
*/
|
|
6394
|
+
skip?: number
|
|
6395
|
+
/**
|
|
6396
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
6397
|
+
*
|
|
6398
|
+
* Filter by unique combinations of InputFiles.
|
|
6399
|
+
*/
|
|
6400
|
+
distinct?: InputFileScalarFieldEnum | InputFileScalarFieldEnum[]
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
/**
|
|
6404
|
+
* InputFile findMany
|
|
6405
|
+
*/
|
|
6406
|
+
export type InputFileFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6407
|
+
/**
|
|
6408
|
+
* Select specific fields to fetch from the InputFile
|
|
6409
|
+
*/
|
|
6410
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6411
|
+
/**
|
|
6412
|
+
* Filter, which InputFiles to fetch.
|
|
6413
|
+
*/
|
|
6414
|
+
where?: InputFileWhereInput
|
|
6415
|
+
/**
|
|
6416
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
6417
|
+
*
|
|
6418
|
+
* Determine the order of InputFiles to fetch.
|
|
6419
|
+
*/
|
|
6420
|
+
orderBy?: InputFileOrderByWithRelationInput | InputFileOrderByWithRelationInput[]
|
|
6421
|
+
/**
|
|
6422
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
6423
|
+
*
|
|
6424
|
+
* Sets the position for listing InputFiles.
|
|
6425
|
+
*/
|
|
6426
|
+
cursor?: InputFileWhereUniqueInput
|
|
6427
|
+
/**
|
|
6428
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6429
|
+
*
|
|
6430
|
+
* Take `±n` InputFiles from the position of the cursor.
|
|
6431
|
+
*/
|
|
6432
|
+
take?: number
|
|
6433
|
+
/**
|
|
6434
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6435
|
+
*
|
|
6436
|
+
* Skip the first `n` InputFiles.
|
|
6437
|
+
*/
|
|
6438
|
+
skip?: number
|
|
6439
|
+
distinct?: InputFileScalarFieldEnum | InputFileScalarFieldEnum[]
|
|
6440
|
+
}
|
|
6441
|
+
|
|
6442
|
+
/**
|
|
6443
|
+
* InputFile create
|
|
6444
|
+
*/
|
|
6445
|
+
export type InputFileCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6446
|
+
/**
|
|
6447
|
+
* Select specific fields to fetch from the InputFile
|
|
6448
|
+
*/
|
|
6449
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6450
|
+
/**
|
|
6451
|
+
* The data needed to create a InputFile.
|
|
6452
|
+
*/
|
|
6453
|
+
data: XOR<InputFileCreateInput, InputFileUncheckedCreateInput>
|
|
6454
|
+
}
|
|
6455
|
+
|
|
6456
|
+
/**
|
|
6457
|
+
* InputFile createMany
|
|
6458
|
+
*/
|
|
6459
|
+
export type InputFileCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6460
|
+
/**
|
|
6461
|
+
* The data used to create many InputFiles.
|
|
6462
|
+
*/
|
|
6463
|
+
data: InputFileCreateManyInput | InputFileCreateManyInput[]
|
|
6464
|
+
}
|
|
6465
|
+
|
|
6466
|
+
/**
|
|
6467
|
+
* InputFile createManyAndReturn
|
|
6468
|
+
*/
|
|
6469
|
+
export type InputFileCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6470
|
+
/**
|
|
6471
|
+
* Select specific fields to fetch from the InputFile
|
|
6472
|
+
*/
|
|
6473
|
+
select?: InputFileSelectCreateManyAndReturn<ExtArgs> | null
|
|
6474
|
+
/**
|
|
6475
|
+
* The data used to create many InputFiles.
|
|
6476
|
+
*/
|
|
6477
|
+
data: InputFileCreateManyInput | InputFileCreateManyInput[]
|
|
6478
|
+
}
|
|
6479
|
+
|
|
6480
|
+
/**
|
|
6481
|
+
* InputFile update
|
|
6482
|
+
*/
|
|
6483
|
+
export type InputFileUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6484
|
+
/**
|
|
6485
|
+
* Select specific fields to fetch from the InputFile
|
|
6486
|
+
*/
|
|
6487
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6488
|
+
/**
|
|
6489
|
+
* The data needed to update a InputFile.
|
|
6490
|
+
*/
|
|
6491
|
+
data: XOR<InputFileUpdateInput, InputFileUncheckedUpdateInput>
|
|
6492
|
+
/**
|
|
6493
|
+
* Choose, which InputFile to update.
|
|
6494
|
+
*/
|
|
6495
|
+
where: InputFileWhereUniqueInput
|
|
6496
|
+
}
|
|
6497
|
+
|
|
6498
|
+
/**
|
|
6499
|
+
* InputFile updateMany
|
|
6500
|
+
*/
|
|
6501
|
+
export type InputFileUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6502
|
+
/**
|
|
6503
|
+
* The data used to update InputFiles.
|
|
6504
|
+
*/
|
|
6505
|
+
data: XOR<InputFileUpdateManyMutationInput, InputFileUncheckedUpdateManyInput>
|
|
6506
|
+
/**
|
|
6507
|
+
* Filter which InputFiles to update
|
|
6508
|
+
*/
|
|
6509
|
+
where?: InputFileWhereInput
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6512
|
+
/**
|
|
6513
|
+
* InputFile upsert
|
|
6514
|
+
*/
|
|
6515
|
+
export type InputFileUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6516
|
+
/**
|
|
6517
|
+
* Select specific fields to fetch from the InputFile
|
|
6518
|
+
*/
|
|
6519
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6520
|
+
/**
|
|
6521
|
+
* The filter to search for the InputFile to update in case it exists.
|
|
6522
|
+
*/
|
|
6523
|
+
where: InputFileWhereUniqueInput
|
|
6524
|
+
/**
|
|
6525
|
+
* In case the InputFile found by the `where` argument doesn't exist, create a new InputFile with this data.
|
|
6526
|
+
*/
|
|
6527
|
+
create: XOR<InputFileCreateInput, InputFileUncheckedCreateInput>
|
|
6528
|
+
/**
|
|
6529
|
+
* In case the InputFile was found with the provided `where` argument, update it with this data.
|
|
6530
|
+
*/
|
|
6531
|
+
update: XOR<InputFileUpdateInput, InputFileUncheckedUpdateInput>
|
|
6532
|
+
}
|
|
6533
|
+
|
|
6534
|
+
/**
|
|
6535
|
+
* InputFile delete
|
|
6536
|
+
*/
|
|
6537
|
+
export type InputFileDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6538
|
+
/**
|
|
6539
|
+
* Select specific fields to fetch from the InputFile
|
|
6540
|
+
*/
|
|
6541
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6542
|
+
/**
|
|
6543
|
+
* Filter which InputFile to delete.
|
|
6544
|
+
*/
|
|
6545
|
+
where: InputFileWhereUniqueInput
|
|
6546
|
+
}
|
|
6547
|
+
|
|
6548
|
+
/**
|
|
6549
|
+
* InputFile deleteMany
|
|
6550
|
+
*/
|
|
6551
|
+
export type InputFileDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6552
|
+
/**
|
|
6553
|
+
* Filter which InputFiles to delete
|
|
6554
|
+
*/
|
|
6555
|
+
where?: InputFileWhereInput
|
|
6556
|
+
}
|
|
6557
|
+
|
|
6558
|
+
/**
|
|
6559
|
+
* InputFile without action
|
|
6560
|
+
*/
|
|
6561
|
+
export type InputFileDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6562
|
+
/**
|
|
6563
|
+
* Select specific fields to fetch from the InputFile
|
|
6564
|
+
*/
|
|
6565
|
+
select?: InputFileSelect<ExtArgs> | null
|
|
6566
|
+
}
|
|
6567
|
+
|
|
6568
|
+
|
|
6569
|
+
/**
|
|
6570
|
+
* Model InputFileWarning
|
|
6571
|
+
*/
|
|
6572
|
+
|
|
6573
|
+
export type AggregateInputFileWarning = {
|
|
6574
|
+
_count: InputFileWarningCountAggregateOutputType | null
|
|
6575
|
+
_min: InputFileWarningMinAggregateOutputType | null
|
|
6576
|
+
_max: InputFileWarningMaxAggregateOutputType | null
|
|
6577
|
+
}
|
|
6578
|
+
|
|
6579
|
+
export type InputFileWarningMinAggregateOutputType = {
|
|
6580
|
+
name: string | null
|
|
6581
|
+
type: string | null
|
|
6582
|
+
message: string | null
|
|
6583
|
+
}
|
|
6584
|
+
|
|
6585
|
+
export type InputFileWarningMaxAggregateOutputType = {
|
|
6586
|
+
name: string | null
|
|
6587
|
+
type: string | null
|
|
6588
|
+
message: string | null
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6591
|
+
export type InputFileWarningCountAggregateOutputType = {
|
|
6592
|
+
name: number
|
|
6593
|
+
type: number
|
|
6594
|
+
message: number
|
|
6595
|
+
_all: number
|
|
6596
|
+
}
|
|
6597
|
+
|
|
6598
|
+
|
|
6599
|
+
export type InputFileWarningMinAggregateInputType = {
|
|
6600
|
+
name?: true
|
|
6601
|
+
type?: true
|
|
6602
|
+
message?: true
|
|
6603
|
+
}
|
|
6604
|
+
|
|
6605
|
+
export type InputFileWarningMaxAggregateInputType = {
|
|
6606
|
+
name?: true
|
|
6607
|
+
type?: true
|
|
6608
|
+
message?: true
|
|
6609
|
+
}
|
|
6610
|
+
|
|
6611
|
+
export type InputFileWarningCountAggregateInputType = {
|
|
6612
|
+
name?: true
|
|
6613
|
+
type?: true
|
|
6614
|
+
message?: true
|
|
6615
|
+
_all?: true
|
|
6616
|
+
}
|
|
6617
|
+
|
|
6618
|
+
export type InputFileWarningAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6619
|
+
/**
|
|
6620
|
+
* Filter which InputFileWarning to aggregate.
|
|
6621
|
+
*/
|
|
6622
|
+
where?: InputFileWarningWhereInput
|
|
6623
|
+
/**
|
|
6624
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
6625
|
+
*
|
|
6626
|
+
* Determine the order of InputFileWarnings to fetch.
|
|
6627
|
+
*/
|
|
6628
|
+
orderBy?: InputFileWarningOrderByWithRelationInput | InputFileWarningOrderByWithRelationInput[]
|
|
6629
|
+
/**
|
|
6630
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
6631
|
+
*
|
|
6632
|
+
* Sets the start position
|
|
6633
|
+
*/
|
|
6634
|
+
cursor?: InputFileWarningWhereUniqueInput
|
|
6635
|
+
/**
|
|
6636
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6637
|
+
*
|
|
6638
|
+
* Take `±n` InputFileWarnings from the position of the cursor.
|
|
6639
|
+
*/
|
|
6640
|
+
take?: number
|
|
6641
|
+
/**
|
|
6642
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
6643
|
+
*
|
|
6644
|
+
* Skip the first `n` InputFileWarnings.
|
|
6645
|
+
*/
|
|
6646
|
+
skip?: number
|
|
6647
|
+
/**
|
|
6648
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
6649
|
+
*
|
|
6650
|
+
* Count returned InputFileWarnings
|
|
6651
|
+
**/
|
|
6652
|
+
_count?: true | InputFileWarningCountAggregateInputType
|
|
6653
|
+
/**
|
|
6654
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
6655
|
+
*
|
|
6656
|
+
* Select which fields to find the minimum value
|
|
6657
|
+
**/
|
|
6658
|
+
_min?: InputFileWarningMinAggregateInputType
|
|
6659
|
+
/**
|
|
6660
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
6661
|
+
*
|
|
6662
|
+
* Select which fields to find the maximum value
|
|
6663
|
+
**/
|
|
6664
|
+
_max?: InputFileWarningMaxAggregateInputType
|
|
6665
|
+
}
|
|
6666
|
+
|
|
6667
|
+
export type GetInputFileWarningAggregateType<T extends InputFileWarningAggregateArgs> = {
|
|
6668
|
+
[P in keyof T & keyof AggregateInputFileWarning]: P extends '_count' | 'count'
|
|
6669
|
+
? T[P] extends true
|
|
6670
|
+
? number
|
|
6671
|
+
: GetScalarType<T[P], AggregateInputFileWarning[P]>
|
|
6672
|
+
: GetScalarType<T[P], AggregateInputFileWarning[P]>
|
|
6673
|
+
}
|
|
6674
|
+
|
|
6675
|
+
|
|
6676
|
+
|
|
6677
|
+
|
|
6678
|
+
export type InputFileWarningGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6679
|
+
where?: InputFileWarningWhereInput
|
|
6680
|
+
orderBy?: InputFileWarningOrderByWithAggregationInput | InputFileWarningOrderByWithAggregationInput[]
|
|
6681
|
+
by: InputFileWarningScalarFieldEnum[] | InputFileWarningScalarFieldEnum
|
|
6682
|
+
having?: InputFileWarningScalarWhereWithAggregatesInput
|
|
6683
|
+
take?: number
|
|
6684
|
+
skip?: number
|
|
6685
|
+
_count?: InputFileWarningCountAggregateInputType | true
|
|
6686
|
+
_min?: InputFileWarningMinAggregateInputType
|
|
6687
|
+
_max?: InputFileWarningMaxAggregateInputType
|
|
6688
|
+
}
|
|
6689
|
+
|
|
6690
|
+
export type InputFileWarningGroupByOutputType = {
|
|
6691
|
+
name: string
|
|
6692
|
+
type: string
|
|
6693
|
+
message: string
|
|
6694
|
+
_count: InputFileWarningCountAggregateOutputType | null
|
|
6695
|
+
_min: InputFileWarningMinAggregateOutputType | null
|
|
6696
|
+
_max: InputFileWarningMaxAggregateOutputType | null
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
type GetInputFileWarningGroupByPayload<T extends InputFileWarningGroupByArgs> = Prisma.PrismaPromise<
|
|
6700
|
+
Array<
|
|
6701
|
+
PickEnumerable<InputFileWarningGroupByOutputType, T['by']> &
|
|
6702
|
+
{
|
|
6703
|
+
[P in ((keyof T) & (keyof InputFileWarningGroupByOutputType))]: P extends '_count'
|
|
6704
|
+
? T[P] extends boolean
|
|
6705
|
+
? number
|
|
6706
|
+
: GetScalarType<T[P], InputFileWarningGroupByOutputType[P]>
|
|
6707
|
+
: GetScalarType<T[P], InputFileWarningGroupByOutputType[P]>
|
|
6708
|
+
}
|
|
6709
|
+
>
|
|
6710
|
+
>
|
|
6711
|
+
|
|
6712
|
+
|
|
6713
|
+
export type InputFileWarningSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6714
|
+
name?: boolean
|
|
6715
|
+
type?: boolean
|
|
6716
|
+
message?: boolean
|
|
6717
|
+
}, ExtArgs["result"]["inputFileWarning"]>
|
|
6718
|
+
|
|
6719
|
+
export type InputFileWarningSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6720
|
+
name?: boolean
|
|
6721
|
+
type?: boolean
|
|
6722
|
+
message?: boolean
|
|
6723
|
+
}, ExtArgs["result"]["inputFileWarning"]>
|
|
6724
|
+
|
|
6725
|
+
export type InputFileWarningSelectScalar = {
|
|
6726
|
+
name?: boolean
|
|
6727
|
+
type?: boolean
|
|
6728
|
+
message?: boolean
|
|
6729
|
+
}
|
|
6730
|
+
|
|
6731
|
+
|
|
6732
|
+
export type $InputFileWarningPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6733
|
+
name: "InputFileWarning"
|
|
6734
|
+
objects: {}
|
|
6735
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
6736
|
+
name: string
|
|
6737
|
+
type: string
|
|
6738
|
+
message: string
|
|
6739
|
+
}, ExtArgs["result"]["inputFileWarning"]>
|
|
6740
|
+
composites: {}
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
type InputFileWarningGetPayload<S extends boolean | null | undefined | InputFileWarningDefaultArgs> = $Result.GetResult<Prisma.$InputFileWarningPayload, S>
|
|
6744
|
+
|
|
6745
|
+
type InputFileWarningCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
6746
|
+
Omit<InputFileWarningFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
6747
|
+
select?: InputFileWarningCountAggregateInputType | true
|
|
6748
|
+
}
|
|
6749
|
+
|
|
6750
|
+
export interface InputFileWarningDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
6751
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['InputFileWarning'], meta: { name: 'InputFileWarning' } }
|
|
6752
|
+
/**
|
|
6753
|
+
* Find zero or one InputFileWarning that matches the filter.
|
|
6754
|
+
* @param {InputFileWarningFindUniqueArgs} args - Arguments to find a InputFileWarning
|
|
6755
|
+
* @example
|
|
6756
|
+
* // Get one InputFileWarning
|
|
6757
|
+
* const inputFileWarning = await prisma.inputFileWarning.findUnique({
|
|
6758
|
+
* where: {
|
|
6759
|
+
* // ... provide filter here
|
|
6760
|
+
* }
|
|
6761
|
+
* })
|
|
6762
|
+
*/
|
|
6763
|
+
findUnique<T extends InputFileWarningFindUniqueArgs>(args: SelectSubset<T, InputFileWarningFindUniqueArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
6764
|
+
|
|
6765
|
+
/**
|
|
6766
|
+
* Find one InputFileWarning that matches the filter or throw an error with `error.code='P2025'`
|
|
6767
|
+
* if no matches were found.
|
|
6768
|
+
* @param {InputFileWarningFindUniqueOrThrowArgs} args - Arguments to find a InputFileWarning
|
|
6769
|
+
* @example
|
|
6770
|
+
* // Get one InputFileWarning
|
|
6771
|
+
* const inputFileWarning = await prisma.inputFileWarning.findUniqueOrThrow({
|
|
6772
|
+
* where: {
|
|
6773
|
+
* // ... provide filter here
|
|
6774
|
+
* }
|
|
6775
|
+
* })
|
|
6776
|
+
*/
|
|
6777
|
+
findUniqueOrThrow<T extends InputFileWarningFindUniqueOrThrowArgs>(args: SelectSubset<T, InputFileWarningFindUniqueOrThrowArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
6778
|
+
|
|
6779
|
+
/**
|
|
6780
|
+
* Find the first InputFileWarning that matches the filter.
|
|
6781
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6782
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6783
|
+
* @param {InputFileWarningFindFirstArgs} args - Arguments to find a InputFileWarning
|
|
6784
|
+
* @example
|
|
6785
|
+
* // Get one InputFileWarning
|
|
6786
|
+
* const inputFileWarning = await prisma.inputFileWarning.findFirst({
|
|
6787
|
+
* where: {
|
|
6788
|
+
* // ... provide filter here
|
|
6789
|
+
* }
|
|
6790
|
+
* })
|
|
6791
|
+
*/
|
|
6792
|
+
findFirst<T extends InputFileWarningFindFirstArgs>(args?: SelectSubset<T, InputFileWarningFindFirstArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
6793
|
+
|
|
6794
|
+
/**
|
|
6795
|
+
* Find the first InputFileWarning that matches the filter or
|
|
6796
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
6797
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6798
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6799
|
+
* @param {InputFileWarningFindFirstOrThrowArgs} args - Arguments to find a InputFileWarning
|
|
6800
|
+
* @example
|
|
6801
|
+
* // Get one InputFileWarning
|
|
6802
|
+
* const inputFileWarning = await prisma.inputFileWarning.findFirstOrThrow({
|
|
6803
|
+
* where: {
|
|
6804
|
+
* // ... provide filter here
|
|
6805
|
+
* }
|
|
6806
|
+
* })
|
|
6807
|
+
*/
|
|
6808
|
+
findFirstOrThrow<T extends InputFileWarningFindFirstOrThrowArgs>(args?: SelectSubset<T, InputFileWarningFindFirstOrThrowArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
6809
|
+
|
|
6810
|
+
/**
|
|
6811
|
+
* Find zero or more InputFileWarnings that matches the filter.
|
|
6812
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
6813
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
6814
|
+
* @param {InputFileWarningFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
6815
|
+
* @example
|
|
6816
|
+
* // Get all InputFileWarnings
|
|
6817
|
+
* const inputFileWarnings = await prisma.inputFileWarning.findMany()
|
|
4598
6818
|
*
|
|
4599
|
-
* // Get first 10
|
|
4600
|
-
* const
|
|
6819
|
+
* // Get first 10 InputFileWarnings
|
|
6820
|
+
* const inputFileWarnings = await prisma.inputFileWarning.findMany({ take: 10 })
|
|
4601
6821
|
*
|
|
4602
|
-
* // Only select the `
|
|
4603
|
-
* const
|
|
6822
|
+
* // Only select the `name`
|
|
6823
|
+
* const inputFileWarningWithNameOnly = await prisma.inputFileWarning.findMany({ select: { name: true } })
|
|
4604
6824
|
*
|
|
4605
6825
|
*/
|
|
4606
|
-
findMany<T extends
|
|
6826
|
+
findMany<T extends InputFileWarningFindManyArgs>(args?: SelectSubset<T, InputFileWarningFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "findMany">>
|
|
4607
6827
|
|
|
4608
6828
|
/**
|
|
4609
|
-
* Create a
|
|
4610
|
-
* @param {
|
|
6829
|
+
* Create a InputFileWarning.
|
|
6830
|
+
* @param {InputFileWarningCreateArgs} args - Arguments to create a InputFileWarning.
|
|
4611
6831
|
* @example
|
|
4612
|
-
* // Create one
|
|
4613
|
-
* const
|
|
6832
|
+
* // Create one InputFileWarning
|
|
6833
|
+
* const InputFileWarning = await prisma.inputFileWarning.create({
|
|
4614
6834
|
* data: {
|
|
4615
|
-
* // ... data to create a
|
|
6835
|
+
* // ... data to create a InputFileWarning
|
|
4616
6836
|
* }
|
|
4617
6837
|
* })
|
|
4618
6838
|
*
|
|
4619
6839
|
*/
|
|
4620
|
-
create<T extends
|
|
6840
|
+
create<T extends InputFileWarningCreateArgs>(args: SelectSubset<T, InputFileWarningCreateArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
4621
6841
|
|
|
4622
6842
|
/**
|
|
4623
|
-
* Create many
|
|
4624
|
-
* @param {
|
|
6843
|
+
* Create many InputFileWarnings.
|
|
6844
|
+
* @param {InputFileWarningCreateManyArgs} args - Arguments to create many InputFileWarnings.
|
|
4625
6845
|
* @example
|
|
4626
|
-
* // Create many
|
|
4627
|
-
* const
|
|
6846
|
+
* // Create many InputFileWarnings
|
|
6847
|
+
* const inputFileWarning = await prisma.inputFileWarning.createMany({
|
|
4628
6848
|
* data: [
|
|
4629
6849
|
* // ... provide data here
|
|
4630
6850
|
* ]
|
|
4631
6851
|
* })
|
|
4632
6852
|
*
|
|
4633
6853
|
*/
|
|
4634
|
-
createMany<T extends
|
|
6854
|
+
createMany<T extends InputFileWarningCreateManyArgs>(args?: SelectSubset<T, InputFileWarningCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
4635
6855
|
|
|
4636
6856
|
/**
|
|
4637
|
-
* Create many
|
|
4638
|
-
* @param {
|
|
6857
|
+
* Create many InputFileWarnings and returns the data saved in the database.
|
|
6858
|
+
* @param {InputFileWarningCreateManyAndReturnArgs} args - Arguments to create many InputFileWarnings.
|
|
4639
6859
|
* @example
|
|
4640
|
-
* // Create many
|
|
4641
|
-
* const
|
|
6860
|
+
* // Create many InputFileWarnings
|
|
6861
|
+
* const inputFileWarning = await prisma.inputFileWarning.createManyAndReturn({
|
|
4642
6862
|
* data: [
|
|
4643
6863
|
* // ... provide data here
|
|
4644
6864
|
* ]
|
|
4645
6865
|
* })
|
|
4646
6866
|
*
|
|
4647
|
-
* // Create many
|
|
4648
|
-
* const
|
|
4649
|
-
* select: {
|
|
6867
|
+
* // Create many InputFileWarnings and only return the `name`
|
|
6868
|
+
* const inputFileWarningWithNameOnly = await prisma.inputFileWarning.createManyAndReturn({
|
|
6869
|
+
* select: { name: true },
|
|
4650
6870
|
* data: [
|
|
4651
6871
|
* // ... provide data here
|
|
4652
6872
|
* ]
|
|
@@ -4655,28 +6875,28 @@ export namespace Prisma {
|
|
|
4655
6875
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4656
6876
|
*
|
|
4657
6877
|
*/
|
|
4658
|
-
createManyAndReturn<T extends
|
|
6878
|
+
createManyAndReturn<T extends InputFileWarningCreateManyAndReturnArgs>(args?: SelectSubset<T, InputFileWarningCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
4659
6879
|
|
|
4660
6880
|
/**
|
|
4661
|
-
* Delete a
|
|
4662
|
-
* @param {
|
|
6881
|
+
* Delete a InputFileWarning.
|
|
6882
|
+
* @param {InputFileWarningDeleteArgs} args - Arguments to delete one InputFileWarning.
|
|
4663
6883
|
* @example
|
|
4664
|
-
* // Delete one
|
|
4665
|
-
* const
|
|
6884
|
+
* // Delete one InputFileWarning
|
|
6885
|
+
* const InputFileWarning = await prisma.inputFileWarning.delete({
|
|
4666
6886
|
* where: {
|
|
4667
|
-
* // ... filter to delete one
|
|
6887
|
+
* // ... filter to delete one InputFileWarning
|
|
4668
6888
|
* }
|
|
4669
6889
|
* })
|
|
4670
6890
|
*
|
|
4671
6891
|
*/
|
|
4672
|
-
delete<T extends
|
|
6892
|
+
delete<T extends InputFileWarningDeleteArgs>(args: SelectSubset<T, InputFileWarningDeleteArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
4673
6893
|
|
|
4674
6894
|
/**
|
|
4675
|
-
* Update one
|
|
4676
|
-
* @param {
|
|
6895
|
+
* Update one InputFileWarning.
|
|
6896
|
+
* @param {InputFileWarningUpdateArgs} args - Arguments to update one InputFileWarning.
|
|
4677
6897
|
* @example
|
|
4678
|
-
* // Update one
|
|
4679
|
-
* const
|
|
6898
|
+
* // Update one InputFileWarning
|
|
6899
|
+
* const inputFileWarning = await prisma.inputFileWarning.update({
|
|
4680
6900
|
* where: {
|
|
4681
6901
|
* // ... provide filter here
|
|
4682
6902
|
* },
|
|
@@ -4686,30 +6906,30 @@ export namespace Prisma {
|
|
|
4686
6906
|
* })
|
|
4687
6907
|
*
|
|
4688
6908
|
*/
|
|
4689
|
-
update<T extends
|
|
6909
|
+
update<T extends InputFileWarningUpdateArgs>(args: SelectSubset<T, InputFileWarningUpdateArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
4690
6910
|
|
|
4691
6911
|
/**
|
|
4692
|
-
* Delete zero or more
|
|
4693
|
-
* @param {
|
|
6912
|
+
* Delete zero or more InputFileWarnings.
|
|
6913
|
+
* @param {InputFileWarningDeleteManyArgs} args - Arguments to filter InputFileWarnings to delete.
|
|
4694
6914
|
* @example
|
|
4695
|
-
* // Delete a few
|
|
4696
|
-
* const { count } = await prisma.
|
|
6915
|
+
* // Delete a few InputFileWarnings
|
|
6916
|
+
* const { count } = await prisma.inputFileWarning.deleteMany({
|
|
4697
6917
|
* where: {
|
|
4698
6918
|
* // ... provide filter here
|
|
4699
6919
|
* }
|
|
4700
6920
|
* })
|
|
4701
6921
|
*
|
|
4702
6922
|
*/
|
|
4703
|
-
deleteMany<T extends
|
|
6923
|
+
deleteMany<T extends InputFileWarningDeleteManyArgs>(args?: SelectSubset<T, InputFileWarningDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
4704
6924
|
|
|
4705
6925
|
/**
|
|
4706
|
-
* Update zero or more
|
|
6926
|
+
* Update zero or more InputFileWarnings.
|
|
4707
6927
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4708
6928
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4709
|
-
* @param {
|
|
6929
|
+
* @param {InputFileWarningUpdateManyArgs} args - Arguments to update one or more rows.
|
|
4710
6930
|
* @example
|
|
4711
|
-
* // Update many
|
|
4712
|
-
* const
|
|
6931
|
+
* // Update many InputFileWarnings
|
|
6932
|
+
* const inputFileWarning = await prisma.inputFileWarning.updateMany({
|
|
4713
6933
|
* where: {
|
|
4714
6934
|
* // ... provide filter here
|
|
4715
6935
|
* },
|
|
@@ -4719,56 +6939,56 @@ export namespace Prisma {
|
|
|
4719
6939
|
* })
|
|
4720
6940
|
*
|
|
4721
6941
|
*/
|
|
4722
|
-
updateMany<T extends
|
|
6942
|
+
updateMany<T extends InputFileWarningUpdateManyArgs>(args: SelectSubset<T, InputFileWarningUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
4723
6943
|
|
|
4724
6944
|
/**
|
|
4725
|
-
* Create or update one
|
|
4726
|
-
* @param {
|
|
6945
|
+
* Create or update one InputFileWarning.
|
|
6946
|
+
* @param {InputFileWarningUpsertArgs} args - Arguments to update or create a InputFileWarning.
|
|
4727
6947
|
* @example
|
|
4728
|
-
* // Update or create a
|
|
4729
|
-
* const
|
|
6948
|
+
* // Update or create a InputFileWarning
|
|
6949
|
+
* const inputFileWarning = await prisma.inputFileWarning.upsert({
|
|
4730
6950
|
* create: {
|
|
4731
|
-
* // ... data to create a
|
|
6951
|
+
* // ... data to create a InputFileWarning
|
|
4732
6952
|
* },
|
|
4733
6953
|
* update: {
|
|
4734
6954
|
* // ... in case it already exists, update
|
|
4735
6955
|
* },
|
|
4736
6956
|
* where: {
|
|
4737
|
-
* // ... the filter for the
|
|
6957
|
+
* // ... the filter for the InputFileWarning we want to update
|
|
4738
6958
|
* }
|
|
4739
6959
|
* })
|
|
4740
6960
|
*/
|
|
4741
|
-
upsert<T extends
|
|
6961
|
+
upsert<T extends InputFileWarningUpsertArgs>(args: SelectSubset<T, InputFileWarningUpsertArgs<ExtArgs>>): Prisma__InputFileWarningClient<$Result.GetResult<Prisma.$InputFileWarningPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
4742
6962
|
|
|
4743
6963
|
|
|
4744
6964
|
/**
|
|
4745
|
-
* Count the number of
|
|
6965
|
+
* Count the number of InputFileWarnings.
|
|
4746
6966
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4747
6967
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4748
|
-
* @param {
|
|
6968
|
+
* @param {InputFileWarningCountArgs} args - Arguments to filter InputFileWarnings to count.
|
|
4749
6969
|
* @example
|
|
4750
|
-
* // Count the number of
|
|
4751
|
-
* const count = await prisma.
|
|
6970
|
+
* // Count the number of InputFileWarnings
|
|
6971
|
+
* const count = await prisma.inputFileWarning.count({
|
|
4752
6972
|
* where: {
|
|
4753
|
-
* // ... the filter for the
|
|
6973
|
+
* // ... the filter for the InputFileWarnings we want to count
|
|
4754
6974
|
* }
|
|
4755
6975
|
* })
|
|
4756
6976
|
**/
|
|
4757
|
-
count<T extends
|
|
4758
|
-
args?: Subset<T,
|
|
6977
|
+
count<T extends InputFileWarningCountArgs>(
|
|
6978
|
+
args?: Subset<T, InputFileWarningCountArgs>,
|
|
4759
6979
|
): Prisma.PrismaPromise<
|
|
4760
6980
|
T extends $Utils.Record<'select', any>
|
|
4761
6981
|
? T['select'] extends true
|
|
4762
6982
|
? number
|
|
4763
|
-
: GetScalarType<T['select'],
|
|
6983
|
+
: GetScalarType<T['select'], InputFileWarningCountAggregateOutputType>
|
|
4764
6984
|
: number
|
|
4765
6985
|
>
|
|
4766
6986
|
|
|
4767
6987
|
/**
|
|
4768
|
-
* Allows you to perform aggregations operations on a
|
|
6988
|
+
* Allows you to perform aggregations operations on a InputFileWarning.
|
|
4769
6989
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4770
6990
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4771
|
-
* @param {
|
|
6991
|
+
* @param {InputFileWarningAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
4772
6992
|
* @example
|
|
4773
6993
|
* // Ordered by age ascending
|
|
4774
6994
|
* // Where email contains prisma.io
|
|
@@ -4788,13 +7008,13 @@ export namespace Prisma {
|
|
|
4788
7008
|
* take: 10,
|
|
4789
7009
|
* })
|
|
4790
7010
|
**/
|
|
4791
|
-
aggregate<T extends
|
|
7011
|
+
aggregate<T extends InputFileWarningAggregateArgs>(args: Subset<T, InputFileWarningAggregateArgs>): Prisma.PrismaPromise<GetInputFileWarningAggregateType<T>>
|
|
4792
7012
|
|
|
4793
7013
|
/**
|
|
4794
|
-
* Group by
|
|
7014
|
+
* Group by InputFileWarning.
|
|
4795
7015
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
4796
7016
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4797
|
-
* @param {
|
|
7017
|
+
* @param {InputFileWarningGroupByArgs} args - Group by arguments.
|
|
4798
7018
|
* @example
|
|
4799
7019
|
* // Group by city, order by createdAt, get count
|
|
4800
7020
|
* const result = await prisma.user.groupBy({
|
|
@@ -4809,14 +7029,14 @@ export namespace Prisma {
|
|
|
4809
7029
|
*
|
|
4810
7030
|
**/
|
|
4811
7031
|
groupBy<
|
|
4812
|
-
T extends
|
|
7032
|
+
T extends InputFileWarningGroupByArgs,
|
|
4813
7033
|
HasSelectOrTake extends Or<
|
|
4814
7034
|
Extends<'skip', Keys<T>>,
|
|
4815
7035
|
Extends<'take', Keys<T>>
|
|
4816
7036
|
>,
|
|
4817
7037
|
OrderByArg extends True extends HasSelectOrTake
|
|
4818
|
-
? { orderBy:
|
|
4819
|
-
: { orderBy?:
|
|
7038
|
+
? { orderBy: InputFileWarningGroupByArgs['orderBy'] }
|
|
7039
|
+
: { orderBy?: InputFileWarningGroupByArgs['orderBy'] },
|
|
4820
7040
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
4821
7041
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
4822
7042
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -4865,20 +7085,20 @@ export namespace Prisma {
|
|
|
4865
7085
|
? never
|
|
4866
7086
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
4867
7087
|
}[OrderFields]
|
|
4868
|
-
>(args: SubsetIntersection<T,
|
|
7088
|
+
>(args: SubsetIntersection<T, InputFileWarningGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetInputFileWarningGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
4869
7089
|
/**
|
|
4870
|
-
* Fields of the
|
|
7090
|
+
* Fields of the InputFileWarning model
|
|
4871
7091
|
*/
|
|
4872
|
-
readonly fields:
|
|
7092
|
+
readonly fields: InputFileWarningFieldRefs;
|
|
4873
7093
|
}
|
|
4874
7094
|
|
|
4875
7095
|
/**
|
|
4876
|
-
* The delegate class that acts as a "Promise-like" for
|
|
7096
|
+
* The delegate class that acts as a "Promise-like" for InputFileWarning.
|
|
4877
7097
|
* Why is this prefixed with `Prisma__`?
|
|
4878
7098
|
* Because we want to prevent naming conflicts as mentioned in
|
|
4879
7099
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
4880
7100
|
*/
|
|
4881
|
-
export interface
|
|
7101
|
+
export interface Prisma__InputFileWarningClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
4882
7102
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
4883
7103
|
/**
|
|
4884
7104
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -4906,297 +7126,295 @@ export namespace Prisma {
|
|
|
4906
7126
|
|
|
4907
7127
|
|
|
4908
7128
|
/**
|
|
4909
|
-
* Fields of the
|
|
7129
|
+
* Fields of the InputFileWarning model
|
|
4910
7130
|
*/
|
|
4911
|
-
interface
|
|
4912
|
-
readonly
|
|
4913
|
-
readonly
|
|
4914
|
-
readonly
|
|
4915
|
-
readonly sha256: FieldRef<"InputFile", 'String'>
|
|
4916
|
-
readonly sizeInBytes: FieldRef<"InputFile", 'Int'>
|
|
7131
|
+
interface InputFileWarningFieldRefs {
|
|
7132
|
+
readonly name: FieldRef<"InputFileWarning", 'String'>
|
|
7133
|
+
readonly type: FieldRef<"InputFileWarning", 'String'>
|
|
7134
|
+
readonly message: FieldRef<"InputFileWarning", 'String'>
|
|
4917
7135
|
}
|
|
4918
7136
|
|
|
4919
7137
|
|
|
4920
7138
|
// Custom InputTypes
|
|
4921
7139
|
/**
|
|
4922
|
-
*
|
|
7140
|
+
* InputFileWarning findUnique
|
|
4923
7141
|
*/
|
|
4924
|
-
export type
|
|
7142
|
+
export type InputFileWarningFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4925
7143
|
/**
|
|
4926
|
-
* Select specific fields to fetch from the
|
|
7144
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
4927
7145
|
*/
|
|
4928
|
-
select?:
|
|
7146
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
4929
7147
|
/**
|
|
4930
|
-
* Filter, which
|
|
7148
|
+
* Filter, which InputFileWarning to fetch.
|
|
4931
7149
|
*/
|
|
4932
|
-
where:
|
|
7150
|
+
where: InputFileWarningWhereUniqueInput
|
|
4933
7151
|
}
|
|
4934
7152
|
|
|
4935
7153
|
/**
|
|
4936
|
-
*
|
|
7154
|
+
* InputFileWarning findUniqueOrThrow
|
|
4937
7155
|
*/
|
|
4938
|
-
export type
|
|
7156
|
+
export type InputFileWarningFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4939
7157
|
/**
|
|
4940
|
-
* Select specific fields to fetch from the
|
|
7158
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
4941
7159
|
*/
|
|
4942
|
-
select?:
|
|
7160
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
4943
7161
|
/**
|
|
4944
|
-
* Filter, which
|
|
7162
|
+
* Filter, which InputFileWarning to fetch.
|
|
4945
7163
|
*/
|
|
4946
|
-
where:
|
|
7164
|
+
where: InputFileWarningWhereUniqueInput
|
|
4947
7165
|
}
|
|
4948
7166
|
|
|
4949
7167
|
/**
|
|
4950
|
-
*
|
|
7168
|
+
* InputFileWarning findFirst
|
|
4951
7169
|
*/
|
|
4952
|
-
export type
|
|
7170
|
+
export type InputFileWarningFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4953
7171
|
/**
|
|
4954
|
-
* Select specific fields to fetch from the
|
|
7172
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
4955
7173
|
*/
|
|
4956
|
-
select?:
|
|
7174
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
4957
7175
|
/**
|
|
4958
|
-
* Filter, which
|
|
7176
|
+
* Filter, which InputFileWarning to fetch.
|
|
4959
7177
|
*/
|
|
4960
|
-
where?:
|
|
7178
|
+
where?: InputFileWarningWhereInput
|
|
4961
7179
|
/**
|
|
4962
7180
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
4963
7181
|
*
|
|
4964
|
-
* Determine the order of
|
|
7182
|
+
* Determine the order of InputFileWarnings to fetch.
|
|
4965
7183
|
*/
|
|
4966
|
-
orderBy?:
|
|
7184
|
+
orderBy?: InputFileWarningOrderByWithRelationInput | InputFileWarningOrderByWithRelationInput[]
|
|
4967
7185
|
/**
|
|
4968
7186
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
4969
7187
|
*
|
|
4970
|
-
* Sets the position for searching for
|
|
7188
|
+
* Sets the position for searching for InputFileWarnings.
|
|
4971
7189
|
*/
|
|
4972
|
-
cursor?:
|
|
7190
|
+
cursor?: InputFileWarningWhereUniqueInput
|
|
4973
7191
|
/**
|
|
4974
7192
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
4975
7193
|
*
|
|
4976
|
-
* Take `±n`
|
|
7194
|
+
* Take `±n` InputFileWarnings from the position of the cursor.
|
|
4977
7195
|
*/
|
|
4978
7196
|
take?: number
|
|
4979
7197
|
/**
|
|
4980
7198
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
4981
7199
|
*
|
|
4982
|
-
* Skip the first `n`
|
|
7200
|
+
* Skip the first `n` InputFileWarnings.
|
|
4983
7201
|
*/
|
|
4984
7202
|
skip?: number
|
|
4985
7203
|
/**
|
|
4986
7204
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
4987
7205
|
*
|
|
4988
|
-
* Filter by unique combinations of
|
|
7206
|
+
* Filter by unique combinations of InputFileWarnings.
|
|
4989
7207
|
*/
|
|
4990
|
-
distinct?:
|
|
7208
|
+
distinct?: InputFileWarningScalarFieldEnum | InputFileWarningScalarFieldEnum[]
|
|
4991
7209
|
}
|
|
4992
7210
|
|
|
4993
7211
|
/**
|
|
4994
|
-
*
|
|
7212
|
+
* InputFileWarning findFirstOrThrow
|
|
4995
7213
|
*/
|
|
4996
|
-
export type
|
|
7214
|
+
export type InputFileWarningFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4997
7215
|
/**
|
|
4998
|
-
* Select specific fields to fetch from the
|
|
7216
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
4999
7217
|
*/
|
|
5000
|
-
select?:
|
|
7218
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5001
7219
|
/**
|
|
5002
|
-
* Filter, which
|
|
7220
|
+
* Filter, which InputFileWarning to fetch.
|
|
5003
7221
|
*/
|
|
5004
|
-
where?:
|
|
7222
|
+
where?: InputFileWarningWhereInput
|
|
5005
7223
|
/**
|
|
5006
7224
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
5007
7225
|
*
|
|
5008
|
-
* Determine the order of
|
|
7226
|
+
* Determine the order of InputFileWarnings to fetch.
|
|
5009
7227
|
*/
|
|
5010
|
-
orderBy?:
|
|
7228
|
+
orderBy?: InputFileWarningOrderByWithRelationInput | InputFileWarningOrderByWithRelationInput[]
|
|
5011
7229
|
/**
|
|
5012
7230
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
5013
7231
|
*
|
|
5014
|
-
* Sets the position for searching for
|
|
7232
|
+
* Sets the position for searching for InputFileWarnings.
|
|
5015
7233
|
*/
|
|
5016
|
-
cursor?:
|
|
7234
|
+
cursor?: InputFileWarningWhereUniqueInput
|
|
5017
7235
|
/**
|
|
5018
7236
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5019
7237
|
*
|
|
5020
|
-
* Take `±n`
|
|
7238
|
+
* Take `±n` InputFileWarnings from the position of the cursor.
|
|
5021
7239
|
*/
|
|
5022
7240
|
take?: number
|
|
5023
7241
|
/**
|
|
5024
7242
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5025
7243
|
*
|
|
5026
|
-
* Skip the first `n`
|
|
7244
|
+
* Skip the first `n` InputFileWarnings.
|
|
5027
7245
|
*/
|
|
5028
7246
|
skip?: number
|
|
5029
7247
|
/**
|
|
5030
7248
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
5031
7249
|
*
|
|
5032
|
-
* Filter by unique combinations of
|
|
7250
|
+
* Filter by unique combinations of InputFileWarnings.
|
|
5033
7251
|
*/
|
|
5034
|
-
distinct?:
|
|
7252
|
+
distinct?: InputFileWarningScalarFieldEnum | InputFileWarningScalarFieldEnum[]
|
|
5035
7253
|
}
|
|
5036
7254
|
|
|
5037
7255
|
/**
|
|
5038
|
-
*
|
|
7256
|
+
* InputFileWarning findMany
|
|
5039
7257
|
*/
|
|
5040
|
-
export type
|
|
7258
|
+
export type InputFileWarningFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5041
7259
|
/**
|
|
5042
|
-
* Select specific fields to fetch from the
|
|
7260
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5043
7261
|
*/
|
|
5044
|
-
select?:
|
|
7262
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5045
7263
|
/**
|
|
5046
|
-
* Filter, which
|
|
7264
|
+
* Filter, which InputFileWarnings to fetch.
|
|
5047
7265
|
*/
|
|
5048
|
-
where?:
|
|
7266
|
+
where?: InputFileWarningWhereInput
|
|
5049
7267
|
/**
|
|
5050
7268
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
5051
7269
|
*
|
|
5052
|
-
* Determine the order of
|
|
7270
|
+
* Determine the order of InputFileWarnings to fetch.
|
|
5053
7271
|
*/
|
|
5054
|
-
orderBy?:
|
|
7272
|
+
orderBy?: InputFileWarningOrderByWithRelationInput | InputFileWarningOrderByWithRelationInput[]
|
|
5055
7273
|
/**
|
|
5056
7274
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
5057
7275
|
*
|
|
5058
|
-
* Sets the position for listing
|
|
7276
|
+
* Sets the position for listing InputFileWarnings.
|
|
5059
7277
|
*/
|
|
5060
|
-
cursor?:
|
|
7278
|
+
cursor?: InputFileWarningWhereUniqueInput
|
|
5061
7279
|
/**
|
|
5062
7280
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5063
7281
|
*
|
|
5064
|
-
* Take `±n`
|
|
7282
|
+
* Take `±n` InputFileWarnings from the position of the cursor.
|
|
5065
7283
|
*/
|
|
5066
7284
|
take?: number
|
|
5067
7285
|
/**
|
|
5068
7286
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
5069
7287
|
*
|
|
5070
|
-
* Skip the first `n`
|
|
7288
|
+
* Skip the first `n` InputFileWarnings.
|
|
5071
7289
|
*/
|
|
5072
7290
|
skip?: number
|
|
5073
|
-
distinct?:
|
|
7291
|
+
distinct?: InputFileWarningScalarFieldEnum | InputFileWarningScalarFieldEnum[]
|
|
5074
7292
|
}
|
|
5075
7293
|
|
|
5076
7294
|
/**
|
|
5077
|
-
*
|
|
7295
|
+
* InputFileWarning create
|
|
5078
7296
|
*/
|
|
5079
|
-
export type
|
|
7297
|
+
export type InputFileWarningCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5080
7298
|
/**
|
|
5081
|
-
* Select specific fields to fetch from the
|
|
7299
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5082
7300
|
*/
|
|
5083
|
-
select?:
|
|
7301
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5084
7302
|
/**
|
|
5085
|
-
* The data needed to create a
|
|
7303
|
+
* The data needed to create a InputFileWarning.
|
|
5086
7304
|
*/
|
|
5087
|
-
data: XOR<
|
|
7305
|
+
data: XOR<InputFileWarningCreateInput, InputFileWarningUncheckedCreateInput>
|
|
5088
7306
|
}
|
|
5089
7307
|
|
|
5090
7308
|
/**
|
|
5091
|
-
*
|
|
7309
|
+
* InputFileWarning createMany
|
|
5092
7310
|
*/
|
|
5093
|
-
export type
|
|
7311
|
+
export type InputFileWarningCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5094
7312
|
/**
|
|
5095
|
-
* The data used to create many
|
|
7313
|
+
* The data used to create many InputFileWarnings.
|
|
5096
7314
|
*/
|
|
5097
|
-
data:
|
|
7315
|
+
data: InputFileWarningCreateManyInput | InputFileWarningCreateManyInput[]
|
|
5098
7316
|
}
|
|
5099
7317
|
|
|
5100
7318
|
/**
|
|
5101
|
-
*
|
|
7319
|
+
* InputFileWarning createManyAndReturn
|
|
5102
7320
|
*/
|
|
5103
|
-
export type
|
|
7321
|
+
export type InputFileWarningCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5104
7322
|
/**
|
|
5105
|
-
* Select specific fields to fetch from the
|
|
7323
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5106
7324
|
*/
|
|
5107
|
-
select?:
|
|
7325
|
+
select?: InputFileWarningSelectCreateManyAndReturn<ExtArgs> | null
|
|
5108
7326
|
/**
|
|
5109
|
-
* The data used to create many
|
|
7327
|
+
* The data used to create many InputFileWarnings.
|
|
5110
7328
|
*/
|
|
5111
|
-
data:
|
|
7329
|
+
data: InputFileWarningCreateManyInput | InputFileWarningCreateManyInput[]
|
|
5112
7330
|
}
|
|
5113
7331
|
|
|
5114
7332
|
/**
|
|
5115
|
-
*
|
|
7333
|
+
* InputFileWarning update
|
|
5116
7334
|
*/
|
|
5117
|
-
export type
|
|
7335
|
+
export type InputFileWarningUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5118
7336
|
/**
|
|
5119
|
-
* Select specific fields to fetch from the
|
|
7337
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5120
7338
|
*/
|
|
5121
|
-
select?:
|
|
7339
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5122
7340
|
/**
|
|
5123
|
-
* The data needed to update a
|
|
7341
|
+
* The data needed to update a InputFileWarning.
|
|
5124
7342
|
*/
|
|
5125
|
-
data: XOR<
|
|
7343
|
+
data: XOR<InputFileWarningUpdateInput, InputFileWarningUncheckedUpdateInput>
|
|
5126
7344
|
/**
|
|
5127
|
-
* Choose, which
|
|
7345
|
+
* Choose, which InputFileWarning to update.
|
|
5128
7346
|
*/
|
|
5129
|
-
where:
|
|
7347
|
+
where: InputFileWarningWhereUniqueInput
|
|
5130
7348
|
}
|
|
5131
7349
|
|
|
5132
7350
|
/**
|
|
5133
|
-
*
|
|
7351
|
+
* InputFileWarning updateMany
|
|
5134
7352
|
*/
|
|
5135
|
-
export type
|
|
7353
|
+
export type InputFileWarningUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5136
7354
|
/**
|
|
5137
|
-
* The data used to update
|
|
7355
|
+
* The data used to update InputFileWarnings.
|
|
5138
7356
|
*/
|
|
5139
|
-
data: XOR<
|
|
7357
|
+
data: XOR<InputFileWarningUpdateManyMutationInput, InputFileWarningUncheckedUpdateManyInput>
|
|
5140
7358
|
/**
|
|
5141
|
-
* Filter which
|
|
7359
|
+
* Filter which InputFileWarnings to update
|
|
5142
7360
|
*/
|
|
5143
|
-
where?:
|
|
7361
|
+
where?: InputFileWarningWhereInput
|
|
5144
7362
|
}
|
|
5145
7363
|
|
|
5146
7364
|
/**
|
|
5147
|
-
*
|
|
7365
|
+
* InputFileWarning upsert
|
|
5148
7366
|
*/
|
|
5149
|
-
export type
|
|
7367
|
+
export type InputFileWarningUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5150
7368
|
/**
|
|
5151
|
-
* Select specific fields to fetch from the
|
|
7369
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5152
7370
|
*/
|
|
5153
|
-
select?:
|
|
7371
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5154
7372
|
/**
|
|
5155
|
-
* The filter to search for the
|
|
7373
|
+
* The filter to search for the InputFileWarning to update in case it exists.
|
|
5156
7374
|
*/
|
|
5157
|
-
where:
|
|
7375
|
+
where: InputFileWarningWhereUniqueInput
|
|
5158
7376
|
/**
|
|
5159
|
-
* In case the
|
|
7377
|
+
* In case the InputFileWarning found by the `where` argument doesn't exist, create a new InputFileWarning with this data.
|
|
5160
7378
|
*/
|
|
5161
|
-
create: XOR<
|
|
7379
|
+
create: XOR<InputFileWarningCreateInput, InputFileWarningUncheckedCreateInput>
|
|
5162
7380
|
/**
|
|
5163
|
-
* In case the
|
|
7381
|
+
* In case the InputFileWarning was found with the provided `where` argument, update it with this data.
|
|
5164
7382
|
*/
|
|
5165
|
-
update: XOR<
|
|
7383
|
+
update: XOR<InputFileWarningUpdateInput, InputFileWarningUncheckedUpdateInput>
|
|
5166
7384
|
}
|
|
5167
7385
|
|
|
5168
7386
|
/**
|
|
5169
|
-
*
|
|
7387
|
+
* InputFileWarning delete
|
|
5170
7388
|
*/
|
|
5171
|
-
export type
|
|
7389
|
+
export type InputFileWarningDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5172
7390
|
/**
|
|
5173
|
-
* Select specific fields to fetch from the
|
|
7391
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5174
7392
|
*/
|
|
5175
|
-
select?:
|
|
7393
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5176
7394
|
/**
|
|
5177
|
-
* Filter which
|
|
7395
|
+
* Filter which InputFileWarning to delete.
|
|
5178
7396
|
*/
|
|
5179
|
-
where:
|
|
7397
|
+
where: InputFileWarningWhereUniqueInput
|
|
5180
7398
|
}
|
|
5181
7399
|
|
|
5182
7400
|
/**
|
|
5183
|
-
*
|
|
7401
|
+
* InputFileWarning deleteMany
|
|
5184
7402
|
*/
|
|
5185
|
-
export type
|
|
7403
|
+
export type InputFileWarningDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5186
7404
|
/**
|
|
5187
|
-
* Filter which
|
|
7405
|
+
* Filter which InputFileWarnings to delete
|
|
5188
7406
|
*/
|
|
5189
|
-
where?:
|
|
7407
|
+
where?: InputFileWarningWhereInput
|
|
5190
7408
|
}
|
|
5191
7409
|
|
|
5192
7410
|
/**
|
|
5193
|
-
*
|
|
7411
|
+
* InputFileWarning without action
|
|
5194
7412
|
*/
|
|
5195
|
-
export type
|
|
7413
|
+
export type InputFileWarningDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5196
7414
|
/**
|
|
5197
|
-
* Select specific fields to fetch from the
|
|
7415
|
+
* Select specific fields to fetch from the InputFileWarning
|
|
5198
7416
|
*/
|
|
5199
|
-
select?:
|
|
7417
|
+
select?: InputFileWarningSelect<ExtArgs> | null
|
|
5200
7418
|
}
|
|
5201
7419
|
|
|
5202
7420
|
|
|
@@ -5230,6 +7448,7 @@ export namespace Prisma {
|
|
|
5230
7448
|
title: string | null
|
|
5231
7449
|
order: number | null
|
|
5232
7450
|
numberOfChapters: number | null
|
|
7451
|
+
isApocryphal: boolean | null
|
|
5233
7452
|
sha256: string | null
|
|
5234
7453
|
}
|
|
5235
7454
|
|
|
@@ -5241,6 +7460,7 @@ export namespace Prisma {
|
|
|
5241
7460
|
title: string | null
|
|
5242
7461
|
order: number | null
|
|
5243
7462
|
numberOfChapters: number | null
|
|
7463
|
+
isApocryphal: boolean | null
|
|
5244
7464
|
sha256: string | null
|
|
5245
7465
|
}
|
|
5246
7466
|
|
|
@@ -5252,6 +7472,7 @@ export namespace Prisma {
|
|
|
5252
7472
|
title: number
|
|
5253
7473
|
order: number
|
|
5254
7474
|
numberOfChapters: number
|
|
7475
|
+
isApocryphal: number
|
|
5255
7476
|
sha256: number
|
|
5256
7477
|
_all: number
|
|
5257
7478
|
}
|
|
@@ -5275,6 +7496,7 @@ export namespace Prisma {
|
|
|
5275
7496
|
title?: true
|
|
5276
7497
|
order?: true
|
|
5277
7498
|
numberOfChapters?: true
|
|
7499
|
+
isApocryphal?: true
|
|
5278
7500
|
sha256?: true
|
|
5279
7501
|
}
|
|
5280
7502
|
|
|
@@ -5286,6 +7508,7 @@ export namespace Prisma {
|
|
|
5286
7508
|
title?: true
|
|
5287
7509
|
order?: true
|
|
5288
7510
|
numberOfChapters?: true
|
|
7511
|
+
isApocryphal?: true
|
|
5289
7512
|
sha256?: true
|
|
5290
7513
|
}
|
|
5291
7514
|
|
|
@@ -5297,6 +7520,7 @@ export namespace Prisma {
|
|
|
5297
7520
|
title?: true
|
|
5298
7521
|
order?: true
|
|
5299
7522
|
numberOfChapters?: true
|
|
7523
|
+
isApocryphal?: true
|
|
5300
7524
|
sha256?: true
|
|
5301
7525
|
_all?: true
|
|
5302
7526
|
}
|
|
@@ -5395,6 +7619,7 @@ export namespace Prisma {
|
|
|
5395
7619
|
title: string | null
|
|
5396
7620
|
order: number
|
|
5397
7621
|
numberOfChapters: number
|
|
7622
|
+
isApocryphal: boolean | null
|
|
5398
7623
|
sha256: string | null
|
|
5399
7624
|
_count: BookCountAggregateOutputType | null
|
|
5400
7625
|
_avg: BookAvgAggregateOutputType | null
|
|
@@ -5425,6 +7650,7 @@ export namespace Prisma {
|
|
|
5425
7650
|
title?: boolean
|
|
5426
7651
|
order?: boolean
|
|
5427
7652
|
numberOfChapters?: boolean
|
|
7653
|
+
isApocryphal?: boolean
|
|
5428
7654
|
sha256?: boolean
|
|
5429
7655
|
translation?: boolean | TranslationDefaultArgs<ExtArgs>
|
|
5430
7656
|
chapters?: boolean | Book$chaptersArgs<ExtArgs>
|
|
@@ -5442,6 +7668,7 @@ export namespace Prisma {
|
|
|
5442
7668
|
title?: boolean
|
|
5443
7669
|
order?: boolean
|
|
5444
7670
|
numberOfChapters?: boolean
|
|
7671
|
+
isApocryphal?: boolean
|
|
5445
7672
|
sha256?: boolean
|
|
5446
7673
|
translation?: boolean | TranslationDefaultArgs<ExtArgs>
|
|
5447
7674
|
}, ExtArgs["result"]["book"]>
|
|
@@ -5454,6 +7681,7 @@ export namespace Prisma {
|
|
|
5454
7681
|
title?: boolean
|
|
5455
7682
|
order?: boolean
|
|
5456
7683
|
numberOfChapters?: boolean
|
|
7684
|
+
isApocryphal?: boolean
|
|
5457
7685
|
sha256?: boolean
|
|
5458
7686
|
}
|
|
5459
7687
|
|
|
@@ -5486,6 +7714,7 @@ export namespace Prisma {
|
|
|
5486
7714
|
title: string | null
|
|
5487
7715
|
order: number
|
|
5488
7716
|
numberOfChapters: number
|
|
7717
|
+
isApocryphal: boolean | null
|
|
5489
7718
|
sha256: string | null
|
|
5490
7719
|
}, ExtArgs["result"]["book"]>
|
|
5491
7720
|
composites: {}
|
|
@@ -5892,6 +8121,7 @@ export namespace Prisma {
|
|
|
5892
8121
|
readonly title: FieldRef<"Book", 'String'>
|
|
5893
8122
|
readonly order: FieldRef<"Book", 'Int'>
|
|
5894
8123
|
readonly numberOfChapters: FieldRef<"Book", 'Int'>
|
|
8124
|
+
readonly isApocryphal: FieldRef<"Book", 'Boolean'>
|
|
5895
8125
|
readonly sha256: FieldRef<"Book", 'String'>
|
|
5896
8126
|
}
|
|
5897
8127
|
|
|
@@ -14558,6 +16788,38 @@ export namespace Prisma {
|
|
|
14558
16788
|
export type CommentaryScalarFieldEnum = (typeof CommentaryScalarFieldEnum)[keyof typeof CommentaryScalarFieldEnum]
|
|
14559
16789
|
|
|
14560
16790
|
|
|
16791
|
+
export const EBibleSourceScalarFieldEnum: {
|
|
16792
|
+
id: 'id',
|
|
16793
|
+
usfmZipUrl: 'usfmZipUrl',
|
|
16794
|
+
usfmZipEtag: 'usfmZipEtag',
|
|
16795
|
+
languageCode: 'languageCode',
|
|
16796
|
+
title: 'title',
|
|
16797
|
+
shortTitle: 'shortTitle',
|
|
16798
|
+
textDirection: 'textDirection',
|
|
16799
|
+
redistributable: 'redistributable',
|
|
16800
|
+
description: 'description',
|
|
16801
|
+
copyright: 'copyright',
|
|
16802
|
+
FCBHID: 'FCBHID',
|
|
16803
|
+
updateDate: 'updateDate',
|
|
16804
|
+
sourceDate: 'sourceDate',
|
|
16805
|
+
oldTestamentBooks: 'oldTestamentBooks',
|
|
16806
|
+
oldTestamentChapters: 'oldTestamentChapters',
|
|
16807
|
+
oldTestamentVerses: 'oldTestamentVerses',
|
|
16808
|
+
newTestamentBooks: 'newTestamentBooks',
|
|
16809
|
+
newTestamentChapters: 'newTestamentChapters',
|
|
16810
|
+
newTestamentVerses: 'newTestamentVerses',
|
|
16811
|
+
apocryphaBooks: 'apocryphaBooks',
|
|
16812
|
+
apocryphaChapters: 'apocryphaChapters',
|
|
16813
|
+
apocryphaVerses: 'apocryphaVerses',
|
|
16814
|
+
translationId: 'translationId',
|
|
16815
|
+
usfmDownloadDate: 'usfmDownloadDate',
|
|
16816
|
+
usfmDownloadPath: 'usfmDownloadPath',
|
|
16817
|
+
sha256: 'sha256'
|
|
16818
|
+
};
|
|
16819
|
+
|
|
16820
|
+
export type EBibleSourceScalarFieldEnum = (typeof EBibleSourceScalarFieldEnum)[keyof typeof EBibleSourceScalarFieldEnum]
|
|
16821
|
+
|
|
16822
|
+
|
|
14561
16823
|
export const InputFileScalarFieldEnum: {
|
|
14562
16824
|
translationId: 'translationId',
|
|
14563
16825
|
name: 'name',
|
|
@@ -14569,6 +16831,15 @@ export namespace Prisma {
|
|
|
14569
16831
|
export type InputFileScalarFieldEnum = (typeof InputFileScalarFieldEnum)[keyof typeof InputFileScalarFieldEnum]
|
|
14570
16832
|
|
|
14571
16833
|
|
|
16834
|
+
export const InputFileWarningScalarFieldEnum: {
|
|
16835
|
+
name: 'name',
|
|
16836
|
+
type: 'type',
|
|
16837
|
+
message: 'message'
|
|
16838
|
+
};
|
|
16839
|
+
|
|
16840
|
+
export type InputFileWarningScalarFieldEnum = (typeof InputFileWarningScalarFieldEnum)[keyof typeof InputFileWarningScalarFieldEnum]
|
|
16841
|
+
|
|
16842
|
+
|
|
14572
16843
|
export const BookScalarFieldEnum: {
|
|
14573
16844
|
id: 'id',
|
|
14574
16845
|
translationId: 'translationId',
|
|
@@ -14577,6 +16848,7 @@ export namespace Prisma {
|
|
|
14577
16848
|
title: 'title',
|
|
14578
16849
|
order: 'order',
|
|
14579
16850
|
numberOfChapters: 'numberOfChapters',
|
|
16851
|
+
isApocryphal: 'isApocryphal',
|
|
14580
16852
|
sha256: 'sha256'
|
|
14581
16853
|
};
|
|
14582
16854
|
|
|
@@ -14716,6 +16988,20 @@ export namespace Prisma {
|
|
|
14716
16988
|
|
|
14717
16989
|
|
|
14718
16990
|
|
|
16991
|
+
/**
|
|
16992
|
+
* Reference to a field of type 'Boolean'
|
|
16993
|
+
*/
|
|
16994
|
+
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
|
|
16995
|
+
|
|
16996
|
+
|
|
16997
|
+
|
|
16998
|
+
/**
|
|
16999
|
+
* Reference to a field of type 'DateTime'
|
|
17000
|
+
*/
|
|
17001
|
+
export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>
|
|
17002
|
+
|
|
17003
|
+
|
|
17004
|
+
|
|
14719
17005
|
/**
|
|
14720
17006
|
* Reference to a field of type 'Int'
|
|
14721
17007
|
*/
|
|
@@ -14909,6 +17195,165 @@ export namespace Prisma {
|
|
|
14909
17195
|
sha256?: StringNullableWithAggregatesFilter<"Commentary"> | string | null
|
|
14910
17196
|
}
|
|
14911
17197
|
|
|
17198
|
+
export type EBibleSourceWhereInput = {
|
|
17199
|
+
AND?: EBibleSourceWhereInput | EBibleSourceWhereInput[]
|
|
17200
|
+
OR?: EBibleSourceWhereInput[]
|
|
17201
|
+
NOT?: EBibleSourceWhereInput | EBibleSourceWhereInput[]
|
|
17202
|
+
id?: StringFilter<"EBibleSource"> | string
|
|
17203
|
+
usfmZipUrl?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17204
|
+
usfmZipEtag?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17205
|
+
languageCode?: StringFilter<"EBibleSource"> | string
|
|
17206
|
+
title?: StringFilter<"EBibleSource"> | string
|
|
17207
|
+
shortTitle?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17208
|
+
textDirection?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17209
|
+
redistributable?: BoolFilter<"EBibleSource"> | boolean
|
|
17210
|
+
description?: StringFilter<"EBibleSource"> | string
|
|
17211
|
+
copyright?: StringFilter<"EBibleSource"> | string
|
|
17212
|
+
FCBHID?: StringFilter<"EBibleSource"> | string
|
|
17213
|
+
updateDate?: DateTimeFilter<"EBibleSource"> | Date | string
|
|
17214
|
+
sourceDate?: DateTimeFilter<"EBibleSource"> | Date | string
|
|
17215
|
+
oldTestamentBooks?: IntFilter<"EBibleSource"> | number
|
|
17216
|
+
oldTestamentChapters?: IntFilter<"EBibleSource"> | number
|
|
17217
|
+
oldTestamentVerses?: IntFilter<"EBibleSource"> | number
|
|
17218
|
+
newTestamentBooks?: IntFilter<"EBibleSource"> | number
|
|
17219
|
+
newTestamentChapters?: IntFilter<"EBibleSource"> | number
|
|
17220
|
+
newTestamentVerses?: IntFilter<"EBibleSource"> | number
|
|
17221
|
+
apocryphaBooks?: IntFilter<"EBibleSource"> | number
|
|
17222
|
+
apocryphaChapters?: IntFilter<"EBibleSource"> | number
|
|
17223
|
+
apocryphaVerses?: IntFilter<"EBibleSource"> | number
|
|
17224
|
+
translationId?: StringFilter<"EBibleSource"> | string
|
|
17225
|
+
usfmDownloadDate?: DateTimeNullableFilter<"EBibleSource"> | Date | string | null
|
|
17226
|
+
usfmDownloadPath?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17227
|
+
sha256?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17228
|
+
}
|
|
17229
|
+
|
|
17230
|
+
export type EBibleSourceOrderByWithRelationInput = {
|
|
17231
|
+
id?: SortOrder
|
|
17232
|
+
usfmZipUrl?: SortOrderInput | SortOrder
|
|
17233
|
+
usfmZipEtag?: SortOrderInput | SortOrder
|
|
17234
|
+
languageCode?: SortOrder
|
|
17235
|
+
title?: SortOrder
|
|
17236
|
+
shortTitle?: SortOrderInput | SortOrder
|
|
17237
|
+
textDirection?: SortOrderInput | SortOrder
|
|
17238
|
+
redistributable?: SortOrder
|
|
17239
|
+
description?: SortOrder
|
|
17240
|
+
copyright?: SortOrder
|
|
17241
|
+
FCBHID?: SortOrder
|
|
17242
|
+
updateDate?: SortOrder
|
|
17243
|
+
sourceDate?: SortOrder
|
|
17244
|
+
oldTestamentBooks?: SortOrder
|
|
17245
|
+
oldTestamentChapters?: SortOrder
|
|
17246
|
+
oldTestamentVerses?: SortOrder
|
|
17247
|
+
newTestamentBooks?: SortOrder
|
|
17248
|
+
newTestamentChapters?: SortOrder
|
|
17249
|
+
newTestamentVerses?: SortOrder
|
|
17250
|
+
apocryphaBooks?: SortOrder
|
|
17251
|
+
apocryphaChapters?: SortOrder
|
|
17252
|
+
apocryphaVerses?: SortOrder
|
|
17253
|
+
translationId?: SortOrder
|
|
17254
|
+
usfmDownloadDate?: SortOrderInput | SortOrder
|
|
17255
|
+
usfmDownloadPath?: SortOrderInput | SortOrder
|
|
17256
|
+
sha256?: SortOrderInput | SortOrder
|
|
17257
|
+
}
|
|
17258
|
+
|
|
17259
|
+
export type EBibleSourceWhereUniqueInput = Prisma.AtLeast<{
|
|
17260
|
+
id?: string
|
|
17261
|
+
AND?: EBibleSourceWhereInput | EBibleSourceWhereInput[]
|
|
17262
|
+
OR?: EBibleSourceWhereInput[]
|
|
17263
|
+
NOT?: EBibleSourceWhereInput | EBibleSourceWhereInput[]
|
|
17264
|
+
usfmZipUrl?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17265
|
+
usfmZipEtag?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17266
|
+
languageCode?: StringFilter<"EBibleSource"> | string
|
|
17267
|
+
title?: StringFilter<"EBibleSource"> | string
|
|
17268
|
+
shortTitle?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17269
|
+
textDirection?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17270
|
+
redistributable?: BoolFilter<"EBibleSource"> | boolean
|
|
17271
|
+
description?: StringFilter<"EBibleSource"> | string
|
|
17272
|
+
copyright?: StringFilter<"EBibleSource"> | string
|
|
17273
|
+
FCBHID?: StringFilter<"EBibleSource"> | string
|
|
17274
|
+
updateDate?: DateTimeFilter<"EBibleSource"> | Date | string
|
|
17275
|
+
sourceDate?: DateTimeFilter<"EBibleSource"> | Date | string
|
|
17276
|
+
oldTestamentBooks?: IntFilter<"EBibleSource"> | number
|
|
17277
|
+
oldTestamentChapters?: IntFilter<"EBibleSource"> | number
|
|
17278
|
+
oldTestamentVerses?: IntFilter<"EBibleSource"> | number
|
|
17279
|
+
newTestamentBooks?: IntFilter<"EBibleSource"> | number
|
|
17280
|
+
newTestamentChapters?: IntFilter<"EBibleSource"> | number
|
|
17281
|
+
newTestamentVerses?: IntFilter<"EBibleSource"> | number
|
|
17282
|
+
apocryphaBooks?: IntFilter<"EBibleSource"> | number
|
|
17283
|
+
apocryphaChapters?: IntFilter<"EBibleSource"> | number
|
|
17284
|
+
apocryphaVerses?: IntFilter<"EBibleSource"> | number
|
|
17285
|
+
translationId?: StringFilter<"EBibleSource"> | string
|
|
17286
|
+
usfmDownloadDate?: DateTimeNullableFilter<"EBibleSource"> | Date | string | null
|
|
17287
|
+
usfmDownloadPath?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17288
|
+
sha256?: StringNullableFilter<"EBibleSource"> | string | null
|
|
17289
|
+
}, "id">
|
|
17290
|
+
|
|
17291
|
+
export type EBibleSourceOrderByWithAggregationInput = {
|
|
17292
|
+
id?: SortOrder
|
|
17293
|
+
usfmZipUrl?: SortOrderInput | SortOrder
|
|
17294
|
+
usfmZipEtag?: SortOrderInput | SortOrder
|
|
17295
|
+
languageCode?: SortOrder
|
|
17296
|
+
title?: SortOrder
|
|
17297
|
+
shortTitle?: SortOrderInput | SortOrder
|
|
17298
|
+
textDirection?: SortOrderInput | SortOrder
|
|
17299
|
+
redistributable?: SortOrder
|
|
17300
|
+
description?: SortOrder
|
|
17301
|
+
copyright?: SortOrder
|
|
17302
|
+
FCBHID?: SortOrder
|
|
17303
|
+
updateDate?: SortOrder
|
|
17304
|
+
sourceDate?: SortOrder
|
|
17305
|
+
oldTestamentBooks?: SortOrder
|
|
17306
|
+
oldTestamentChapters?: SortOrder
|
|
17307
|
+
oldTestamentVerses?: SortOrder
|
|
17308
|
+
newTestamentBooks?: SortOrder
|
|
17309
|
+
newTestamentChapters?: SortOrder
|
|
17310
|
+
newTestamentVerses?: SortOrder
|
|
17311
|
+
apocryphaBooks?: SortOrder
|
|
17312
|
+
apocryphaChapters?: SortOrder
|
|
17313
|
+
apocryphaVerses?: SortOrder
|
|
17314
|
+
translationId?: SortOrder
|
|
17315
|
+
usfmDownloadDate?: SortOrderInput | SortOrder
|
|
17316
|
+
usfmDownloadPath?: SortOrderInput | SortOrder
|
|
17317
|
+
sha256?: SortOrderInput | SortOrder
|
|
17318
|
+
_count?: EBibleSourceCountOrderByAggregateInput
|
|
17319
|
+
_avg?: EBibleSourceAvgOrderByAggregateInput
|
|
17320
|
+
_max?: EBibleSourceMaxOrderByAggregateInput
|
|
17321
|
+
_min?: EBibleSourceMinOrderByAggregateInput
|
|
17322
|
+
_sum?: EBibleSourceSumOrderByAggregateInput
|
|
17323
|
+
}
|
|
17324
|
+
|
|
17325
|
+
export type EBibleSourceScalarWhereWithAggregatesInput = {
|
|
17326
|
+
AND?: EBibleSourceScalarWhereWithAggregatesInput | EBibleSourceScalarWhereWithAggregatesInput[]
|
|
17327
|
+
OR?: EBibleSourceScalarWhereWithAggregatesInput[]
|
|
17328
|
+
NOT?: EBibleSourceScalarWhereWithAggregatesInput | EBibleSourceScalarWhereWithAggregatesInput[]
|
|
17329
|
+
id?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17330
|
+
usfmZipUrl?: StringNullableWithAggregatesFilter<"EBibleSource"> | string | null
|
|
17331
|
+
usfmZipEtag?: StringNullableWithAggregatesFilter<"EBibleSource"> | string | null
|
|
17332
|
+
languageCode?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17333
|
+
title?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17334
|
+
shortTitle?: StringNullableWithAggregatesFilter<"EBibleSource"> | string | null
|
|
17335
|
+
textDirection?: StringNullableWithAggregatesFilter<"EBibleSource"> | string | null
|
|
17336
|
+
redistributable?: BoolWithAggregatesFilter<"EBibleSource"> | boolean
|
|
17337
|
+
description?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17338
|
+
copyright?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17339
|
+
FCBHID?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17340
|
+
updateDate?: DateTimeWithAggregatesFilter<"EBibleSource"> | Date | string
|
|
17341
|
+
sourceDate?: DateTimeWithAggregatesFilter<"EBibleSource"> | Date | string
|
|
17342
|
+
oldTestamentBooks?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17343
|
+
oldTestamentChapters?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17344
|
+
oldTestamentVerses?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17345
|
+
newTestamentBooks?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17346
|
+
newTestamentChapters?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17347
|
+
newTestamentVerses?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17348
|
+
apocryphaBooks?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17349
|
+
apocryphaChapters?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17350
|
+
apocryphaVerses?: IntWithAggregatesFilter<"EBibleSource"> | number
|
|
17351
|
+
translationId?: StringWithAggregatesFilter<"EBibleSource"> | string
|
|
17352
|
+
usfmDownloadDate?: DateTimeNullableWithAggregatesFilter<"EBibleSource"> | Date | string | null
|
|
17353
|
+
usfmDownloadPath?: StringNullableWithAggregatesFilter<"EBibleSource"> | string | null
|
|
17354
|
+
sha256?: StringNullableWithAggregatesFilter<"EBibleSource"> | string | null
|
|
17355
|
+
}
|
|
17356
|
+
|
|
14912
17357
|
export type InputFileWhereInput = {
|
|
14913
17358
|
AND?: InputFileWhereInput | InputFileWhereInput[]
|
|
14914
17359
|
OR?: InputFileWhereInput[]
|
|
@@ -14964,6 +17409,49 @@ export namespace Prisma {
|
|
|
14964
17409
|
sizeInBytes?: IntWithAggregatesFilter<"InputFile"> | number
|
|
14965
17410
|
}
|
|
14966
17411
|
|
|
17412
|
+
export type InputFileWarningWhereInput = {
|
|
17413
|
+
AND?: InputFileWarningWhereInput | InputFileWarningWhereInput[]
|
|
17414
|
+
OR?: InputFileWarningWhereInput[]
|
|
17415
|
+
NOT?: InputFileWarningWhereInput | InputFileWarningWhereInput[]
|
|
17416
|
+
name?: StringFilter<"InputFileWarning"> | string
|
|
17417
|
+
type?: StringFilter<"InputFileWarning"> | string
|
|
17418
|
+
message?: StringFilter<"InputFileWarning"> | string
|
|
17419
|
+
}
|
|
17420
|
+
|
|
17421
|
+
export type InputFileWarningOrderByWithRelationInput = {
|
|
17422
|
+
name?: SortOrder
|
|
17423
|
+
type?: SortOrder
|
|
17424
|
+
message?: SortOrder
|
|
17425
|
+
}
|
|
17426
|
+
|
|
17427
|
+
export type InputFileWarningWhereUniqueInput = Prisma.AtLeast<{
|
|
17428
|
+
name_type_message?: InputFileWarningNameTypeMessageCompoundUniqueInput
|
|
17429
|
+
AND?: InputFileWarningWhereInput | InputFileWarningWhereInput[]
|
|
17430
|
+
OR?: InputFileWarningWhereInput[]
|
|
17431
|
+
NOT?: InputFileWarningWhereInput | InputFileWarningWhereInput[]
|
|
17432
|
+
name?: StringFilter<"InputFileWarning"> | string
|
|
17433
|
+
type?: StringFilter<"InputFileWarning"> | string
|
|
17434
|
+
message?: StringFilter<"InputFileWarning"> | string
|
|
17435
|
+
}, "name_type_message">
|
|
17436
|
+
|
|
17437
|
+
export type InputFileWarningOrderByWithAggregationInput = {
|
|
17438
|
+
name?: SortOrder
|
|
17439
|
+
type?: SortOrder
|
|
17440
|
+
message?: SortOrder
|
|
17441
|
+
_count?: InputFileWarningCountOrderByAggregateInput
|
|
17442
|
+
_max?: InputFileWarningMaxOrderByAggregateInput
|
|
17443
|
+
_min?: InputFileWarningMinOrderByAggregateInput
|
|
17444
|
+
}
|
|
17445
|
+
|
|
17446
|
+
export type InputFileWarningScalarWhereWithAggregatesInput = {
|
|
17447
|
+
AND?: InputFileWarningScalarWhereWithAggregatesInput | InputFileWarningScalarWhereWithAggregatesInput[]
|
|
17448
|
+
OR?: InputFileWarningScalarWhereWithAggregatesInput[]
|
|
17449
|
+
NOT?: InputFileWarningScalarWhereWithAggregatesInput | InputFileWarningScalarWhereWithAggregatesInput[]
|
|
17450
|
+
name?: StringWithAggregatesFilter<"InputFileWarning"> | string
|
|
17451
|
+
type?: StringWithAggregatesFilter<"InputFileWarning"> | string
|
|
17452
|
+
message?: StringWithAggregatesFilter<"InputFileWarning"> | string
|
|
17453
|
+
}
|
|
17454
|
+
|
|
14967
17455
|
export type BookWhereInput = {
|
|
14968
17456
|
AND?: BookWhereInput | BookWhereInput[]
|
|
14969
17457
|
OR?: BookWhereInput[]
|
|
@@ -14975,6 +17463,7 @@ export namespace Prisma {
|
|
|
14975
17463
|
title?: StringNullableFilter<"Book"> | string | null
|
|
14976
17464
|
order?: IntFilter<"Book"> | number
|
|
14977
17465
|
numberOfChapters?: IntFilter<"Book"> | number
|
|
17466
|
+
isApocryphal?: BoolNullableFilter<"Book"> | boolean | null
|
|
14978
17467
|
sha256?: StringNullableFilter<"Book"> | string | null
|
|
14979
17468
|
translation?: XOR<TranslationRelationFilter, TranslationWhereInput>
|
|
14980
17469
|
chapters?: ChapterListRelationFilter
|
|
@@ -14991,6 +17480,7 @@ export namespace Prisma {
|
|
|
14991
17480
|
title?: SortOrderInput | SortOrder
|
|
14992
17481
|
order?: SortOrder
|
|
14993
17482
|
numberOfChapters?: SortOrder
|
|
17483
|
+
isApocryphal?: SortOrderInput | SortOrder
|
|
14994
17484
|
sha256?: SortOrderInput | SortOrder
|
|
14995
17485
|
translation?: TranslationOrderByWithRelationInput
|
|
14996
17486
|
chapters?: ChapterOrderByRelationAggregateInput
|
|
@@ -15011,6 +17501,7 @@ export namespace Prisma {
|
|
|
15011
17501
|
title?: StringNullableFilter<"Book"> | string | null
|
|
15012
17502
|
order?: IntFilter<"Book"> | number
|
|
15013
17503
|
numberOfChapters?: IntFilter<"Book"> | number
|
|
17504
|
+
isApocryphal?: BoolNullableFilter<"Book"> | boolean | null
|
|
15014
17505
|
sha256?: StringNullableFilter<"Book"> | string | null
|
|
15015
17506
|
translation?: XOR<TranslationRelationFilter, TranslationWhereInput>
|
|
15016
17507
|
chapters?: ChapterListRelationFilter
|
|
@@ -15027,6 +17518,7 @@ export namespace Prisma {
|
|
|
15027
17518
|
title?: SortOrderInput | SortOrder
|
|
15028
17519
|
order?: SortOrder
|
|
15029
17520
|
numberOfChapters?: SortOrder
|
|
17521
|
+
isApocryphal?: SortOrderInput | SortOrder
|
|
15030
17522
|
sha256?: SortOrderInput | SortOrder
|
|
15031
17523
|
_count?: BookCountOrderByAggregateInput
|
|
15032
17524
|
_avg?: BookAvgOrderByAggregateInput
|
|
@@ -15046,6 +17538,7 @@ export namespace Prisma {
|
|
|
15046
17538
|
title?: StringNullableWithAggregatesFilter<"Book"> | string | null
|
|
15047
17539
|
order?: IntWithAggregatesFilter<"Book"> | number
|
|
15048
17540
|
numberOfChapters?: IntWithAggregatesFilter<"Book"> | number
|
|
17541
|
+
isApocryphal?: BoolNullableWithAggregatesFilter<"Book"> | boolean | null
|
|
15049
17542
|
sha256?: StringNullableWithAggregatesFilter<"Book"> | string | null
|
|
15050
17543
|
}
|
|
15051
17544
|
|
|
@@ -15863,6 +18356,209 @@ export namespace Prisma {
|
|
|
15863
18356
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
15864
18357
|
}
|
|
15865
18358
|
|
|
18359
|
+
export type EBibleSourceCreateInput = {
|
|
18360
|
+
id: string
|
|
18361
|
+
usfmZipUrl?: string | null
|
|
18362
|
+
usfmZipEtag?: string | null
|
|
18363
|
+
languageCode: string
|
|
18364
|
+
title: string
|
|
18365
|
+
shortTitle?: string | null
|
|
18366
|
+
textDirection?: string | null
|
|
18367
|
+
redistributable: boolean
|
|
18368
|
+
description: string
|
|
18369
|
+
copyright: string
|
|
18370
|
+
FCBHID: string
|
|
18371
|
+
updateDate: Date | string
|
|
18372
|
+
sourceDate: Date | string
|
|
18373
|
+
oldTestamentBooks: number
|
|
18374
|
+
oldTestamentChapters: number
|
|
18375
|
+
oldTestamentVerses: number
|
|
18376
|
+
newTestamentBooks: number
|
|
18377
|
+
newTestamentChapters: number
|
|
18378
|
+
newTestamentVerses: number
|
|
18379
|
+
apocryphaBooks: number
|
|
18380
|
+
apocryphaChapters: number
|
|
18381
|
+
apocryphaVerses: number
|
|
18382
|
+
translationId: string
|
|
18383
|
+
usfmDownloadDate?: Date | string | null
|
|
18384
|
+
usfmDownloadPath?: string | null
|
|
18385
|
+
sha256?: string | null
|
|
18386
|
+
}
|
|
18387
|
+
|
|
18388
|
+
export type EBibleSourceUncheckedCreateInput = {
|
|
18389
|
+
id: string
|
|
18390
|
+
usfmZipUrl?: string | null
|
|
18391
|
+
usfmZipEtag?: string | null
|
|
18392
|
+
languageCode: string
|
|
18393
|
+
title: string
|
|
18394
|
+
shortTitle?: string | null
|
|
18395
|
+
textDirection?: string | null
|
|
18396
|
+
redistributable: boolean
|
|
18397
|
+
description: string
|
|
18398
|
+
copyright: string
|
|
18399
|
+
FCBHID: string
|
|
18400
|
+
updateDate: Date | string
|
|
18401
|
+
sourceDate: Date | string
|
|
18402
|
+
oldTestamentBooks: number
|
|
18403
|
+
oldTestamentChapters: number
|
|
18404
|
+
oldTestamentVerses: number
|
|
18405
|
+
newTestamentBooks: number
|
|
18406
|
+
newTestamentChapters: number
|
|
18407
|
+
newTestamentVerses: number
|
|
18408
|
+
apocryphaBooks: number
|
|
18409
|
+
apocryphaChapters: number
|
|
18410
|
+
apocryphaVerses: number
|
|
18411
|
+
translationId: string
|
|
18412
|
+
usfmDownloadDate?: Date | string | null
|
|
18413
|
+
usfmDownloadPath?: string | null
|
|
18414
|
+
sha256?: string | null
|
|
18415
|
+
}
|
|
18416
|
+
|
|
18417
|
+
export type EBibleSourceUpdateInput = {
|
|
18418
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
18419
|
+
usfmZipUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18420
|
+
usfmZipEtag?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18421
|
+
languageCode?: StringFieldUpdateOperationsInput | string
|
|
18422
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
18423
|
+
shortTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18424
|
+
textDirection?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18425
|
+
redistributable?: BoolFieldUpdateOperationsInput | boolean
|
|
18426
|
+
description?: StringFieldUpdateOperationsInput | string
|
|
18427
|
+
copyright?: StringFieldUpdateOperationsInput | string
|
|
18428
|
+
FCBHID?: StringFieldUpdateOperationsInput | string
|
|
18429
|
+
updateDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18430
|
+
sourceDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18431
|
+
oldTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18432
|
+
oldTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18433
|
+
oldTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18434
|
+
newTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18435
|
+
newTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18436
|
+
newTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18437
|
+
apocryphaBooks?: IntFieldUpdateOperationsInput | number
|
|
18438
|
+
apocryphaChapters?: IntFieldUpdateOperationsInput | number
|
|
18439
|
+
apocryphaVerses?: IntFieldUpdateOperationsInput | number
|
|
18440
|
+
translationId?: StringFieldUpdateOperationsInput | string
|
|
18441
|
+
usfmDownloadDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
18442
|
+
usfmDownloadPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18443
|
+
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18444
|
+
}
|
|
18445
|
+
|
|
18446
|
+
export type EBibleSourceUncheckedUpdateInput = {
|
|
18447
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
18448
|
+
usfmZipUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18449
|
+
usfmZipEtag?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18450
|
+
languageCode?: StringFieldUpdateOperationsInput | string
|
|
18451
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
18452
|
+
shortTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18453
|
+
textDirection?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18454
|
+
redistributable?: BoolFieldUpdateOperationsInput | boolean
|
|
18455
|
+
description?: StringFieldUpdateOperationsInput | string
|
|
18456
|
+
copyright?: StringFieldUpdateOperationsInput | string
|
|
18457
|
+
FCBHID?: StringFieldUpdateOperationsInput | string
|
|
18458
|
+
updateDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18459
|
+
sourceDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18460
|
+
oldTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18461
|
+
oldTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18462
|
+
oldTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18463
|
+
newTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18464
|
+
newTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18465
|
+
newTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18466
|
+
apocryphaBooks?: IntFieldUpdateOperationsInput | number
|
|
18467
|
+
apocryphaChapters?: IntFieldUpdateOperationsInput | number
|
|
18468
|
+
apocryphaVerses?: IntFieldUpdateOperationsInput | number
|
|
18469
|
+
translationId?: StringFieldUpdateOperationsInput | string
|
|
18470
|
+
usfmDownloadDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
18471
|
+
usfmDownloadPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18472
|
+
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18473
|
+
}
|
|
18474
|
+
|
|
18475
|
+
export type EBibleSourceCreateManyInput = {
|
|
18476
|
+
id: string
|
|
18477
|
+
usfmZipUrl?: string | null
|
|
18478
|
+
usfmZipEtag?: string | null
|
|
18479
|
+
languageCode: string
|
|
18480
|
+
title: string
|
|
18481
|
+
shortTitle?: string | null
|
|
18482
|
+
textDirection?: string | null
|
|
18483
|
+
redistributable: boolean
|
|
18484
|
+
description: string
|
|
18485
|
+
copyright: string
|
|
18486
|
+
FCBHID: string
|
|
18487
|
+
updateDate: Date | string
|
|
18488
|
+
sourceDate: Date | string
|
|
18489
|
+
oldTestamentBooks: number
|
|
18490
|
+
oldTestamentChapters: number
|
|
18491
|
+
oldTestamentVerses: number
|
|
18492
|
+
newTestamentBooks: number
|
|
18493
|
+
newTestamentChapters: number
|
|
18494
|
+
newTestamentVerses: number
|
|
18495
|
+
apocryphaBooks: number
|
|
18496
|
+
apocryphaChapters: number
|
|
18497
|
+
apocryphaVerses: number
|
|
18498
|
+
translationId: string
|
|
18499
|
+
usfmDownloadDate?: Date | string | null
|
|
18500
|
+
usfmDownloadPath?: string | null
|
|
18501
|
+
sha256?: string | null
|
|
18502
|
+
}
|
|
18503
|
+
|
|
18504
|
+
export type EBibleSourceUpdateManyMutationInput = {
|
|
18505
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
18506
|
+
usfmZipUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18507
|
+
usfmZipEtag?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18508
|
+
languageCode?: StringFieldUpdateOperationsInput | string
|
|
18509
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
18510
|
+
shortTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18511
|
+
textDirection?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18512
|
+
redistributable?: BoolFieldUpdateOperationsInput | boolean
|
|
18513
|
+
description?: StringFieldUpdateOperationsInput | string
|
|
18514
|
+
copyright?: StringFieldUpdateOperationsInput | string
|
|
18515
|
+
FCBHID?: StringFieldUpdateOperationsInput | string
|
|
18516
|
+
updateDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18517
|
+
sourceDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18518
|
+
oldTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18519
|
+
oldTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18520
|
+
oldTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18521
|
+
newTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18522
|
+
newTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18523
|
+
newTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18524
|
+
apocryphaBooks?: IntFieldUpdateOperationsInput | number
|
|
18525
|
+
apocryphaChapters?: IntFieldUpdateOperationsInput | number
|
|
18526
|
+
apocryphaVerses?: IntFieldUpdateOperationsInput | number
|
|
18527
|
+
translationId?: StringFieldUpdateOperationsInput | string
|
|
18528
|
+
usfmDownloadDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
18529
|
+
usfmDownloadPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18530
|
+
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18531
|
+
}
|
|
18532
|
+
|
|
18533
|
+
export type EBibleSourceUncheckedUpdateManyInput = {
|
|
18534
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
18535
|
+
usfmZipUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18536
|
+
usfmZipEtag?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18537
|
+
languageCode?: StringFieldUpdateOperationsInput | string
|
|
18538
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
18539
|
+
shortTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18540
|
+
textDirection?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18541
|
+
redistributable?: BoolFieldUpdateOperationsInput | boolean
|
|
18542
|
+
description?: StringFieldUpdateOperationsInput | string
|
|
18543
|
+
copyright?: StringFieldUpdateOperationsInput | string
|
|
18544
|
+
FCBHID?: StringFieldUpdateOperationsInput | string
|
|
18545
|
+
updateDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18546
|
+
sourceDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18547
|
+
oldTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18548
|
+
oldTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18549
|
+
oldTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18550
|
+
newTestamentBooks?: IntFieldUpdateOperationsInput | number
|
|
18551
|
+
newTestamentChapters?: IntFieldUpdateOperationsInput | number
|
|
18552
|
+
newTestamentVerses?: IntFieldUpdateOperationsInput | number
|
|
18553
|
+
apocryphaBooks?: IntFieldUpdateOperationsInput | number
|
|
18554
|
+
apocryphaChapters?: IntFieldUpdateOperationsInput | number
|
|
18555
|
+
apocryphaVerses?: IntFieldUpdateOperationsInput | number
|
|
18556
|
+
translationId?: StringFieldUpdateOperationsInput | string
|
|
18557
|
+
usfmDownloadDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
18558
|
+
usfmDownloadPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18559
|
+
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18560
|
+
}
|
|
18561
|
+
|
|
15866
18562
|
export type InputFileCreateInput = {
|
|
15867
18563
|
translationId: string
|
|
15868
18564
|
name: string
|
|
@@ -15919,6 +18615,48 @@ export namespace Prisma {
|
|
|
15919
18615
|
sizeInBytes?: IntFieldUpdateOperationsInput | number
|
|
15920
18616
|
}
|
|
15921
18617
|
|
|
18618
|
+
export type InputFileWarningCreateInput = {
|
|
18619
|
+
name: string
|
|
18620
|
+
type: string
|
|
18621
|
+
message: string
|
|
18622
|
+
}
|
|
18623
|
+
|
|
18624
|
+
export type InputFileWarningUncheckedCreateInput = {
|
|
18625
|
+
name: string
|
|
18626
|
+
type: string
|
|
18627
|
+
message: string
|
|
18628
|
+
}
|
|
18629
|
+
|
|
18630
|
+
export type InputFileWarningUpdateInput = {
|
|
18631
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
18632
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
18633
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
18634
|
+
}
|
|
18635
|
+
|
|
18636
|
+
export type InputFileWarningUncheckedUpdateInput = {
|
|
18637
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
18638
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
18639
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
18640
|
+
}
|
|
18641
|
+
|
|
18642
|
+
export type InputFileWarningCreateManyInput = {
|
|
18643
|
+
name: string
|
|
18644
|
+
type: string
|
|
18645
|
+
message: string
|
|
18646
|
+
}
|
|
18647
|
+
|
|
18648
|
+
export type InputFileWarningUpdateManyMutationInput = {
|
|
18649
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
18650
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
18651
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
18652
|
+
}
|
|
18653
|
+
|
|
18654
|
+
export type InputFileWarningUncheckedUpdateManyInput = {
|
|
18655
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
18656
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
18657
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
18658
|
+
}
|
|
18659
|
+
|
|
15922
18660
|
export type BookCreateInput = {
|
|
15923
18661
|
id: string
|
|
15924
18662
|
name: string
|
|
@@ -15926,6 +18664,7 @@ export namespace Prisma {
|
|
|
15926
18664
|
title?: string | null
|
|
15927
18665
|
order: number
|
|
15928
18666
|
numberOfChapters: number
|
|
18667
|
+
isApocryphal?: boolean | null
|
|
15929
18668
|
sha256?: string | null
|
|
15930
18669
|
translation: TranslationCreateNestedOneWithoutBooksInput
|
|
15931
18670
|
chapters?: ChapterCreateNestedManyWithoutBookInput
|
|
@@ -15942,6 +18681,7 @@ export namespace Prisma {
|
|
|
15942
18681
|
title?: string | null
|
|
15943
18682
|
order: number
|
|
15944
18683
|
numberOfChapters: number
|
|
18684
|
+
isApocryphal?: boolean | null
|
|
15945
18685
|
sha256?: string | null
|
|
15946
18686
|
chapters?: ChapterUncheckedCreateNestedManyWithoutBookInput
|
|
15947
18687
|
verses?: ChapterVerseUncheckedCreateNestedManyWithoutBookInput
|
|
@@ -15956,6 +18696,7 @@ export namespace Prisma {
|
|
|
15956
18696
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
15957
18697
|
order?: IntFieldUpdateOperationsInput | number
|
|
15958
18698
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
18699
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
15959
18700
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
15960
18701
|
translation?: TranslationUpdateOneRequiredWithoutBooksNestedInput
|
|
15961
18702
|
chapters?: ChapterUpdateManyWithoutBookNestedInput
|
|
@@ -15972,6 +18713,7 @@ export namespace Prisma {
|
|
|
15972
18713
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
15973
18714
|
order?: IntFieldUpdateOperationsInput | number
|
|
15974
18715
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
18716
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
15975
18717
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
15976
18718
|
chapters?: ChapterUncheckedUpdateManyWithoutBookNestedInput
|
|
15977
18719
|
verses?: ChapterVerseUncheckedUpdateManyWithoutBookNestedInput
|
|
@@ -15987,6 +18729,7 @@ export namespace Prisma {
|
|
|
15987
18729
|
title?: string | null
|
|
15988
18730
|
order: number
|
|
15989
18731
|
numberOfChapters: number
|
|
18732
|
+
isApocryphal?: boolean | null
|
|
15990
18733
|
sha256?: string | null
|
|
15991
18734
|
}
|
|
15992
18735
|
|
|
@@ -15997,6 +18740,7 @@ export namespace Prisma {
|
|
|
15997
18740
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
15998
18741
|
order?: IntFieldUpdateOperationsInput | number
|
|
15999
18742
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
18743
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16000
18744
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16001
18745
|
}
|
|
16002
18746
|
|
|
@@ -16008,6 +18752,7 @@ export namespace Prisma {
|
|
|
16008
18752
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16009
18753
|
order?: IntFieldUpdateOperationsInput | number
|
|
16010
18754
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
18755
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16011
18756
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16012
18757
|
}
|
|
16013
18758
|
|
|
@@ -16819,6 +19564,22 @@ export namespace Prisma {
|
|
|
16819
19564
|
sha256?: SortOrder
|
|
16820
19565
|
}
|
|
16821
19566
|
|
|
19567
|
+
export type BoolFilter<$PrismaModel = never> = {
|
|
19568
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
19569
|
+
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
19570
|
+
}
|
|
19571
|
+
|
|
19572
|
+
export type DateTimeFilter<$PrismaModel = never> = {
|
|
19573
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19574
|
+
in?: Date[] | string[]
|
|
19575
|
+
notIn?: Date[] | string[]
|
|
19576
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19577
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19578
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19579
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19580
|
+
not?: NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
19581
|
+
}
|
|
19582
|
+
|
|
16822
19583
|
export type IntFilter<$PrismaModel = never> = {
|
|
16823
19584
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
16824
19585
|
in?: number[]
|
|
@@ -16830,6 +19591,180 @@ export namespace Prisma {
|
|
|
16830
19591
|
not?: NestedIntFilter<$PrismaModel> | number
|
|
16831
19592
|
}
|
|
16832
19593
|
|
|
19594
|
+
export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
19595
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel> | null
|
|
19596
|
+
in?: Date[] | string[] | null
|
|
19597
|
+
notIn?: Date[] | string[] | null
|
|
19598
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19599
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19600
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19601
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19602
|
+
not?: NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null
|
|
19603
|
+
}
|
|
19604
|
+
|
|
19605
|
+
export type EBibleSourceCountOrderByAggregateInput = {
|
|
19606
|
+
id?: SortOrder
|
|
19607
|
+
usfmZipUrl?: SortOrder
|
|
19608
|
+
usfmZipEtag?: SortOrder
|
|
19609
|
+
languageCode?: SortOrder
|
|
19610
|
+
title?: SortOrder
|
|
19611
|
+
shortTitle?: SortOrder
|
|
19612
|
+
textDirection?: SortOrder
|
|
19613
|
+
redistributable?: SortOrder
|
|
19614
|
+
description?: SortOrder
|
|
19615
|
+
copyright?: SortOrder
|
|
19616
|
+
FCBHID?: SortOrder
|
|
19617
|
+
updateDate?: SortOrder
|
|
19618
|
+
sourceDate?: SortOrder
|
|
19619
|
+
oldTestamentBooks?: SortOrder
|
|
19620
|
+
oldTestamentChapters?: SortOrder
|
|
19621
|
+
oldTestamentVerses?: SortOrder
|
|
19622
|
+
newTestamentBooks?: SortOrder
|
|
19623
|
+
newTestamentChapters?: SortOrder
|
|
19624
|
+
newTestamentVerses?: SortOrder
|
|
19625
|
+
apocryphaBooks?: SortOrder
|
|
19626
|
+
apocryphaChapters?: SortOrder
|
|
19627
|
+
apocryphaVerses?: SortOrder
|
|
19628
|
+
translationId?: SortOrder
|
|
19629
|
+
usfmDownloadDate?: SortOrder
|
|
19630
|
+
usfmDownloadPath?: SortOrder
|
|
19631
|
+
sha256?: SortOrder
|
|
19632
|
+
}
|
|
19633
|
+
|
|
19634
|
+
export type EBibleSourceAvgOrderByAggregateInput = {
|
|
19635
|
+
oldTestamentBooks?: SortOrder
|
|
19636
|
+
oldTestamentChapters?: SortOrder
|
|
19637
|
+
oldTestamentVerses?: SortOrder
|
|
19638
|
+
newTestamentBooks?: SortOrder
|
|
19639
|
+
newTestamentChapters?: SortOrder
|
|
19640
|
+
newTestamentVerses?: SortOrder
|
|
19641
|
+
apocryphaBooks?: SortOrder
|
|
19642
|
+
apocryphaChapters?: SortOrder
|
|
19643
|
+
apocryphaVerses?: SortOrder
|
|
19644
|
+
}
|
|
19645
|
+
|
|
19646
|
+
export type EBibleSourceMaxOrderByAggregateInput = {
|
|
19647
|
+
id?: SortOrder
|
|
19648
|
+
usfmZipUrl?: SortOrder
|
|
19649
|
+
usfmZipEtag?: SortOrder
|
|
19650
|
+
languageCode?: SortOrder
|
|
19651
|
+
title?: SortOrder
|
|
19652
|
+
shortTitle?: SortOrder
|
|
19653
|
+
textDirection?: SortOrder
|
|
19654
|
+
redistributable?: SortOrder
|
|
19655
|
+
description?: SortOrder
|
|
19656
|
+
copyright?: SortOrder
|
|
19657
|
+
FCBHID?: SortOrder
|
|
19658
|
+
updateDate?: SortOrder
|
|
19659
|
+
sourceDate?: SortOrder
|
|
19660
|
+
oldTestamentBooks?: SortOrder
|
|
19661
|
+
oldTestamentChapters?: SortOrder
|
|
19662
|
+
oldTestamentVerses?: SortOrder
|
|
19663
|
+
newTestamentBooks?: SortOrder
|
|
19664
|
+
newTestamentChapters?: SortOrder
|
|
19665
|
+
newTestamentVerses?: SortOrder
|
|
19666
|
+
apocryphaBooks?: SortOrder
|
|
19667
|
+
apocryphaChapters?: SortOrder
|
|
19668
|
+
apocryphaVerses?: SortOrder
|
|
19669
|
+
translationId?: SortOrder
|
|
19670
|
+
usfmDownloadDate?: SortOrder
|
|
19671
|
+
usfmDownloadPath?: SortOrder
|
|
19672
|
+
sha256?: SortOrder
|
|
19673
|
+
}
|
|
19674
|
+
|
|
19675
|
+
export type EBibleSourceMinOrderByAggregateInput = {
|
|
19676
|
+
id?: SortOrder
|
|
19677
|
+
usfmZipUrl?: SortOrder
|
|
19678
|
+
usfmZipEtag?: SortOrder
|
|
19679
|
+
languageCode?: SortOrder
|
|
19680
|
+
title?: SortOrder
|
|
19681
|
+
shortTitle?: SortOrder
|
|
19682
|
+
textDirection?: SortOrder
|
|
19683
|
+
redistributable?: SortOrder
|
|
19684
|
+
description?: SortOrder
|
|
19685
|
+
copyright?: SortOrder
|
|
19686
|
+
FCBHID?: SortOrder
|
|
19687
|
+
updateDate?: SortOrder
|
|
19688
|
+
sourceDate?: SortOrder
|
|
19689
|
+
oldTestamentBooks?: SortOrder
|
|
19690
|
+
oldTestamentChapters?: SortOrder
|
|
19691
|
+
oldTestamentVerses?: SortOrder
|
|
19692
|
+
newTestamentBooks?: SortOrder
|
|
19693
|
+
newTestamentChapters?: SortOrder
|
|
19694
|
+
newTestamentVerses?: SortOrder
|
|
19695
|
+
apocryphaBooks?: SortOrder
|
|
19696
|
+
apocryphaChapters?: SortOrder
|
|
19697
|
+
apocryphaVerses?: SortOrder
|
|
19698
|
+
translationId?: SortOrder
|
|
19699
|
+
usfmDownloadDate?: SortOrder
|
|
19700
|
+
usfmDownloadPath?: SortOrder
|
|
19701
|
+
sha256?: SortOrder
|
|
19702
|
+
}
|
|
19703
|
+
|
|
19704
|
+
export type EBibleSourceSumOrderByAggregateInput = {
|
|
19705
|
+
oldTestamentBooks?: SortOrder
|
|
19706
|
+
oldTestamentChapters?: SortOrder
|
|
19707
|
+
oldTestamentVerses?: SortOrder
|
|
19708
|
+
newTestamentBooks?: SortOrder
|
|
19709
|
+
newTestamentChapters?: SortOrder
|
|
19710
|
+
newTestamentVerses?: SortOrder
|
|
19711
|
+
apocryphaBooks?: SortOrder
|
|
19712
|
+
apocryphaChapters?: SortOrder
|
|
19713
|
+
apocryphaVerses?: SortOrder
|
|
19714
|
+
}
|
|
19715
|
+
|
|
19716
|
+
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
19717
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
19718
|
+
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
19719
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
19720
|
+
_min?: NestedBoolFilter<$PrismaModel>
|
|
19721
|
+
_max?: NestedBoolFilter<$PrismaModel>
|
|
19722
|
+
}
|
|
19723
|
+
|
|
19724
|
+
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
19725
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19726
|
+
in?: Date[] | string[]
|
|
19727
|
+
notIn?: Date[] | string[]
|
|
19728
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19729
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19730
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19731
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19732
|
+
not?: NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
|
|
19733
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
19734
|
+
_min?: NestedDateTimeFilter<$PrismaModel>
|
|
19735
|
+
_max?: NestedDateTimeFilter<$PrismaModel>
|
|
19736
|
+
}
|
|
19737
|
+
|
|
19738
|
+
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
19739
|
+
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
19740
|
+
in?: number[]
|
|
19741
|
+
notIn?: number[]
|
|
19742
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
19743
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
19744
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
19745
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
19746
|
+
not?: NestedIntWithAggregatesFilter<$PrismaModel> | number
|
|
19747
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
19748
|
+
_avg?: NestedFloatFilter<$PrismaModel>
|
|
19749
|
+
_sum?: NestedIntFilter<$PrismaModel>
|
|
19750
|
+
_min?: NestedIntFilter<$PrismaModel>
|
|
19751
|
+
_max?: NestedIntFilter<$PrismaModel>
|
|
19752
|
+
}
|
|
19753
|
+
|
|
19754
|
+
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
19755
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel> | null
|
|
19756
|
+
in?: Date[] | string[] | null
|
|
19757
|
+
notIn?: Date[] | string[] | null
|
|
19758
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19759
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19760
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19761
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
19762
|
+
not?: NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null
|
|
19763
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
19764
|
+
_min?: NestedDateTimeNullableFilter<$PrismaModel>
|
|
19765
|
+
_max?: NestedDateTimeNullableFilter<$PrismaModel>
|
|
19766
|
+
}
|
|
19767
|
+
|
|
16833
19768
|
export type InputFileTranslationIdNameCompoundUniqueInput = {
|
|
16834
19769
|
translationId: string
|
|
16835
19770
|
name: string
|
|
@@ -16867,20 +19802,33 @@ export namespace Prisma {
|
|
|
16867
19802
|
sizeInBytes?: SortOrder
|
|
16868
19803
|
}
|
|
16869
19804
|
|
|
16870
|
-
export type
|
|
16871
|
-
|
|
16872
|
-
|
|
16873
|
-
|
|
16874
|
-
|
|
16875
|
-
|
|
16876
|
-
|
|
16877
|
-
|
|
16878
|
-
|
|
16879
|
-
|
|
16880
|
-
|
|
16881
|
-
|
|
16882
|
-
|
|
16883
|
-
|
|
19805
|
+
export type InputFileWarningNameTypeMessageCompoundUniqueInput = {
|
|
19806
|
+
name: string
|
|
19807
|
+
type: string
|
|
19808
|
+
message: string
|
|
19809
|
+
}
|
|
19810
|
+
|
|
19811
|
+
export type InputFileWarningCountOrderByAggregateInput = {
|
|
19812
|
+
name?: SortOrder
|
|
19813
|
+
type?: SortOrder
|
|
19814
|
+
message?: SortOrder
|
|
19815
|
+
}
|
|
19816
|
+
|
|
19817
|
+
export type InputFileWarningMaxOrderByAggregateInput = {
|
|
19818
|
+
name?: SortOrder
|
|
19819
|
+
type?: SortOrder
|
|
19820
|
+
message?: SortOrder
|
|
19821
|
+
}
|
|
19822
|
+
|
|
19823
|
+
export type InputFileWarningMinOrderByAggregateInput = {
|
|
19824
|
+
name?: SortOrder
|
|
19825
|
+
type?: SortOrder
|
|
19826
|
+
message?: SortOrder
|
|
19827
|
+
}
|
|
19828
|
+
|
|
19829
|
+
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
19830
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
19831
|
+
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
16884
19832
|
}
|
|
16885
19833
|
|
|
16886
19834
|
export type TranslationRelationFilter = {
|
|
@@ -16901,6 +19849,7 @@ export namespace Prisma {
|
|
|
16901
19849
|
title?: SortOrder
|
|
16902
19850
|
order?: SortOrder
|
|
16903
19851
|
numberOfChapters?: SortOrder
|
|
19852
|
+
isApocryphal?: SortOrder
|
|
16904
19853
|
sha256?: SortOrder
|
|
16905
19854
|
}
|
|
16906
19855
|
|
|
@@ -16917,6 +19866,7 @@ export namespace Prisma {
|
|
|
16917
19866
|
title?: SortOrder
|
|
16918
19867
|
order?: SortOrder
|
|
16919
19868
|
numberOfChapters?: SortOrder
|
|
19869
|
+
isApocryphal?: SortOrder
|
|
16920
19870
|
sha256?: SortOrder
|
|
16921
19871
|
}
|
|
16922
19872
|
|
|
@@ -16928,6 +19878,7 @@ export namespace Prisma {
|
|
|
16928
19878
|
title?: SortOrder
|
|
16929
19879
|
order?: SortOrder
|
|
16930
19880
|
numberOfChapters?: SortOrder
|
|
19881
|
+
isApocryphal?: SortOrder
|
|
16931
19882
|
sha256?: SortOrder
|
|
16932
19883
|
}
|
|
16933
19884
|
|
|
@@ -16936,6 +19887,14 @@ export namespace Prisma {
|
|
|
16936
19887
|
numberOfChapters?: SortOrder
|
|
16937
19888
|
}
|
|
16938
19889
|
|
|
19890
|
+
export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
19891
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
19892
|
+
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
19893
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
19894
|
+
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
19895
|
+
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
19896
|
+
}
|
|
19897
|
+
|
|
16939
19898
|
export type CommentaryRelationFilter = {
|
|
16940
19899
|
is?: CommentaryWhereInput
|
|
16941
19900
|
isNot?: CommentaryWhereInput
|
|
@@ -17752,6 +20711,14 @@ export namespace Prisma {
|
|
|
17752
20711
|
deleteMany?: CommentaryProfileScalarWhereInput | CommentaryProfileScalarWhereInput[]
|
|
17753
20712
|
}
|
|
17754
20713
|
|
|
20714
|
+
export type BoolFieldUpdateOperationsInput = {
|
|
20715
|
+
set?: boolean
|
|
20716
|
+
}
|
|
20717
|
+
|
|
20718
|
+
export type DateTimeFieldUpdateOperationsInput = {
|
|
20719
|
+
set?: Date | string
|
|
20720
|
+
}
|
|
20721
|
+
|
|
17755
20722
|
export type IntFieldUpdateOperationsInput = {
|
|
17756
20723
|
set?: number
|
|
17757
20724
|
increment?: number
|
|
@@ -17760,6 +20727,10 @@ export namespace Prisma {
|
|
|
17760
20727
|
divide?: number
|
|
17761
20728
|
}
|
|
17762
20729
|
|
|
20730
|
+
export type NullableDateTimeFieldUpdateOperationsInput = {
|
|
20731
|
+
set?: Date | string | null
|
|
20732
|
+
}
|
|
20733
|
+
|
|
17763
20734
|
export type TranslationCreateNestedOneWithoutBooksInput = {
|
|
17764
20735
|
create?: XOR<TranslationCreateWithoutBooksInput, TranslationUncheckedCreateWithoutBooksInput>
|
|
17765
20736
|
connectOrCreate?: TranslationCreateOrConnectWithoutBooksInput
|
|
@@ -17822,6 +20793,10 @@ export namespace Prisma {
|
|
|
17822
20793
|
connect?: ChapterAudioUrlWhereUniqueInput | ChapterAudioUrlWhereUniqueInput[]
|
|
17823
20794
|
}
|
|
17824
20795
|
|
|
20796
|
+
export type NullableBoolFieldUpdateOperationsInput = {
|
|
20797
|
+
set?: boolean | null
|
|
20798
|
+
}
|
|
20799
|
+
|
|
17825
20800
|
export type TranslationUpdateOneRequiredWithoutBooksNestedInput = {
|
|
17826
20801
|
create?: XOR<TranslationCreateWithoutBooksInput, TranslationUncheckedCreateWithoutBooksInput>
|
|
17827
20802
|
connectOrCreate?: TranslationCreateOrConnectWithoutBooksInput
|
|
@@ -18596,6 +21571,55 @@ export namespace Prisma {
|
|
|
18596
21571
|
not?: NestedIntNullableFilter<$PrismaModel> | number | null
|
|
18597
21572
|
}
|
|
18598
21573
|
|
|
21574
|
+
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
21575
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
21576
|
+
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
21577
|
+
}
|
|
21578
|
+
|
|
21579
|
+
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
21580
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21581
|
+
in?: Date[] | string[]
|
|
21582
|
+
notIn?: Date[] | string[]
|
|
21583
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21584
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21585
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21586
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21587
|
+
not?: NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
21588
|
+
}
|
|
21589
|
+
|
|
21590
|
+
export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
21591
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel> | null
|
|
21592
|
+
in?: Date[] | string[] | null
|
|
21593
|
+
notIn?: Date[] | string[] | null
|
|
21594
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21595
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21596
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21597
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21598
|
+
not?: NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null
|
|
21599
|
+
}
|
|
21600
|
+
|
|
21601
|
+
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
21602
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
21603
|
+
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
21604
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
21605
|
+
_min?: NestedBoolFilter<$PrismaModel>
|
|
21606
|
+
_max?: NestedBoolFilter<$PrismaModel>
|
|
21607
|
+
}
|
|
21608
|
+
|
|
21609
|
+
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
21610
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21611
|
+
in?: Date[] | string[]
|
|
21612
|
+
notIn?: Date[] | string[]
|
|
21613
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21614
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21615
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21616
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21617
|
+
not?: NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
|
|
21618
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
21619
|
+
_min?: NestedDateTimeFilter<$PrismaModel>
|
|
21620
|
+
_max?: NestedDateTimeFilter<$PrismaModel>
|
|
21621
|
+
}
|
|
21622
|
+
|
|
18599
21623
|
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
18600
21624
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
18601
21625
|
in?: number[]
|
|
@@ -18623,6 +21647,33 @@ export namespace Prisma {
|
|
|
18623
21647
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
18624
21648
|
}
|
|
18625
21649
|
|
|
21650
|
+
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
21651
|
+
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel> | null
|
|
21652
|
+
in?: Date[] | string[] | null
|
|
21653
|
+
notIn?: Date[] | string[] | null
|
|
21654
|
+
lt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21655
|
+
lte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21656
|
+
gt?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21657
|
+
gte?: Date | string | DateTimeFieldRefInput<$PrismaModel>
|
|
21658
|
+
not?: NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null
|
|
21659
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
21660
|
+
_min?: NestedDateTimeNullableFilter<$PrismaModel>
|
|
21661
|
+
_max?: NestedDateTimeNullableFilter<$PrismaModel>
|
|
21662
|
+
}
|
|
21663
|
+
|
|
21664
|
+
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
21665
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
21666
|
+
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
21667
|
+
}
|
|
21668
|
+
|
|
21669
|
+
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
21670
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
21671
|
+
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
21672
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
21673
|
+
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
21674
|
+
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
21675
|
+
}
|
|
21676
|
+
|
|
18626
21677
|
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
18627
21678
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
|
18628
21679
|
in?: number[] | null
|
|
@@ -18657,6 +21708,7 @@ export namespace Prisma {
|
|
|
18657
21708
|
title?: string | null
|
|
18658
21709
|
order: number
|
|
18659
21710
|
numberOfChapters: number
|
|
21711
|
+
isApocryphal?: boolean | null
|
|
18660
21712
|
sha256?: string | null
|
|
18661
21713
|
chapters?: ChapterCreateNestedManyWithoutBookInput
|
|
18662
21714
|
verses?: ChapterVerseCreateNestedManyWithoutBookInput
|
|
@@ -18671,6 +21723,7 @@ export namespace Prisma {
|
|
|
18671
21723
|
title?: string | null
|
|
18672
21724
|
order: number
|
|
18673
21725
|
numberOfChapters: number
|
|
21726
|
+
isApocryphal?: boolean | null
|
|
18674
21727
|
sha256?: string | null
|
|
18675
21728
|
chapters?: ChapterUncheckedCreateNestedManyWithoutBookInput
|
|
18676
21729
|
verses?: ChapterVerseUncheckedCreateNestedManyWithoutBookInput
|
|
@@ -18822,6 +21875,7 @@ export namespace Prisma {
|
|
|
18822
21875
|
title?: StringNullableFilter<"Book"> | string | null
|
|
18823
21876
|
order?: IntFilter<"Book"> | number
|
|
18824
21877
|
numberOfChapters?: IntFilter<"Book"> | number
|
|
21878
|
+
isApocryphal?: BoolNullableFilter<"Book"> | boolean | null
|
|
18825
21879
|
sha256?: StringNullableFilter<"Book"> | string | null
|
|
18826
21880
|
}
|
|
18827
21881
|
|
|
@@ -19677,6 +22731,7 @@ export namespace Prisma {
|
|
|
19677
22731
|
title?: string | null
|
|
19678
22732
|
order: number
|
|
19679
22733
|
numberOfChapters: number
|
|
22734
|
+
isApocryphal?: boolean | null
|
|
19680
22735
|
sha256?: string | null
|
|
19681
22736
|
translation: TranslationCreateNestedOneWithoutBooksInput
|
|
19682
22737
|
verses?: ChapterVerseCreateNestedManyWithoutBookInput
|
|
@@ -19692,6 +22747,7 @@ export namespace Prisma {
|
|
|
19692
22747
|
title?: string | null
|
|
19693
22748
|
order: number
|
|
19694
22749
|
numberOfChapters: number
|
|
22750
|
+
isApocryphal?: boolean | null
|
|
19695
22751
|
sha256?: string | null
|
|
19696
22752
|
verses?: ChapterVerseUncheckedCreateNestedManyWithoutBookInput
|
|
19697
22753
|
footnotes?: ChapterFootnoteUncheckedCreateNestedManyWithoutBookInput
|
|
@@ -19833,6 +22889,7 @@ export namespace Prisma {
|
|
|
19833
22889
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19834
22890
|
order?: IntFieldUpdateOperationsInput | number
|
|
19835
22891
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
22892
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
19836
22893
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19837
22894
|
translation?: TranslationUpdateOneRequiredWithoutBooksNestedInput
|
|
19838
22895
|
verses?: ChapterVerseUpdateManyWithoutBookNestedInput
|
|
@@ -19848,6 +22905,7 @@ export namespace Prisma {
|
|
|
19848
22905
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19849
22906
|
order?: IntFieldUpdateOperationsInput | number
|
|
19850
22907
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
22908
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
19851
22909
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19852
22910
|
verses?: ChapterVerseUncheckedUpdateManyWithoutBookNestedInput
|
|
19853
22911
|
footnotes?: ChapterFootnoteUncheckedUpdateManyWithoutBookNestedInput
|
|
@@ -20139,6 +23197,7 @@ export namespace Prisma {
|
|
|
20139
23197
|
title?: string | null
|
|
20140
23198
|
order: number
|
|
20141
23199
|
numberOfChapters: number
|
|
23200
|
+
isApocryphal?: boolean | null
|
|
20142
23201
|
sha256?: string | null
|
|
20143
23202
|
translation: TranslationCreateNestedOneWithoutBooksInput
|
|
20144
23203
|
chapters?: ChapterCreateNestedManyWithoutBookInput
|
|
@@ -20154,6 +23213,7 @@ export namespace Prisma {
|
|
|
20154
23213
|
title?: string | null
|
|
20155
23214
|
order: number
|
|
20156
23215
|
numberOfChapters: number
|
|
23216
|
+
isApocryphal?: boolean | null
|
|
20157
23217
|
sha256?: string | null
|
|
20158
23218
|
chapters?: ChapterUncheckedCreateNestedManyWithoutBookInput
|
|
20159
23219
|
verses?: ChapterVerseUncheckedCreateNestedManyWithoutBookInput
|
|
@@ -20247,6 +23307,7 @@ export namespace Prisma {
|
|
|
20247
23307
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20248
23308
|
order?: IntFieldUpdateOperationsInput | number
|
|
20249
23309
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
23310
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
20250
23311
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20251
23312
|
translation?: TranslationUpdateOneRequiredWithoutBooksNestedInput
|
|
20252
23313
|
chapters?: ChapterUpdateManyWithoutBookNestedInput
|
|
@@ -20262,6 +23323,7 @@ export namespace Prisma {
|
|
|
20262
23323
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20263
23324
|
order?: IntFieldUpdateOperationsInput | number
|
|
20264
23325
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
23326
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
20265
23327
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20266
23328
|
chapters?: ChapterUncheckedUpdateManyWithoutBookNestedInput
|
|
20267
23329
|
verses?: ChapterVerseUncheckedUpdateManyWithoutBookNestedInput
|
|
@@ -20376,6 +23438,7 @@ export namespace Prisma {
|
|
|
20376
23438
|
title?: string | null
|
|
20377
23439
|
order: number
|
|
20378
23440
|
numberOfChapters: number
|
|
23441
|
+
isApocryphal?: boolean | null
|
|
20379
23442
|
sha256?: string | null
|
|
20380
23443
|
translation: TranslationCreateNestedOneWithoutBooksInput
|
|
20381
23444
|
chapters?: ChapterCreateNestedManyWithoutBookInput
|
|
@@ -20391,6 +23454,7 @@ export namespace Prisma {
|
|
|
20391
23454
|
title?: string | null
|
|
20392
23455
|
order: number
|
|
20393
23456
|
numberOfChapters: number
|
|
23457
|
+
isApocryphal?: boolean | null
|
|
20394
23458
|
sha256?: string | null
|
|
20395
23459
|
chapters?: ChapterUncheckedCreateNestedManyWithoutBookInput
|
|
20396
23460
|
footnotes?: ChapterFootnoteUncheckedCreateNestedManyWithoutBookInput
|
|
@@ -20514,6 +23578,7 @@ export namespace Prisma {
|
|
|
20514
23578
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20515
23579
|
order?: IntFieldUpdateOperationsInput | number
|
|
20516
23580
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
23581
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
20517
23582
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20518
23583
|
translation?: TranslationUpdateOneRequiredWithoutBooksNestedInput
|
|
20519
23584
|
chapters?: ChapterUpdateManyWithoutBookNestedInput
|
|
@@ -20529,6 +23594,7 @@ export namespace Prisma {
|
|
|
20529
23594
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20530
23595
|
order?: IntFieldUpdateOperationsInput | number
|
|
20531
23596
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
23597
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
20532
23598
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20533
23599
|
chapters?: ChapterUncheckedUpdateManyWithoutBookNestedInput
|
|
20534
23600
|
footnotes?: ChapterFootnoteUncheckedUpdateManyWithoutBookNestedInput
|
|
@@ -20824,6 +23890,7 @@ export namespace Prisma {
|
|
|
20824
23890
|
title?: string | null
|
|
20825
23891
|
order: number
|
|
20826
23892
|
numberOfChapters: number
|
|
23893
|
+
isApocryphal?: boolean | null
|
|
20827
23894
|
sha256?: string | null
|
|
20828
23895
|
translation: TranslationCreateNestedOneWithoutBooksInput
|
|
20829
23896
|
chapters?: ChapterCreateNestedManyWithoutBookInput
|
|
@@ -20839,6 +23906,7 @@ export namespace Prisma {
|
|
|
20839
23906
|
title?: string | null
|
|
20840
23907
|
order: number
|
|
20841
23908
|
numberOfChapters: number
|
|
23909
|
+
isApocryphal?: boolean | null
|
|
20842
23910
|
sha256?: string | null
|
|
20843
23911
|
chapters?: ChapterUncheckedCreateNestedManyWithoutBookInput
|
|
20844
23912
|
verses?: ChapterVerseUncheckedCreateNestedManyWithoutBookInput
|
|
@@ -20963,6 +24031,7 @@ export namespace Prisma {
|
|
|
20963
24031
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20964
24032
|
order?: IntFieldUpdateOperationsInput | number
|
|
20965
24033
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
24034
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
20966
24035
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20967
24036
|
translation?: TranslationUpdateOneRequiredWithoutBooksNestedInput
|
|
20968
24037
|
chapters?: ChapterUpdateManyWithoutBookNestedInput
|
|
@@ -20978,6 +24047,7 @@ export namespace Prisma {
|
|
|
20978
24047
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20979
24048
|
order?: IntFieldUpdateOperationsInput | number
|
|
20980
24049
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
24050
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
20981
24051
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20982
24052
|
chapters?: ChapterUncheckedUpdateManyWithoutBookNestedInput
|
|
20983
24053
|
verses?: ChapterVerseUncheckedUpdateManyWithoutBookNestedInput
|
|
@@ -21067,6 +24137,7 @@ export namespace Prisma {
|
|
|
21067
24137
|
title?: string | null
|
|
21068
24138
|
order: number
|
|
21069
24139
|
numberOfChapters: number
|
|
24140
|
+
isApocryphal?: boolean | null
|
|
21070
24141
|
sha256?: string | null
|
|
21071
24142
|
}
|
|
21072
24143
|
|
|
@@ -21109,6 +24180,7 @@ export namespace Prisma {
|
|
|
21109
24180
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21110
24181
|
order?: IntFieldUpdateOperationsInput | number
|
|
21111
24182
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
24183
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
21112
24184
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21113
24185
|
chapters?: ChapterUpdateManyWithoutBookNestedInput
|
|
21114
24186
|
verses?: ChapterVerseUpdateManyWithoutBookNestedInput
|
|
@@ -21123,6 +24195,7 @@ export namespace Prisma {
|
|
|
21123
24195
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21124
24196
|
order?: IntFieldUpdateOperationsInput | number
|
|
21125
24197
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
24198
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
21126
24199
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21127
24200
|
chapters?: ChapterUncheckedUpdateManyWithoutBookNestedInput
|
|
21128
24201
|
verses?: ChapterVerseUncheckedUpdateManyWithoutBookNestedInput
|
|
@@ -21137,6 +24210,7 @@ export namespace Prisma {
|
|
|
21137
24210
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21138
24211
|
order?: IntFieldUpdateOperationsInput | number
|
|
21139
24212
|
numberOfChapters?: IntFieldUpdateOperationsInput | number
|
|
24213
|
+
isApocryphal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
21140
24214
|
sha256?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21141
24215
|
}
|
|
21142
24216
|
|
|
@@ -21784,10 +24858,18 @@ export namespace Prisma {
|
|
|
21784
24858
|
* @deprecated Use CommentaryDefaultArgs instead
|
|
21785
24859
|
*/
|
|
21786
24860
|
export type CommentaryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CommentaryDefaultArgs<ExtArgs>
|
|
24861
|
+
/**
|
|
24862
|
+
* @deprecated Use EBibleSourceDefaultArgs instead
|
|
24863
|
+
*/
|
|
24864
|
+
export type EBibleSourceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EBibleSourceDefaultArgs<ExtArgs>
|
|
21787
24865
|
/**
|
|
21788
24866
|
* @deprecated Use InputFileDefaultArgs instead
|
|
21789
24867
|
*/
|
|
21790
24868
|
export type InputFileArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = InputFileDefaultArgs<ExtArgs>
|
|
24869
|
+
/**
|
|
24870
|
+
* @deprecated Use InputFileWarningDefaultArgs instead
|
|
24871
|
+
*/
|
|
24872
|
+
export type InputFileWarningArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = InputFileWarningDefaultArgs<ExtArgs>
|
|
21791
24873
|
/**
|
|
21792
24874
|
* @deprecated Use BookDefaultArgs instead
|
|
21793
24875
|
*/
|