@helloao/cli 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +138 -136
- package/dist/cjs/cli.cjs +8049 -12681
- package/dist/cjs/index.cjs +7628 -12571
- package/dist/esm/cli.js +5699 -0
- package/dist/esm/cli.js.map +7 -0
- package/dist/esm/index.js +1972 -6262
- package/dist/esm/index.js.map +4 -4
- package/dist/types/actions.d.ts +71 -0
- package/dist/types/db.d.ts +12 -8
- package/dist/types/ebible.d.ts +1 -1
- package/dist/types/files.d.ts +12 -1
- package/dist/types/openapi.d.ts +2 -0
- package/dist/types/prisma-gen/browser.d.ts +110 -0
- package/dist/types/prisma-gen/client.d.ts +129 -0
- package/dist/types/prisma-gen/commonInputTypes.d.ts +378 -0
- package/dist/types/prisma-gen/enums.d.ts +2 -0
- package/dist/types/prisma-gen/internal/class.d.ts +353 -0
- package/dist/types/prisma-gen/internal/prismaNamespace.d.ts +2273 -0
- package/dist/types/prisma-gen/internal/prismaNamespaceBrowser.d.ts +294 -0
- package/dist/types/prisma-gen/models/Book.d.ts +2197 -0
- package/dist/types/prisma-gen/models/Chapter.d.ts +1934 -0
- package/dist/types/prisma-gen/models/ChapterAudioTiming.d.ts +1414 -0
- package/dist/types/prisma-gen/models/ChapterAudioUrl.d.ts +1414 -0
- package/dist/types/prisma-gen/models/ChapterFootnote.d.ts +1642 -0
- package/dist/types/prisma-gen/models/ChapterVerse.d.ts +1653 -0
- package/dist/types/prisma-gen/models/ChapterWords.d.ts +1366 -0
- package/dist/types/prisma-gen/models/Commentary.d.ts +1711 -0
- package/dist/types/prisma-gen/models/CommentaryBook.d.ts +1622 -0
- package/dist/types/prisma-gen/models/CommentaryChapter.d.ts +1487 -0
- package/dist/types/prisma-gen/models/CommentaryChapterVerse.d.ts +1514 -0
- package/dist/types/prisma-gen/models/CommentaryProfile.d.ts +1451 -0
- package/dist/types/prisma-gen/models/Dataset.d.ts +1667 -0
- package/dist/types/prisma-gen/models/DatasetBook.d.ts +1565 -0
- package/dist/types/prisma-gen/models/DatasetChapter.d.ts +1553 -0
- package/dist/types/prisma-gen/models/DatasetChapterVerse.d.ts +1600 -0
- package/dist/types/prisma-gen/models/DatasetReference.d.ts +1789 -0
- package/dist/types/prisma-gen/models/EBibleSource.d.ts +1686 -0
- package/dist/types/prisma-gen/models/InputFile.d.ts +1039 -0
- package/dist/types/prisma-gen/models/InputFileWarning.d.ts +946 -0
- package/dist/types/prisma-gen/models/Translation.d.ts +2238 -0
- package/dist/types/prisma-gen/models.d.ts +23 -0
- package/dist/types/s3.d.ts +2 -0
- package/dist/types/uploads.d.ts +7 -1
- package/migrations/20260217200934_add_license_notice/migration.sql +5 -0
- package/migrations/20260703000000_add_chapter_audio_timing/migration.sql +13 -0
- package/migrations/20260809000000_add_chapter_words/migration.sql +12 -0
- package/package.json +23 -17
- package/schema.prisma +43 -2
- package/prisma-gen/client.d.ts +0 -1
- package/prisma-gen/client.js +0 -4
- package/prisma-gen/default.d.ts +0 -1
- package/prisma-gen/default.js +0 -1
- package/prisma-gen/edge.d.ts +0 -1
- package/prisma-gen/edge.js +0 -401
- package/prisma-gen/index-browser.js +0 -395
- package/prisma-gen/index.d.ts +0 -33919
- package/prisma-gen/index.js +0 -424
- package/prisma-gen/runtime/edge-esm.js +0 -31
- package/prisma-gen/runtime/edge.js +0 -31
- package/prisma-gen/runtime/index-browser.d.ts +0 -365
- package/prisma-gen/runtime/index-browser.js +0 -13
- package/prisma-gen/runtime/library.d.ts +0 -3403
- package/prisma-gen/runtime/library.js +0 -143
- package/prisma-gen/runtime/react-native.js +0 -80
- package/prisma-gen/runtime/wasm.js +0 -32
- package/prisma-gen/wasm.d.ts +0 -1
- package/prisma-gen/wasm.js +0 -395
|
@@ -0,0 +1,2273 @@
|
|
|
1
|
+
import * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../models";
|
|
3
|
+
import { type PrismaClient } from "./class";
|
|
4
|
+
export type * from '../models';
|
|
5
|
+
export type DMMF = typeof runtime.DMMF;
|
|
6
|
+
export type PrismaPromise<T> = runtime.Types.Public.PrismaPromise<T>;
|
|
7
|
+
/**
|
|
8
|
+
* Prisma Errors
|
|
9
|
+
*/
|
|
10
|
+
export declare const PrismaClientKnownRequestError: typeof runtime.PrismaClientKnownRequestError;
|
|
11
|
+
export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError;
|
|
12
|
+
export declare const PrismaClientUnknownRequestError: typeof runtime.PrismaClientUnknownRequestError;
|
|
13
|
+
export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError;
|
|
14
|
+
export declare const PrismaClientRustPanicError: typeof runtime.PrismaClientRustPanicError;
|
|
15
|
+
export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError;
|
|
16
|
+
export declare const PrismaClientInitializationError: typeof runtime.PrismaClientInitializationError;
|
|
17
|
+
export type PrismaClientInitializationError = runtime.PrismaClientInitializationError;
|
|
18
|
+
export declare const PrismaClientValidationError: typeof runtime.PrismaClientValidationError;
|
|
19
|
+
export type PrismaClientValidationError = runtime.PrismaClientValidationError;
|
|
20
|
+
/**
|
|
21
|
+
* Re-export of sql-template-tag
|
|
22
|
+
*/
|
|
23
|
+
export declare const sql: typeof runtime.sqltag;
|
|
24
|
+
export declare const empty: runtime.Sql;
|
|
25
|
+
export declare const join: typeof runtime.join;
|
|
26
|
+
export declare const raw: typeof runtime.raw;
|
|
27
|
+
export declare const Sql: typeof runtime.Sql;
|
|
28
|
+
export type Sql = runtime.Sql;
|
|
29
|
+
/**
|
|
30
|
+
* Decimal.js
|
|
31
|
+
*/
|
|
32
|
+
export declare const Decimal: typeof runtime.Decimal;
|
|
33
|
+
export type Decimal = runtime.Decimal;
|
|
34
|
+
export type DecimalJsLike = runtime.DecimalJsLike;
|
|
35
|
+
/**
|
|
36
|
+
* Extensions
|
|
37
|
+
*/
|
|
38
|
+
export type Extension = runtime.Types.Extensions.UserArgs;
|
|
39
|
+
export declare const getExtensionContext: typeof runtime.Extensions.getExtensionContext;
|
|
40
|
+
export type Args<T, F extends runtime.Operation> = runtime.Types.Public.Args<T, F>;
|
|
41
|
+
export type Payload<T, F extends runtime.Operation = never> = runtime.Types.Public.Payload<T, F>;
|
|
42
|
+
export type Result<T, A, F extends runtime.Operation> = runtime.Types.Public.Result<T, A, F>;
|
|
43
|
+
export type Exact<A, W> = runtime.Types.Public.Exact<A, W>;
|
|
44
|
+
export type PrismaVersion = {
|
|
45
|
+
client: string;
|
|
46
|
+
engine: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Prisma Client JS version: 7.8.0
|
|
50
|
+
* Query Engine version: 3c6e192761c0362d496ed980de936e2f3cebcd3a
|
|
51
|
+
*/
|
|
52
|
+
export declare const prismaVersion: PrismaVersion;
|
|
53
|
+
/**
|
|
54
|
+
* Utility Types
|
|
55
|
+
*/
|
|
56
|
+
export type Bytes = runtime.Bytes;
|
|
57
|
+
export type JsonObject = runtime.JsonObject;
|
|
58
|
+
export type JsonArray = runtime.JsonArray;
|
|
59
|
+
export type JsonValue = runtime.JsonValue;
|
|
60
|
+
export type InputJsonObject = runtime.InputJsonObject;
|
|
61
|
+
export type InputJsonArray = runtime.InputJsonArray;
|
|
62
|
+
export type InputJsonValue = runtime.InputJsonValue;
|
|
63
|
+
export declare const NullTypes: {
|
|
64
|
+
DbNull: (new (secret: never) => typeof runtime.DbNull);
|
|
65
|
+
JsonNull: (new (secret: never) => typeof runtime.JsonNull);
|
|
66
|
+
AnyNull: (new (secret: never) => typeof runtime.AnyNull);
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
|
70
|
+
*
|
|
71
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
72
|
+
*/
|
|
73
|
+
export declare const DbNull: runtime.DbNullClass;
|
|
74
|
+
/**
|
|
75
|
+
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
|
76
|
+
*
|
|
77
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
78
|
+
*/
|
|
79
|
+
export declare const JsonNull: runtime.JsonNullClass;
|
|
80
|
+
/**
|
|
81
|
+
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
|
82
|
+
*
|
|
83
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
84
|
+
*/
|
|
85
|
+
export declare const AnyNull: runtime.AnyNullClass;
|
|
86
|
+
type SelectAndInclude = {
|
|
87
|
+
select: any;
|
|
88
|
+
include: any;
|
|
89
|
+
};
|
|
90
|
+
type SelectAndOmit = {
|
|
91
|
+
select: any;
|
|
92
|
+
omit: any;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
96
|
+
*/
|
|
97
|
+
type Prisma__Pick<T, K extends keyof T> = {
|
|
98
|
+
[P in K]: T[P];
|
|
99
|
+
};
|
|
100
|
+
export type Enumerable<T> = T | Array<T>;
|
|
101
|
+
/**
|
|
102
|
+
* Subset
|
|
103
|
+
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection
|
|
104
|
+
*/
|
|
105
|
+
export type Subset<T, U> = {
|
|
106
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* SelectSubset
|
|
110
|
+
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection.
|
|
111
|
+
* Additionally, it validates, if both select and include are present. If the case, it errors.
|
|
112
|
+
*/
|
|
113
|
+
export type SelectSubset<T, U> = {
|
|
114
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
115
|
+
} & (T extends SelectAndInclude ? 'Please either choose `select` or `include`.' : T extends SelectAndOmit ? 'Please either choose `select` or `omit`.' : {});
|
|
116
|
+
/**
|
|
117
|
+
* Subset + Intersection
|
|
118
|
+
* @desc From `T` pick properties that exist in `U` and intersect `K`
|
|
119
|
+
*/
|
|
120
|
+
export type SubsetIntersection<T, U, K> = {
|
|
121
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
122
|
+
} & K;
|
|
123
|
+
type Without<T, U> = {
|
|
124
|
+
[P in Exclude<keyof T, keyof U>]?: never;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* XOR is needed to have a real mutually exclusive union type
|
|
128
|
+
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
|
129
|
+
*/
|
|
130
|
+
export type XOR<T, U> = T extends object ? U extends object ? (Without<T, U> & U) | (Without<U, T> & T) : U : T;
|
|
131
|
+
/**
|
|
132
|
+
* Is T a Record?
|
|
133
|
+
*/
|
|
134
|
+
type IsObject<T extends any> = T extends Array<any> ? False : T extends Date ? False : T extends Uint8Array ? False : T extends BigInt ? False : T extends object ? True : False;
|
|
135
|
+
/**
|
|
136
|
+
* If it's T[], return T
|
|
137
|
+
*/
|
|
138
|
+
export type UnEnumerate<T extends unknown> = T extends Array<infer U> ? U : T;
|
|
139
|
+
/**
|
|
140
|
+
* From ts-toolbelt
|
|
141
|
+
*/
|
|
142
|
+
type __Either<O extends object, K extends Key> = Omit<O, K> & {
|
|
143
|
+
[P in K]: Prisma__Pick<O, P & keyof O>;
|
|
144
|
+
}[K];
|
|
145
|
+
type EitherStrict<O extends object, K extends Key> = Strict<__Either<O, K>>;
|
|
146
|
+
type EitherLoose<O extends object, K extends Key> = ComputeRaw<__Either<O, K>>;
|
|
147
|
+
type _Either<O extends object, K extends Key, strict extends Boolean> = {
|
|
148
|
+
1: EitherStrict<O, K>;
|
|
149
|
+
0: EitherLoose<O, K>;
|
|
150
|
+
}[strict];
|
|
151
|
+
export type Either<O extends object, K extends Key, strict extends Boolean = 1> = O extends unknown ? _Either<O, K, strict> : never;
|
|
152
|
+
export type Union = any;
|
|
153
|
+
export type PatchUndefined<O extends object, O1 extends object> = {
|
|
154
|
+
[K in keyof O]: O[K] extends undefined ? At<O1, K> : O[K];
|
|
155
|
+
} & {};
|
|
156
|
+
/** Helper Types for "Merge" **/
|
|
157
|
+
export type IntersectOf<U extends Union> = (U extends unknown ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
|
|
158
|
+
export type Overwrite<O extends object, O1 extends object> = {
|
|
159
|
+
[K in keyof O]: K extends keyof O1 ? O1[K] : O[K];
|
|
160
|
+
} & {};
|
|
161
|
+
type _Merge<U extends object> = IntersectOf<Overwrite<U, {
|
|
162
|
+
[K in keyof U]-?: At<U, K>;
|
|
163
|
+
}>>;
|
|
164
|
+
type Key = string | number | symbol;
|
|
165
|
+
type AtStrict<O extends object, K extends Key> = O[K & keyof O];
|
|
166
|
+
type AtLoose<O extends object, K extends Key> = O extends unknown ? AtStrict<O, K> : never;
|
|
167
|
+
export type At<O extends object, K extends Key, strict extends Boolean = 1> = {
|
|
168
|
+
1: AtStrict<O, K>;
|
|
169
|
+
0: AtLoose<O, K>;
|
|
170
|
+
}[strict];
|
|
171
|
+
export type ComputeRaw<A extends any> = A extends Function ? A : {
|
|
172
|
+
[K in keyof A]: A[K];
|
|
173
|
+
} & {};
|
|
174
|
+
export type OptionalFlat<O> = {
|
|
175
|
+
[K in keyof O]?: O[K];
|
|
176
|
+
} & {};
|
|
177
|
+
type _Record<K extends keyof any, T> = {
|
|
178
|
+
[P in K]: T;
|
|
179
|
+
};
|
|
180
|
+
type NoExpand<T> = T extends unknown ? T : never;
|
|
181
|
+
export type AtLeast<O extends object, K extends string> = NoExpand<O extends unknown ? (K extends keyof O ? {
|
|
182
|
+
[P in K]: O[P];
|
|
183
|
+
} & O : O) | {
|
|
184
|
+
[P in keyof O as P extends K ? P : never]-?: O[P];
|
|
185
|
+
} & O : never>;
|
|
186
|
+
type _Strict<U, _U = U> = U extends unknown ? U & OptionalFlat<_Record<Exclude<Keys<_U>, keyof U>, never>> : never;
|
|
187
|
+
export type Strict<U extends object> = ComputeRaw<_Strict<U>>;
|
|
188
|
+
/** End Helper Types for "Merge" **/
|
|
189
|
+
export type Merge<U extends object> = ComputeRaw<_Merge<Strict<U>>>;
|
|
190
|
+
export type Boolean = True | False;
|
|
191
|
+
export type True = 1;
|
|
192
|
+
export type False = 0;
|
|
193
|
+
export type Not<B extends Boolean> = {
|
|
194
|
+
0: 1;
|
|
195
|
+
1: 0;
|
|
196
|
+
}[B];
|
|
197
|
+
export type Extends<A1 extends any, A2 extends any> = [A1] extends [never] ? 0 : A1 extends A2 ? 1 : 0;
|
|
198
|
+
export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
|
|
199
|
+
export type Or<B1 extends Boolean, B2 extends Boolean> = {
|
|
200
|
+
0: {
|
|
201
|
+
0: 0;
|
|
202
|
+
1: 1;
|
|
203
|
+
};
|
|
204
|
+
1: {
|
|
205
|
+
0: 1;
|
|
206
|
+
1: 1;
|
|
207
|
+
};
|
|
208
|
+
}[B1][B2];
|
|
209
|
+
export type Keys<U extends Union> = U extends unknown ? keyof U : never;
|
|
210
|
+
export type GetScalarType<T, O> = O extends object ? {
|
|
211
|
+
[P in keyof T]: P extends keyof O ? O[P] : never;
|
|
212
|
+
} : never;
|
|
213
|
+
type FieldPaths<T, U = Omit<T, '_avg' | '_sum' | '_count' | '_min' | '_max'>> = IsObject<T> extends True ? U : T;
|
|
214
|
+
export type GetHavingFields<T> = {
|
|
215
|
+
[K in keyof T]: Or<Or<Extends<'OR', K>, Extends<'AND', K>>, Extends<'NOT', K>> extends True ? T[K] extends infer TK ? GetHavingFields<UnEnumerate<TK> extends object ? Merge<UnEnumerate<TK>> : never> : never : {} extends FieldPaths<T[K]> ? never : K;
|
|
216
|
+
}[keyof T];
|
|
217
|
+
/**
|
|
218
|
+
* Convert tuple to union
|
|
219
|
+
*/
|
|
220
|
+
type _TupleToUnion<T> = T extends (infer E)[] ? E : never;
|
|
221
|
+
type TupleToUnion<K extends readonly any[]> = _TupleToUnion<K>;
|
|
222
|
+
export type MaybeTupleToUnion<T> = T extends any[] ? TupleToUnion<T> : T;
|
|
223
|
+
/**
|
|
224
|
+
* Like `Pick`, but additionally can also accept an array of keys
|
|
225
|
+
*/
|
|
226
|
+
export type PickEnumerable<T, K extends Enumerable<keyof T> | keyof T> = Prisma__Pick<T, MaybeTupleToUnion<K>>;
|
|
227
|
+
/**
|
|
228
|
+
* Exclude all keys with underscores
|
|
229
|
+
*/
|
|
230
|
+
export type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T;
|
|
231
|
+
export type FieldRef<Model, FieldType> = runtime.FieldRef<Model, FieldType>;
|
|
232
|
+
type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>;
|
|
233
|
+
export declare const ModelName: {
|
|
234
|
+
readonly Translation: "Translation";
|
|
235
|
+
readonly Commentary: "Commentary";
|
|
236
|
+
readonly EBibleSource: "EBibleSource";
|
|
237
|
+
readonly InputFile: "InputFile";
|
|
238
|
+
readonly InputFileWarning: "InputFileWarning";
|
|
239
|
+
readonly Book: "Book";
|
|
240
|
+
readonly CommentaryBook: "CommentaryBook";
|
|
241
|
+
readonly CommentaryProfile: "CommentaryProfile";
|
|
242
|
+
readonly Chapter: "Chapter";
|
|
243
|
+
readonly CommentaryChapter: "CommentaryChapter";
|
|
244
|
+
readonly ChapterAudioUrl: "ChapterAudioUrl";
|
|
245
|
+
readonly ChapterAudioTiming: "ChapterAudioTiming";
|
|
246
|
+
readonly ChapterWords: "ChapterWords";
|
|
247
|
+
readonly ChapterVerse: "ChapterVerse";
|
|
248
|
+
readonly CommentaryChapterVerse: "CommentaryChapterVerse";
|
|
249
|
+
readonly ChapterFootnote: "ChapterFootnote";
|
|
250
|
+
readonly Dataset: "Dataset";
|
|
251
|
+
readonly DatasetBook: "DatasetBook";
|
|
252
|
+
readonly DatasetChapter: "DatasetChapter";
|
|
253
|
+
readonly DatasetChapterVerse: "DatasetChapterVerse";
|
|
254
|
+
readonly DatasetReference: "DatasetReference";
|
|
255
|
+
};
|
|
256
|
+
export type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
257
|
+
export interface TypeMapCb<GlobalOmitOptions = {}> extends runtime.Types.Utils.Fn<{
|
|
258
|
+
extArgs: runtime.Types.Extensions.InternalArgs;
|
|
259
|
+
}, runtime.Types.Utils.Record<string, any>> {
|
|
260
|
+
returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>;
|
|
261
|
+
}
|
|
262
|
+
export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
|
|
263
|
+
globalOmitOptions: {
|
|
264
|
+
omit: GlobalOmitOptions;
|
|
265
|
+
};
|
|
266
|
+
meta: {
|
|
267
|
+
modelProps: "translation" | "commentary" | "eBibleSource" | "inputFile" | "inputFileWarning" | "book" | "commentaryBook" | "commentaryProfile" | "chapter" | "commentaryChapter" | "chapterAudioUrl" | "chapterAudioTiming" | "chapterWords" | "chapterVerse" | "commentaryChapterVerse" | "chapterFootnote" | "dataset" | "datasetBook" | "datasetChapter" | "datasetChapterVerse" | "datasetReference";
|
|
268
|
+
txIsolationLevel: TransactionIsolationLevel;
|
|
269
|
+
};
|
|
270
|
+
model: {
|
|
271
|
+
Translation: {
|
|
272
|
+
payload: Prisma.$TranslationPayload<ExtArgs>;
|
|
273
|
+
fields: Prisma.TranslationFieldRefs;
|
|
274
|
+
operations: {
|
|
275
|
+
findUnique: {
|
|
276
|
+
args: Prisma.TranslationFindUniqueArgs<ExtArgs>;
|
|
277
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload> | null;
|
|
278
|
+
};
|
|
279
|
+
findUniqueOrThrow: {
|
|
280
|
+
args: Prisma.TranslationFindUniqueOrThrowArgs<ExtArgs>;
|
|
281
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>;
|
|
282
|
+
};
|
|
283
|
+
findFirst: {
|
|
284
|
+
args: Prisma.TranslationFindFirstArgs<ExtArgs>;
|
|
285
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload> | null;
|
|
286
|
+
};
|
|
287
|
+
findFirstOrThrow: {
|
|
288
|
+
args: Prisma.TranslationFindFirstOrThrowArgs<ExtArgs>;
|
|
289
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>;
|
|
290
|
+
};
|
|
291
|
+
findMany: {
|
|
292
|
+
args: Prisma.TranslationFindManyArgs<ExtArgs>;
|
|
293
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>[];
|
|
294
|
+
};
|
|
295
|
+
create: {
|
|
296
|
+
args: Prisma.TranslationCreateArgs<ExtArgs>;
|
|
297
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>;
|
|
298
|
+
};
|
|
299
|
+
createMany: {
|
|
300
|
+
args: Prisma.TranslationCreateManyArgs<ExtArgs>;
|
|
301
|
+
result: BatchPayload;
|
|
302
|
+
};
|
|
303
|
+
createManyAndReturn: {
|
|
304
|
+
args: Prisma.TranslationCreateManyAndReturnArgs<ExtArgs>;
|
|
305
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>[];
|
|
306
|
+
};
|
|
307
|
+
delete: {
|
|
308
|
+
args: Prisma.TranslationDeleteArgs<ExtArgs>;
|
|
309
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>;
|
|
310
|
+
};
|
|
311
|
+
update: {
|
|
312
|
+
args: Prisma.TranslationUpdateArgs<ExtArgs>;
|
|
313
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>;
|
|
314
|
+
};
|
|
315
|
+
deleteMany: {
|
|
316
|
+
args: Prisma.TranslationDeleteManyArgs<ExtArgs>;
|
|
317
|
+
result: BatchPayload;
|
|
318
|
+
};
|
|
319
|
+
updateMany: {
|
|
320
|
+
args: Prisma.TranslationUpdateManyArgs<ExtArgs>;
|
|
321
|
+
result: BatchPayload;
|
|
322
|
+
};
|
|
323
|
+
updateManyAndReturn: {
|
|
324
|
+
args: Prisma.TranslationUpdateManyAndReturnArgs<ExtArgs>;
|
|
325
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>[];
|
|
326
|
+
};
|
|
327
|
+
upsert: {
|
|
328
|
+
args: Prisma.TranslationUpsertArgs<ExtArgs>;
|
|
329
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TranslationPayload>;
|
|
330
|
+
};
|
|
331
|
+
aggregate: {
|
|
332
|
+
args: Prisma.TranslationAggregateArgs<ExtArgs>;
|
|
333
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateTranslation>;
|
|
334
|
+
};
|
|
335
|
+
groupBy: {
|
|
336
|
+
args: Prisma.TranslationGroupByArgs<ExtArgs>;
|
|
337
|
+
result: runtime.Types.Utils.Optional<Prisma.TranslationGroupByOutputType>[];
|
|
338
|
+
};
|
|
339
|
+
count: {
|
|
340
|
+
args: Prisma.TranslationCountArgs<ExtArgs>;
|
|
341
|
+
result: runtime.Types.Utils.Optional<Prisma.TranslationCountAggregateOutputType> | number;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
Commentary: {
|
|
346
|
+
payload: Prisma.$CommentaryPayload<ExtArgs>;
|
|
347
|
+
fields: Prisma.CommentaryFieldRefs;
|
|
348
|
+
operations: {
|
|
349
|
+
findUnique: {
|
|
350
|
+
args: Prisma.CommentaryFindUniqueArgs<ExtArgs>;
|
|
351
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload> | null;
|
|
352
|
+
};
|
|
353
|
+
findUniqueOrThrow: {
|
|
354
|
+
args: Prisma.CommentaryFindUniqueOrThrowArgs<ExtArgs>;
|
|
355
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>;
|
|
356
|
+
};
|
|
357
|
+
findFirst: {
|
|
358
|
+
args: Prisma.CommentaryFindFirstArgs<ExtArgs>;
|
|
359
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload> | null;
|
|
360
|
+
};
|
|
361
|
+
findFirstOrThrow: {
|
|
362
|
+
args: Prisma.CommentaryFindFirstOrThrowArgs<ExtArgs>;
|
|
363
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>;
|
|
364
|
+
};
|
|
365
|
+
findMany: {
|
|
366
|
+
args: Prisma.CommentaryFindManyArgs<ExtArgs>;
|
|
367
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>[];
|
|
368
|
+
};
|
|
369
|
+
create: {
|
|
370
|
+
args: Prisma.CommentaryCreateArgs<ExtArgs>;
|
|
371
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>;
|
|
372
|
+
};
|
|
373
|
+
createMany: {
|
|
374
|
+
args: Prisma.CommentaryCreateManyArgs<ExtArgs>;
|
|
375
|
+
result: BatchPayload;
|
|
376
|
+
};
|
|
377
|
+
createManyAndReturn: {
|
|
378
|
+
args: Prisma.CommentaryCreateManyAndReturnArgs<ExtArgs>;
|
|
379
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>[];
|
|
380
|
+
};
|
|
381
|
+
delete: {
|
|
382
|
+
args: Prisma.CommentaryDeleteArgs<ExtArgs>;
|
|
383
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>;
|
|
384
|
+
};
|
|
385
|
+
update: {
|
|
386
|
+
args: Prisma.CommentaryUpdateArgs<ExtArgs>;
|
|
387
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>;
|
|
388
|
+
};
|
|
389
|
+
deleteMany: {
|
|
390
|
+
args: Prisma.CommentaryDeleteManyArgs<ExtArgs>;
|
|
391
|
+
result: BatchPayload;
|
|
392
|
+
};
|
|
393
|
+
updateMany: {
|
|
394
|
+
args: Prisma.CommentaryUpdateManyArgs<ExtArgs>;
|
|
395
|
+
result: BatchPayload;
|
|
396
|
+
};
|
|
397
|
+
updateManyAndReturn: {
|
|
398
|
+
args: Prisma.CommentaryUpdateManyAndReturnArgs<ExtArgs>;
|
|
399
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>[];
|
|
400
|
+
};
|
|
401
|
+
upsert: {
|
|
402
|
+
args: Prisma.CommentaryUpsertArgs<ExtArgs>;
|
|
403
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryPayload>;
|
|
404
|
+
};
|
|
405
|
+
aggregate: {
|
|
406
|
+
args: Prisma.CommentaryAggregateArgs<ExtArgs>;
|
|
407
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateCommentary>;
|
|
408
|
+
};
|
|
409
|
+
groupBy: {
|
|
410
|
+
args: Prisma.CommentaryGroupByArgs<ExtArgs>;
|
|
411
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryGroupByOutputType>[];
|
|
412
|
+
};
|
|
413
|
+
count: {
|
|
414
|
+
args: Prisma.CommentaryCountArgs<ExtArgs>;
|
|
415
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryCountAggregateOutputType> | number;
|
|
416
|
+
};
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
EBibleSource: {
|
|
420
|
+
payload: Prisma.$EBibleSourcePayload<ExtArgs>;
|
|
421
|
+
fields: Prisma.EBibleSourceFieldRefs;
|
|
422
|
+
operations: {
|
|
423
|
+
findUnique: {
|
|
424
|
+
args: Prisma.EBibleSourceFindUniqueArgs<ExtArgs>;
|
|
425
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload> | null;
|
|
426
|
+
};
|
|
427
|
+
findUniqueOrThrow: {
|
|
428
|
+
args: Prisma.EBibleSourceFindUniqueOrThrowArgs<ExtArgs>;
|
|
429
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>;
|
|
430
|
+
};
|
|
431
|
+
findFirst: {
|
|
432
|
+
args: Prisma.EBibleSourceFindFirstArgs<ExtArgs>;
|
|
433
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload> | null;
|
|
434
|
+
};
|
|
435
|
+
findFirstOrThrow: {
|
|
436
|
+
args: Prisma.EBibleSourceFindFirstOrThrowArgs<ExtArgs>;
|
|
437
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>;
|
|
438
|
+
};
|
|
439
|
+
findMany: {
|
|
440
|
+
args: Prisma.EBibleSourceFindManyArgs<ExtArgs>;
|
|
441
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>[];
|
|
442
|
+
};
|
|
443
|
+
create: {
|
|
444
|
+
args: Prisma.EBibleSourceCreateArgs<ExtArgs>;
|
|
445
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>;
|
|
446
|
+
};
|
|
447
|
+
createMany: {
|
|
448
|
+
args: Prisma.EBibleSourceCreateManyArgs<ExtArgs>;
|
|
449
|
+
result: BatchPayload;
|
|
450
|
+
};
|
|
451
|
+
createManyAndReturn: {
|
|
452
|
+
args: Prisma.EBibleSourceCreateManyAndReturnArgs<ExtArgs>;
|
|
453
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>[];
|
|
454
|
+
};
|
|
455
|
+
delete: {
|
|
456
|
+
args: Prisma.EBibleSourceDeleteArgs<ExtArgs>;
|
|
457
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>;
|
|
458
|
+
};
|
|
459
|
+
update: {
|
|
460
|
+
args: Prisma.EBibleSourceUpdateArgs<ExtArgs>;
|
|
461
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>;
|
|
462
|
+
};
|
|
463
|
+
deleteMany: {
|
|
464
|
+
args: Prisma.EBibleSourceDeleteManyArgs<ExtArgs>;
|
|
465
|
+
result: BatchPayload;
|
|
466
|
+
};
|
|
467
|
+
updateMany: {
|
|
468
|
+
args: Prisma.EBibleSourceUpdateManyArgs<ExtArgs>;
|
|
469
|
+
result: BatchPayload;
|
|
470
|
+
};
|
|
471
|
+
updateManyAndReturn: {
|
|
472
|
+
args: Prisma.EBibleSourceUpdateManyAndReturnArgs<ExtArgs>;
|
|
473
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>[];
|
|
474
|
+
};
|
|
475
|
+
upsert: {
|
|
476
|
+
args: Prisma.EBibleSourceUpsertArgs<ExtArgs>;
|
|
477
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$EBibleSourcePayload>;
|
|
478
|
+
};
|
|
479
|
+
aggregate: {
|
|
480
|
+
args: Prisma.EBibleSourceAggregateArgs<ExtArgs>;
|
|
481
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateEBibleSource>;
|
|
482
|
+
};
|
|
483
|
+
groupBy: {
|
|
484
|
+
args: Prisma.EBibleSourceGroupByArgs<ExtArgs>;
|
|
485
|
+
result: runtime.Types.Utils.Optional<Prisma.EBibleSourceGroupByOutputType>[];
|
|
486
|
+
};
|
|
487
|
+
count: {
|
|
488
|
+
args: Prisma.EBibleSourceCountArgs<ExtArgs>;
|
|
489
|
+
result: runtime.Types.Utils.Optional<Prisma.EBibleSourceCountAggregateOutputType> | number;
|
|
490
|
+
};
|
|
491
|
+
};
|
|
492
|
+
};
|
|
493
|
+
InputFile: {
|
|
494
|
+
payload: Prisma.$InputFilePayload<ExtArgs>;
|
|
495
|
+
fields: Prisma.InputFileFieldRefs;
|
|
496
|
+
operations: {
|
|
497
|
+
findUnique: {
|
|
498
|
+
args: Prisma.InputFileFindUniqueArgs<ExtArgs>;
|
|
499
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload> | null;
|
|
500
|
+
};
|
|
501
|
+
findUniqueOrThrow: {
|
|
502
|
+
args: Prisma.InputFileFindUniqueOrThrowArgs<ExtArgs>;
|
|
503
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>;
|
|
504
|
+
};
|
|
505
|
+
findFirst: {
|
|
506
|
+
args: Prisma.InputFileFindFirstArgs<ExtArgs>;
|
|
507
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload> | null;
|
|
508
|
+
};
|
|
509
|
+
findFirstOrThrow: {
|
|
510
|
+
args: Prisma.InputFileFindFirstOrThrowArgs<ExtArgs>;
|
|
511
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>;
|
|
512
|
+
};
|
|
513
|
+
findMany: {
|
|
514
|
+
args: Prisma.InputFileFindManyArgs<ExtArgs>;
|
|
515
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>[];
|
|
516
|
+
};
|
|
517
|
+
create: {
|
|
518
|
+
args: Prisma.InputFileCreateArgs<ExtArgs>;
|
|
519
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>;
|
|
520
|
+
};
|
|
521
|
+
createMany: {
|
|
522
|
+
args: Prisma.InputFileCreateManyArgs<ExtArgs>;
|
|
523
|
+
result: BatchPayload;
|
|
524
|
+
};
|
|
525
|
+
createManyAndReturn: {
|
|
526
|
+
args: Prisma.InputFileCreateManyAndReturnArgs<ExtArgs>;
|
|
527
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>[];
|
|
528
|
+
};
|
|
529
|
+
delete: {
|
|
530
|
+
args: Prisma.InputFileDeleteArgs<ExtArgs>;
|
|
531
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>;
|
|
532
|
+
};
|
|
533
|
+
update: {
|
|
534
|
+
args: Prisma.InputFileUpdateArgs<ExtArgs>;
|
|
535
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>;
|
|
536
|
+
};
|
|
537
|
+
deleteMany: {
|
|
538
|
+
args: Prisma.InputFileDeleteManyArgs<ExtArgs>;
|
|
539
|
+
result: BatchPayload;
|
|
540
|
+
};
|
|
541
|
+
updateMany: {
|
|
542
|
+
args: Prisma.InputFileUpdateManyArgs<ExtArgs>;
|
|
543
|
+
result: BatchPayload;
|
|
544
|
+
};
|
|
545
|
+
updateManyAndReturn: {
|
|
546
|
+
args: Prisma.InputFileUpdateManyAndReturnArgs<ExtArgs>;
|
|
547
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>[];
|
|
548
|
+
};
|
|
549
|
+
upsert: {
|
|
550
|
+
args: Prisma.InputFileUpsertArgs<ExtArgs>;
|
|
551
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFilePayload>;
|
|
552
|
+
};
|
|
553
|
+
aggregate: {
|
|
554
|
+
args: Prisma.InputFileAggregateArgs<ExtArgs>;
|
|
555
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInputFile>;
|
|
556
|
+
};
|
|
557
|
+
groupBy: {
|
|
558
|
+
args: Prisma.InputFileGroupByArgs<ExtArgs>;
|
|
559
|
+
result: runtime.Types.Utils.Optional<Prisma.InputFileGroupByOutputType>[];
|
|
560
|
+
};
|
|
561
|
+
count: {
|
|
562
|
+
args: Prisma.InputFileCountArgs<ExtArgs>;
|
|
563
|
+
result: runtime.Types.Utils.Optional<Prisma.InputFileCountAggregateOutputType> | number;
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
InputFileWarning: {
|
|
568
|
+
payload: Prisma.$InputFileWarningPayload<ExtArgs>;
|
|
569
|
+
fields: Prisma.InputFileWarningFieldRefs;
|
|
570
|
+
operations: {
|
|
571
|
+
findUnique: {
|
|
572
|
+
args: Prisma.InputFileWarningFindUniqueArgs<ExtArgs>;
|
|
573
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload> | null;
|
|
574
|
+
};
|
|
575
|
+
findUniqueOrThrow: {
|
|
576
|
+
args: Prisma.InputFileWarningFindUniqueOrThrowArgs<ExtArgs>;
|
|
577
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>;
|
|
578
|
+
};
|
|
579
|
+
findFirst: {
|
|
580
|
+
args: Prisma.InputFileWarningFindFirstArgs<ExtArgs>;
|
|
581
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload> | null;
|
|
582
|
+
};
|
|
583
|
+
findFirstOrThrow: {
|
|
584
|
+
args: Prisma.InputFileWarningFindFirstOrThrowArgs<ExtArgs>;
|
|
585
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>;
|
|
586
|
+
};
|
|
587
|
+
findMany: {
|
|
588
|
+
args: Prisma.InputFileWarningFindManyArgs<ExtArgs>;
|
|
589
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>[];
|
|
590
|
+
};
|
|
591
|
+
create: {
|
|
592
|
+
args: Prisma.InputFileWarningCreateArgs<ExtArgs>;
|
|
593
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>;
|
|
594
|
+
};
|
|
595
|
+
createMany: {
|
|
596
|
+
args: Prisma.InputFileWarningCreateManyArgs<ExtArgs>;
|
|
597
|
+
result: BatchPayload;
|
|
598
|
+
};
|
|
599
|
+
createManyAndReturn: {
|
|
600
|
+
args: Prisma.InputFileWarningCreateManyAndReturnArgs<ExtArgs>;
|
|
601
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>[];
|
|
602
|
+
};
|
|
603
|
+
delete: {
|
|
604
|
+
args: Prisma.InputFileWarningDeleteArgs<ExtArgs>;
|
|
605
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>;
|
|
606
|
+
};
|
|
607
|
+
update: {
|
|
608
|
+
args: Prisma.InputFileWarningUpdateArgs<ExtArgs>;
|
|
609
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>;
|
|
610
|
+
};
|
|
611
|
+
deleteMany: {
|
|
612
|
+
args: Prisma.InputFileWarningDeleteManyArgs<ExtArgs>;
|
|
613
|
+
result: BatchPayload;
|
|
614
|
+
};
|
|
615
|
+
updateMany: {
|
|
616
|
+
args: Prisma.InputFileWarningUpdateManyArgs<ExtArgs>;
|
|
617
|
+
result: BatchPayload;
|
|
618
|
+
};
|
|
619
|
+
updateManyAndReturn: {
|
|
620
|
+
args: Prisma.InputFileWarningUpdateManyAndReturnArgs<ExtArgs>;
|
|
621
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>[];
|
|
622
|
+
};
|
|
623
|
+
upsert: {
|
|
624
|
+
args: Prisma.InputFileWarningUpsertArgs<ExtArgs>;
|
|
625
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InputFileWarningPayload>;
|
|
626
|
+
};
|
|
627
|
+
aggregate: {
|
|
628
|
+
args: Prisma.InputFileWarningAggregateArgs<ExtArgs>;
|
|
629
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInputFileWarning>;
|
|
630
|
+
};
|
|
631
|
+
groupBy: {
|
|
632
|
+
args: Prisma.InputFileWarningGroupByArgs<ExtArgs>;
|
|
633
|
+
result: runtime.Types.Utils.Optional<Prisma.InputFileWarningGroupByOutputType>[];
|
|
634
|
+
};
|
|
635
|
+
count: {
|
|
636
|
+
args: Prisma.InputFileWarningCountArgs<ExtArgs>;
|
|
637
|
+
result: runtime.Types.Utils.Optional<Prisma.InputFileWarningCountAggregateOutputType> | number;
|
|
638
|
+
};
|
|
639
|
+
};
|
|
640
|
+
};
|
|
641
|
+
Book: {
|
|
642
|
+
payload: Prisma.$BookPayload<ExtArgs>;
|
|
643
|
+
fields: Prisma.BookFieldRefs;
|
|
644
|
+
operations: {
|
|
645
|
+
findUnique: {
|
|
646
|
+
args: Prisma.BookFindUniqueArgs<ExtArgs>;
|
|
647
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload> | null;
|
|
648
|
+
};
|
|
649
|
+
findUniqueOrThrow: {
|
|
650
|
+
args: Prisma.BookFindUniqueOrThrowArgs<ExtArgs>;
|
|
651
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>;
|
|
652
|
+
};
|
|
653
|
+
findFirst: {
|
|
654
|
+
args: Prisma.BookFindFirstArgs<ExtArgs>;
|
|
655
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload> | null;
|
|
656
|
+
};
|
|
657
|
+
findFirstOrThrow: {
|
|
658
|
+
args: Prisma.BookFindFirstOrThrowArgs<ExtArgs>;
|
|
659
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>;
|
|
660
|
+
};
|
|
661
|
+
findMany: {
|
|
662
|
+
args: Prisma.BookFindManyArgs<ExtArgs>;
|
|
663
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>[];
|
|
664
|
+
};
|
|
665
|
+
create: {
|
|
666
|
+
args: Prisma.BookCreateArgs<ExtArgs>;
|
|
667
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>;
|
|
668
|
+
};
|
|
669
|
+
createMany: {
|
|
670
|
+
args: Prisma.BookCreateManyArgs<ExtArgs>;
|
|
671
|
+
result: BatchPayload;
|
|
672
|
+
};
|
|
673
|
+
createManyAndReturn: {
|
|
674
|
+
args: Prisma.BookCreateManyAndReturnArgs<ExtArgs>;
|
|
675
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>[];
|
|
676
|
+
};
|
|
677
|
+
delete: {
|
|
678
|
+
args: Prisma.BookDeleteArgs<ExtArgs>;
|
|
679
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>;
|
|
680
|
+
};
|
|
681
|
+
update: {
|
|
682
|
+
args: Prisma.BookUpdateArgs<ExtArgs>;
|
|
683
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>;
|
|
684
|
+
};
|
|
685
|
+
deleteMany: {
|
|
686
|
+
args: Prisma.BookDeleteManyArgs<ExtArgs>;
|
|
687
|
+
result: BatchPayload;
|
|
688
|
+
};
|
|
689
|
+
updateMany: {
|
|
690
|
+
args: Prisma.BookUpdateManyArgs<ExtArgs>;
|
|
691
|
+
result: BatchPayload;
|
|
692
|
+
};
|
|
693
|
+
updateManyAndReturn: {
|
|
694
|
+
args: Prisma.BookUpdateManyAndReturnArgs<ExtArgs>;
|
|
695
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>[];
|
|
696
|
+
};
|
|
697
|
+
upsert: {
|
|
698
|
+
args: Prisma.BookUpsertArgs<ExtArgs>;
|
|
699
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$BookPayload>;
|
|
700
|
+
};
|
|
701
|
+
aggregate: {
|
|
702
|
+
args: Prisma.BookAggregateArgs<ExtArgs>;
|
|
703
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateBook>;
|
|
704
|
+
};
|
|
705
|
+
groupBy: {
|
|
706
|
+
args: Prisma.BookGroupByArgs<ExtArgs>;
|
|
707
|
+
result: runtime.Types.Utils.Optional<Prisma.BookGroupByOutputType>[];
|
|
708
|
+
};
|
|
709
|
+
count: {
|
|
710
|
+
args: Prisma.BookCountArgs<ExtArgs>;
|
|
711
|
+
result: runtime.Types.Utils.Optional<Prisma.BookCountAggregateOutputType> | number;
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
};
|
|
715
|
+
CommentaryBook: {
|
|
716
|
+
payload: Prisma.$CommentaryBookPayload<ExtArgs>;
|
|
717
|
+
fields: Prisma.CommentaryBookFieldRefs;
|
|
718
|
+
operations: {
|
|
719
|
+
findUnique: {
|
|
720
|
+
args: Prisma.CommentaryBookFindUniqueArgs<ExtArgs>;
|
|
721
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload> | null;
|
|
722
|
+
};
|
|
723
|
+
findUniqueOrThrow: {
|
|
724
|
+
args: Prisma.CommentaryBookFindUniqueOrThrowArgs<ExtArgs>;
|
|
725
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>;
|
|
726
|
+
};
|
|
727
|
+
findFirst: {
|
|
728
|
+
args: Prisma.CommentaryBookFindFirstArgs<ExtArgs>;
|
|
729
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload> | null;
|
|
730
|
+
};
|
|
731
|
+
findFirstOrThrow: {
|
|
732
|
+
args: Prisma.CommentaryBookFindFirstOrThrowArgs<ExtArgs>;
|
|
733
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>;
|
|
734
|
+
};
|
|
735
|
+
findMany: {
|
|
736
|
+
args: Prisma.CommentaryBookFindManyArgs<ExtArgs>;
|
|
737
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>[];
|
|
738
|
+
};
|
|
739
|
+
create: {
|
|
740
|
+
args: Prisma.CommentaryBookCreateArgs<ExtArgs>;
|
|
741
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>;
|
|
742
|
+
};
|
|
743
|
+
createMany: {
|
|
744
|
+
args: Prisma.CommentaryBookCreateManyArgs<ExtArgs>;
|
|
745
|
+
result: BatchPayload;
|
|
746
|
+
};
|
|
747
|
+
createManyAndReturn: {
|
|
748
|
+
args: Prisma.CommentaryBookCreateManyAndReturnArgs<ExtArgs>;
|
|
749
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>[];
|
|
750
|
+
};
|
|
751
|
+
delete: {
|
|
752
|
+
args: Prisma.CommentaryBookDeleteArgs<ExtArgs>;
|
|
753
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>;
|
|
754
|
+
};
|
|
755
|
+
update: {
|
|
756
|
+
args: Prisma.CommentaryBookUpdateArgs<ExtArgs>;
|
|
757
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>;
|
|
758
|
+
};
|
|
759
|
+
deleteMany: {
|
|
760
|
+
args: Prisma.CommentaryBookDeleteManyArgs<ExtArgs>;
|
|
761
|
+
result: BatchPayload;
|
|
762
|
+
};
|
|
763
|
+
updateMany: {
|
|
764
|
+
args: Prisma.CommentaryBookUpdateManyArgs<ExtArgs>;
|
|
765
|
+
result: BatchPayload;
|
|
766
|
+
};
|
|
767
|
+
updateManyAndReturn: {
|
|
768
|
+
args: Prisma.CommentaryBookUpdateManyAndReturnArgs<ExtArgs>;
|
|
769
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>[];
|
|
770
|
+
};
|
|
771
|
+
upsert: {
|
|
772
|
+
args: Prisma.CommentaryBookUpsertArgs<ExtArgs>;
|
|
773
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryBookPayload>;
|
|
774
|
+
};
|
|
775
|
+
aggregate: {
|
|
776
|
+
args: Prisma.CommentaryBookAggregateArgs<ExtArgs>;
|
|
777
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateCommentaryBook>;
|
|
778
|
+
};
|
|
779
|
+
groupBy: {
|
|
780
|
+
args: Prisma.CommentaryBookGroupByArgs<ExtArgs>;
|
|
781
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryBookGroupByOutputType>[];
|
|
782
|
+
};
|
|
783
|
+
count: {
|
|
784
|
+
args: Prisma.CommentaryBookCountArgs<ExtArgs>;
|
|
785
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryBookCountAggregateOutputType> | number;
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
CommentaryProfile: {
|
|
790
|
+
payload: Prisma.$CommentaryProfilePayload<ExtArgs>;
|
|
791
|
+
fields: Prisma.CommentaryProfileFieldRefs;
|
|
792
|
+
operations: {
|
|
793
|
+
findUnique: {
|
|
794
|
+
args: Prisma.CommentaryProfileFindUniqueArgs<ExtArgs>;
|
|
795
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload> | null;
|
|
796
|
+
};
|
|
797
|
+
findUniqueOrThrow: {
|
|
798
|
+
args: Prisma.CommentaryProfileFindUniqueOrThrowArgs<ExtArgs>;
|
|
799
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>;
|
|
800
|
+
};
|
|
801
|
+
findFirst: {
|
|
802
|
+
args: Prisma.CommentaryProfileFindFirstArgs<ExtArgs>;
|
|
803
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload> | null;
|
|
804
|
+
};
|
|
805
|
+
findFirstOrThrow: {
|
|
806
|
+
args: Prisma.CommentaryProfileFindFirstOrThrowArgs<ExtArgs>;
|
|
807
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>;
|
|
808
|
+
};
|
|
809
|
+
findMany: {
|
|
810
|
+
args: Prisma.CommentaryProfileFindManyArgs<ExtArgs>;
|
|
811
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>[];
|
|
812
|
+
};
|
|
813
|
+
create: {
|
|
814
|
+
args: Prisma.CommentaryProfileCreateArgs<ExtArgs>;
|
|
815
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>;
|
|
816
|
+
};
|
|
817
|
+
createMany: {
|
|
818
|
+
args: Prisma.CommentaryProfileCreateManyArgs<ExtArgs>;
|
|
819
|
+
result: BatchPayload;
|
|
820
|
+
};
|
|
821
|
+
createManyAndReturn: {
|
|
822
|
+
args: Prisma.CommentaryProfileCreateManyAndReturnArgs<ExtArgs>;
|
|
823
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>[];
|
|
824
|
+
};
|
|
825
|
+
delete: {
|
|
826
|
+
args: Prisma.CommentaryProfileDeleteArgs<ExtArgs>;
|
|
827
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>;
|
|
828
|
+
};
|
|
829
|
+
update: {
|
|
830
|
+
args: Prisma.CommentaryProfileUpdateArgs<ExtArgs>;
|
|
831
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>;
|
|
832
|
+
};
|
|
833
|
+
deleteMany: {
|
|
834
|
+
args: Prisma.CommentaryProfileDeleteManyArgs<ExtArgs>;
|
|
835
|
+
result: BatchPayload;
|
|
836
|
+
};
|
|
837
|
+
updateMany: {
|
|
838
|
+
args: Prisma.CommentaryProfileUpdateManyArgs<ExtArgs>;
|
|
839
|
+
result: BatchPayload;
|
|
840
|
+
};
|
|
841
|
+
updateManyAndReturn: {
|
|
842
|
+
args: Prisma.CommentaryProfileUpdateManyAndReturnArgs<ExtArgs>;
|
|
843
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>[];
|
|
844
|
+
};
|
|
845
|
+
upsert: {
|
|
846
|
+
args: Prisma.CommentaryProfileUpsertArgs<ExtArgs>;
|
|
847
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryProfilePayload>;
|
|
848
|
+
};
|
|
849
|
+
aggregate: {
|
|
850
|
+
args: Prisma.CommentaryProfileAggregateArgs<ExtArgs>;
|
|
851
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateCommentaryProfile>;
|
|
852
|
+
};
|
|
853
|
+
groupBy: {
|
|
854
|
+
args: Prisma.CommentaryProfileGroupByArgs<ExtArgs>;
|
|
855
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryProfileGroupByOutputType>[];
|
|
856
|
+
};
|
|
857
|
+
count: {
|
|
858
|
+
args: Prisma.CommentaryProfileCountArgs<ExtArgs>;
|
|
859
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryProfileCountAggregateOutputType> | number;
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
};
|
|
863
|
+
Chapter: {
|
|
864
|
+
payload: Prisma.$ChapterPayload<ExtArgs>;
|
|
865
|
+
fields: Prisma.ChapterFieldRefs;
|
|
866
|
+
operations: {
|
|
867
|
+
findUnique: {
|
|
868
|
+
args: Prisma.ChapterFindUniqueArgs<ExtArgs>;
|
|
869
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload> | null;
|
|
870
|
+
};
|
|
871
|
+
findUniqueOrThrow: {
|
|
872
|
+
args: Prisma.ChapterFindUniqueOrThrowArgs<ExtArgs>;
|
|
873
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>;
|
|
874
|
+
};
|
|
875
|
+
findFirst: {
|
|
876
|
+
args: Prisma.ChapterFindFirstArgs<ExtArgs>;
|
|
877
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload> | null;
|
|
878
|
+
};
|
|
879
|
+
findFirstOrThrow: {
|
|
880
|
+
args: Prisma.ChapterFindFirstOrThrowArgs<ExtArgs>;
|
|
881
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>;
|
|
882
|
+
};
|
|
883
|
+
findMany: {
|
|
884
|
+
args: Prisma.ChapterFindManyArgs<ExtArgs>;
|
|
885
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>[];
|
|
886
|
+
};
|
|
887
|
+
create: {
|
|
888
|
+
args: Prisma.ChapterCreateArgs<ExtArgs>;
|
|
889
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>;
|
|
890
|
+
};
|
|
891
|
+
createMany: {
|
|
892
|
+
args: Prisma.ChapterCreateManyArgs<ExtArgs>;
|
|
893
|
+
result: BatchPayload;
|
|
894
|
+
};
|
|
895
|
+
createManyAndReturn: {
|
|
896
|
+
args: Prisma.ChapterCreateManyAndReturnArgs<ExtArgs>;
|
|
897
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>[];
|
|
898
|
+
};
|
|
899
|
+
delete: {
|
|
900
|
+
args: Prisma.ChapterDeleteArgs<ExtArgs>;
|
|
901
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>;
|
|
902
|
+
};
|
|
903
|
+
update: {
|
|
904
|
+
args: Prisma.ChapterUpdateArgs<ExtArgs>;
|
|
905
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>;
|
|
906
|
+
};
|
|
907
|
+
deleteMany: {
|
|
908
|
+
args: Prisma.ChapterDeleteManyArgs<ExtArgs>;
|
|
909
|
+
result: BatchPayload;
|
|
910
|
+
};
|
|
911
|
+
updateMany: {
|
|
912
|
+
args: Prisma.ChapterUpdateManyArgs<ExtArgs>;
|
|
913
|
+
result: BatchPayload;
|
|
914
|
+
};
|
|
915
|
+
updateManyAndReturn: {
|
|
916
|
+
args: Prisma.ChapterUpdateManyAndReturnArgs<ExtArgs>;
|
|
917
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>[];
|
|
918
|
+
};
|
|
919
|
+
upsert: {
|
|
920
|
+
args: Prisma.ChapterUpsertArgs<ExtArgs>;
|
|
921
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterPayload>;
|
|
922
|
+
};
|
|
923
|
+
aggregate: {
|
|
924
|
+
args: Prisma.ChapterAggregateArgs<ExtArgs>;
|
|
925
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateChapter>;
|
|
926
|
+
};
|
|
927
|
+
groupBy: {
|
|
928
|
+
args: Prisma.ChapterGroupByArgs<ExtArgs>;
|
|
929
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterGroupByOutputType>[];
|
|
930
|
+
};
|
|
931
|
+
count: {
|
|
932
|
+
args: Prisma.ChapterCountArgs<ExtArgs>;
|
|
933
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterCountAggregateOutputType> | number;
|
|
934
|
+
};
|
|
935
|
+
};
|
|
936
|
+
};
|
|
937
|
+
CommentaryChapter: {
|
|
938
|
+
payload: Prisma.$CommentaryChapterPayload<ExtArgs>;
|
|
939
|
+
fields: Prisma.CommentaryChapterFieldRefs;
|
|
940
|
+
operations: {
|
|
941
|
+
findUnique: {
|
|
942
|
+
args: Prisma.CommentaryChapterFindUniqueArgs<ExtArgs>;
|
|
943
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload> | null;
|
|
944
|
+
};
|
|
945
|
+
findUniqueOrThrow: {
|
|
946
|
+
args: Prisma.CommentaryChapterFindUniqueOrThrowArgs<ExtArgs>;
|
|
947
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>;
|
|
948
|
+
};
|
|
949
|
+
findFirst: {
|
|
950
|
+
args: Prisma.CommentaryChapterFindFirstArgs<ExtArgs>;
|
|
951
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload> | null;
|
|
952
|
+
};
|
|
953
|
+
findFirstOrThrow: {
|
|
954
|
+
args: Prisma.CommentaryChapterFindFirstOrThrowArgs<ExtArgs>;
|
|
955
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>;
|
|
956
|
+
};
|
|
957
|
+
findMany: {
|
|
958
|
+
args: Prisma.CommentaryChapterFindManyArgs<ExtArgs>;
|
|
959
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>[];
|
|
960
|
+
};
|
|
961
|
+
create: {
|
|
962
|
+
args: Prisma.CommentaryChapterCreateArgs<ExtArgs>;
|
|
963
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>;
|
|
964
|
+
};
|
|
965
|
+
createMany: {
|
|
966
|
+
args: Prisma.CommentaryChapterCreateManyArgs<ExtArgs>;
|
|
967
|
+
result: BatchPayload;
|
|
968
|
+
};
|
|
969
|
+
createManyAndReturn: {
|
|
970
|
+
args: Prisma.CommentaryChapterCreateManyAndReturnArgs<ExtArgs>;
|
|
971
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>[];
|
|
972
|
+
};
|
|
973
|
+
delete: {
|
|
974
|
+
args: Prisma.CommentaryChapterDeleteArgs<ExtArgs>;
|
|
975
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>;
|
|
976
|
+
};
|
|
977
|
+
update: {
|
|
978
|
+
args: Prisma.CommentaryChapterUpdateArgs<ExtArgs>;
|
|
979
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>;
|
|
980
|
+
};
|
|
981
|
+
deleteMany: {
|
|
982
|
+
args: Prisma.CommentaryChapterDeleteManyArgs<ExtArgs>;
|
|
983
|
+
result: BatchPayload;
|
|
984
|
+
};
|
|
985
|
+
updateMany: {
|
|
986
|
+
args: Prisma.CommentaryChapterUpdateManyArgs<ExtArgs>;
|
|
987
|
+
result: BatchPayload;
|
|
988
|
+
};
|
|
989
|
+
updateManyAndReturn: {
|
|
990
|
+
args: Prisma.CommentaryChapterUpdateManyAndReturnArgs<ExtArgs>;
|
|
991
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>[];
|
|
992
|
+
};
|
|
993
|
+
upsert: {
|
|
994
|
+
args: Prisma.CommentaryChapterUpsertArgs<ExtArgs>;
|
|
995
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterPayload>;
|
|
996
|
+
};
|
|
997
|
+
aggregate: {
|
|
998
|
+
args: Prisma.CommentaryChapterAggregateArgs<ExtArgs>;
|
|
999
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateCommentaryChapter>;
|
|
1000
|
+
};
|
|
1001
|
+
groupBy: {
|
|
1002
|
+
args: Prisma.CommentaryChapterGroupByArgs<ExtArgs>;
|
|
1003
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryChapterGroupByOutputType>[];
|
|
1004
|
+
};
|
|
1005
|
+
count: {
|
|
1006
|
+
args: Prisma.CommentaryChapterCountArgs<ExtArgs>;
|
|
1007
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryChapterCountAggregateOutputType> | number;
|
|
1008
|
+
};
|
|
1009
|
+
};
|
|
1010
|
+
};
|
|
1011
|
+
ChapterAudioUrl: {
|
|
1012
|
+
payload: Prisma.$ChapterAudioUrlPayload<ExtArgs>;
|
|
1013
|
+
fields: Prisma.ChapterAudioUrlFieldRefs;
|
|
1014
|
+
operations: {
|
|
1015
|
+
findUnique: {
|
|
1016
|
+
args: Prisma.ChapterAudioUrlFindUniqueArgs<ExtArgs>;
|
|
1017
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload> | null;
|
|
1018
|
+
};
|
|
1019
|
+
findUniqueOrThrow: {
|
|
1020
|
+
args: Prisma.ChapterAudioUrlFindUniqueOrThrowArgs<ExtArgs>;
|
|
1021
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>;
|
|
1022
|
+
};
|
|
1023
|
+
findFirst: {
|
|
1024
|
+
args: Prisma.ChapterAudioUrlFindFirstArgs<ExtArgs>;
|
|
1025
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload> | null;
|
|
1026
|
+
};
|
|
1027
|
+
findFirstOrThrow: {
|
|
1028
|
+
args: Prisma.ChapterAudioUrlFindFirstOrThrowArgs<ExtArgs>;
|
|
1029
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>;
|
|
1030
|
+
};
|
|
1031
|
+
findMany: {
|
|
1032
|
+
args: Prisma.ChapterAudioUrlFindManyArgs<ExtArgs>;
|
|
1033
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>[];
|
|
1034
|
+
};
|
|
1035
|
+
create: {
|
|
1036
|
+
args: Prisma.ChapterAudioUrlCreateArgs<ExtArgs>;
|
|
1037
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>;
|
|
1038
|
+
};
|
|
1039
|
+
createMany: {
|
|
1040
|
+
args: Prisma.ChapterAudioUrlCreateManyArgs<ExtArgs>;
|
|
1041
|
+
result: BatchPayload;
|
|
1042
|
+
};
|
|
1043
|
+
createManyAndReturn: {
|
|
1044
|
+
args: Prisma.ChapterAudioUrlCreateManyAndReturnArgs<ExtArgs>;
|
|
1045
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>[];
|
|
1046
|
+
};
|
|
1047
|
+
delete: {
|
|
1048
|
+
args: Prisma.ChapterAudioUrlDeleteArgs<ExtArgs>;
|
|
1049
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>;
|
|
1050
|
+
};
|
|
1051
|
+
update: {
|
|
1052
|
+
args: Prisma.ChapterAudioUrlUpdateArgs<ExtArgs>;
|
|
1053
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>;
|
|
1054
|
+
};
|
|
1055
|
+
deleteMany: {
|
|
1056
|
+
args: Prisma.ChapterAudioUrlDeleteManyArgs<ExtArgs>;
|
|
1057
|
+
result: BatchPayload;
|
|
1058
|
+
};
|
|
1059
|
+
updateMany: {
|
|
1060
|
+
args: Prisma.ChapterAudioUrlUpdateManyArgs<ExtArgs>;
|
|
1061
|
+
result: BatchPayload;
|
|
1062
|
+
};
|
|
1063
|
+
updateManyAndReturn: {
|
|
1064
|
+
args: Prisma.ChapterAudioUrlUpdateManyAndReturnArgs<ExtArgs>;
|
|
1065
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>[];
|
|
1066
|
+
};
|
|
1067
|
+
upsert: {
|
|
1068
|
+
args: Prisma.ChapterAudioUrlUpsertArgs<ExtArgs>;
|
|
1069
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioUrlPayload>;
|
|
1070
|
+
};
|
|
1071
|
+
aggregate: {
|
|
1072
|
+
args: Prisma.ChapterAudioUrlAggregateArgs<ExtArgs>;
|
|
1073
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateChapterAudioUrl>;
|
|
1074
|
+
};
|
|
1075
|
+
groupBy: {
|
|
1076
|
+
args: Prisma.ChapterAudioUrlGroupByArgs<ExtArgs>;
|
|
1077
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterAudioUrlGroupByOutputType>[];
|
|
1078
|
+
};
|
|
1079
|
+
count: {
|
|
1080
|
+
args: Prisma.ChapterAudioUrlCountArgs<ExtArgs>;
|
|
1081
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterAudioUrlCountAggregateOutputType> | number;
|
|
1082
|
+
};
|
|
1083
|
+
};
|
|
1084
|
+
};
|
|
1085
|
+
ChapterAudioTiming: {
|
|
1086
|
+
payload: Prisma.$ChapterAudioTimingPayload<ExtArgs>;
|
|
1087
|
+
fields: Prisma.ChapterAudioTimingFieldRefs;
|
|
1088
|
+
operations: {
|
|
1089
|
+
findUnique: {
|
|
1090
|
+
args: Prisma.ChapterAudioTimingFindUniqueArgs<ExtArgs>;
|
|
1091
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload> | null;
|
|
1092
|
+
};
|
|
1093
|
+
findUniqueOrThrow: {
|
|
1094
|
+
args: Prisma.ChapterAudioTimingFindUniqueOrThrowArgs<ExtArgs>;
|
|
1095
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>;
|
|
1096
|
+
};
|
|
1097
|
+
findFirst: {
|
|
1098
|
+
args: Prisma.ChapterAudioTimingFindFirstArgs<ExtArgs>;
|
|
1099
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload> | null;
|
|
1100
|
+
};
|
|
1101
|
+
findFirstOrThrow: {
|
|
1102
|
+
args: Prisma.ChapterAudioTimingFindFirstOrThrowArgs<ExtArgs>;
|
|
1103
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>;
|
|
1104
|
+
};
|
|
1105
|
+
findMany: {
|
|
1106
|
+
args: Prisma.ChapterAudioTimingFindManyArgs<ExtArgs>;
|
|
1107
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>[];
|
|
1108
|
+
};
|
|
1109
|
+
create: {
|
|
1110
|
+
args: Prisma.ChapterAudioTimingCreateArgs<ExtArgs>;
|
|
1111
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>;
|
|
1112
|
+
};
|
|
1113
|
+
createMany: {
|
|
1114
|
+
args: Prisma.ChapterAudioTimingCreateManyArgs<ExtArgs>;
|
|
1115
|
+
result: BatchPayload;
|
|
1116
|
+
};
|
|
1117
|
+
createManyAndReturn: {
|
|
1118
|
+
args: Prisma.ChapterAudioTimingCreateManyAndReturnArgs<ExtArgs>;
|
|
1119
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>[];
|
|
1120
|
+
};
|
|
1121
|
+
delete: {
|
|
1122
|
+
args: Prisma.ChapterAudioTimingDeleteArgs<ExtArgs>;
|
|
1123
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>;
|
|
1124
|
+
};
|
|
1125
|
+
update: {
|
|
1126
|
+
args: Prisma.ChapterAudioTimingUpdateArgs<ExtArgs>;
|
|
1127
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>;
|
|
1128
|
+
};
|
|
1129
|
+
deleteMany: {
|
|
1130
|
+
args: Prisma.ChapterAudioTimingDeleteManyArgs<ExtArgs>;
|
|
1131
|
+
result: BatchPayload;
|
|
1132
|
+
};
|
|
1133
|
+
updateMany: {
|
|
1134
|
+
args: Prisma.ChapterAudioTimingUpdateManyArgs<ExtArgs>;
|
|
1135
|
+
result: BatchPayload;
|
|
1136
|
+
};
|
|
1137
|
+
updateManyAndReturn: {
|
|
1138
|
+
args: Prisma.ChapterAudioTimingUpdateManyAndReturnArgs<ExtArgs>;
|
|
1139
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>[];
|
|
1140
|
+
};
|
|
1141
|
+
upsert: {
|
|
1142
|
+
args: Prisma.ChapterAudioTimingUpsertArgs<ExtArgs>;
|
|
1143
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterAudioTimingPayload>;
|
|
1144
|
+
};
|
|
1145
|
+
aggregate: {
|
|
1146
|
+
args: Prisma.ChapterAudioTimingAggregateArgs<ExtArgs>;
|
|
1147
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateChapterAudioTiming>;
|
|
1148
|
+
};
|
|
1149
|
+
groupBy: {
|
|
1150
|
+
args: Prisma.ChapterAudioTimingGroupByArgs<ExtArgs>;
|
|
1151
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterAudioTimingGroupByOutputType>[];
|
|
1152
|
+
};
|
|
1153
|
+
count: {
|
|
1154
|
+
args: Prisma.ChapterAudioTimingCountArgs<ExtArgs>;
|
|
1155
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterAudioTimingCountAggregateOutputType> | number;
|
|
1156
|
+
};
|
|
1157
|
+
};
|
|
1158
|
+
};
|
|
1159
|
+
ChapterWords: {
|
|
1160
|
+
payload: Prisma.$ChapterWordsPayload<ExtArgs>;
|
|
1161
|
+
fields: Prisma.ChapterWordsFieldRefs;
|
|
1162
|
+
operations: {
|
|
1163
|
+
findUnique: {
|
|
1164
|
+
args: Prisma.ChapterWordsFindUniqueArgs<ExtArgs>;
|
|
1165
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload> | null;
|
|
1166
|
+
};
|
|
1167
|
+
findUniqueOrThrow: {
|
|
1168
|
+
args: Prisma.ChapterWordsFindUniqueOrThrowArgs<ExtArgs>;
|
|
1169
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>;
|
|
1170
|
+
};
|
|
1171
|
+
findFirst: {
|
|
1172
|
+
args: Prisma.ChapterWordsFindFirstArgs<ExtArgs>;
|
|
1173
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload> | null;
|
|
1174
|
+
};
|
|
1175
|
+
findFirstOrThrow: {
|
|
1176
|
+
args: Prisma.ChapterWordsFindFirstOrThrowArgs<ExtArgs>;
|
|
1177
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>;
|
|
1178
|
+
};
|
|
1179
|
+
findMany: {
|
|
1180
|
+
args: Prisma.ChapterWordsFindManyArgs<ExtArgs>;
|
|
1181
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>[];
|
|
1182
|
+
};
|
|
1183
|
+
create: {
|
|
1184
|
+
args: Prisma.ChapterWordsCreateArgs<ExtArgs>;
|
|
1185
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>;
|
|
1186
|
+
};
|
|
1187
|
+
createMany: {
|
|
1188
|
+
args: Prisma.ChapterWordsCreateManyArgs<ExtArgs>;
|
|
1189
|
+
result: BatchPayload;
|
|
1190
|
+
};
|
|
1191
|
+
createManyAndReturn: {
|
|
1192
|
+
args: Prisma.ChapterWordsCreateManyAndReturnArgs<ExtArgs>;
|
|
1193
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>[];
|
|
1194
|
+
};
|
|
1195
|
+
delete: {
|
|
1196
|
+
args: Prisma.ChapterWordsDeleteArgs<ExtArgs>;
|
|
1197
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>;
|
|
1198
|
+
};
|
|
1199
|
+
update: {
|
|
1200
|
+
args: Prisma.ChapterWordsUpdateArgs<ExtArgs>;
|
|
1201
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>;
|
|
1202
|
+
};
|
|
1203
|
+
deleteMany: {
|
|
1204
|
+
args: Prisma.ChapterWordsDeleteManyArgs<ExtArgs>;
|
|
1205
|
+
result: BatchPayload;
|
|
1206
|
+
};
|
|
1207
|
+
updateMany: {
|
|
1208
|
+
args: Prisma.ChapterWordsUpdateManyArgs<ExtArgs>;
|
|
1209
|
+
result: BatchPayload;
|
|
1210
|
+
};
|
|
1211
|
+
updateManyAndReturn: {
|
|
1212
|
+
args: Prisma.ChapterWordsUpdateManyAndReturnArgs<ExtArgs>;
|
|
1213
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>[];
|
|
1214
|
+
};
|
|
1215
|
+
upsert: {
|
|
1216
|
+
args: Prisma.ChapterWordsUpsertArgs<ExtArgs>;
|
|
1217
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterWordsPayload>;
|
|
1218
|
+
};
|
|
1219
|
+
aggregate: {
|
|
1220
|
+
args: Prisma.ChapterWordsAggregateArgs<ExtArgs>;
|
|
1221
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateChapterWords>;
|
|
1222
|
+
};
|
|
1223
|
+
groupBy: {
|
|
1224
|
+
args: Prisma.ChapterWordsGroupByArgs<ExtArgs>;
|
|
1225
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterWordsGroupByOutputType>[];
|
|
1226
|
+
};
|
|
1227
|
+
count: {
|
|
1228
|
+
args: Prisma.ChapterWordsCountArgs<ExtArgs>;
|
|
1229
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterWordsCountAggregateOutputType> | number;
|
|
1230
|
+
};
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
ChapterVerse: {
|
|
1234
|
+
payload: Prisma.$ChapterVersePayload<ExtArgs>;
|
|
1235
|
+
fields: Prisma.ChapterVerseFieldRefs;
|
|
1236
|
+
operations: {
|
|
1237
|
+
findUnique: {
|
|
1238
|
+
args: Prisma.ChapterVerseFindUniqueArgs<ExtArgs>;
|
|
1239
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload> | null;
|
|
1240
|
+
};
|
|
1241
|
+
findUniqueOrThrow: {
|
|
1242
|
+
args: Prisma.ChapterVerseFindUniqueOrThrowArgs<ExtArgs>;
|
|
1243
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>;
|
|
1244
|
+
};
|
|
1245
|
+
findFirst: {
|
|
1246
|
+
args: Prisma.ChapterVerseFindFirstArgs<ExtArgs>;
|
|
1247
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload> | null;
|
|
1248
|
+
};
|
|
1249
|
+
findFirstOrThrow: {
|
|
1250
|
+
args: Prisma.ChapterVerseFindFirstOrThrowArgs<ExtArgs>;
|
|
1251
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>;
|
|
1252
|
+
};
|
|
1253
|
+
findMany: {
|
|
1254
|
+
args: Prisma.ChapterVerseFindManyArgs<ExtArgs>;
|
|
1255
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>[];
|
|
1256
|
+
};
|
|
1257
|
+
create: {
|
|
1258
|
+
args: Prisma.ChapterVerseCreateArgs<ExtArgs>;
|
|
1259
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>;
|
|
1260
|
+
};
|
|
1261
|
+
createMany: {
|
|
1262
|
+
args: Prisma.ChapterVerseCreateManyArgs<ExtArgs>;
|
|
1263
|
+
result: BatchPayload;
|
|
1264
|
+
};
|
|
1265
|
+
createManyAndReturn: {
|
|
1266
|
+
args: Prisma.ChapterVerseCreateManyAndReturnArgs<ExtArgs>;
|
|
1267
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>[];
|
|
1268
|
+
};
|
|
1269
|
+
delete: {
|
|
1270
|
+
args: Prisma.ChapterVerseDeleteArgs<ExtArgs>;
|
|
1271
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>;
|
|
1272
|
+
};
|
|
1273
|
+
update: {
|
|
1274
|
+
args: Prisma.ChapterVerseUpdateArgs<ExtArgs>;
|
|
1275
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>;
|
|
1276
|
+
};
|
|
1277
|
+
deleteMany: {
|
|
1278
|
+
args: Prisma.ChapterVerseDeleteManyArgs<ExtArgs>;
|
|
1279
|
+
result: BatchPayload;
|
|
1280
|
+
};
|
|
1281
|
+
updateMany: {
|
|
1282
|
+
args: Prisma.ChapterVerseUpdateManyArgs<ExtArgs>;
|
|
1283
|
+
result: BatchPayload;
|
|
1284
|
+
};
|
|
1285
|
+
updateManyAndReturn: {
|
|
1286
|
+
args: Prisma.ChapterVerseUpdateManyAndReturnArgs<ExtArgs>;
|
|
1287
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>[];
|
|
1288
|
+
};
|
|
1289
|
+
upsert: {
|
|
1290
|
+
args: Prisma.ChapterVerseUpsertArgs<ExtArgs>;
|
|
1291
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterVersePayload>;
|
|
1292
|
+
};
|
|
1293
|
+
aggregate: {
|
|
1294
|
+
args: Prisma.ChapterVerseAggregateArgs<ExtArgs>;
|
|
1295
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateChapterVerse>;
|
|
1296
|
+
};
|
|
1297
|
+
groupBy: {
|
|
1298
|
+
args: Prisma.ChapterVerseGroupByArgs<ExtArgs>;
|
|
1299
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterVerseGroupByOutputType>[];
|
|
1300
|
+
};
|
|
1301
|
+
count: {
|
|
1302
|
+
args: Prisma.ChapterVerseCountArgs<ExtArgs>;
|
|
1303
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterVerseCountAggregateOutputType> | number;
|
|
1304
|
+
};
|
|
1305
|
+
};
|
|
1306
|
+
};
|
|
1307
|
+
CommentaryChapterVerse: {
|
|
1308
|
+
payload: Prisma.$CommentaryChapterVersePayload<ExtArgs>;
|
|
1309
|
+
fields: Prisma.CommentaryChapterVerseFieldRefs;
|
|
1310
|
+
operations: {
|
|
1311
|
+
findUnique: {
|
|
1312
|
+
args: Prisma.CommentaryChapterVerseFindUniqueArgs<ExtArgs>;
|
|
1313
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload> | null;
|
|
1314
|
+
};
|
|
1315
|
+
findUniqueOrThrow: {
|
|
1316
|
+
args: Prisma.CommentaryChapterVerseFindUniqueOrThrowArgs<ExtArgs>;
|
|
1317
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>;
|
|
1318
|
+
};
|
|
1319
|
+
findFirst: {
|
|
1320
|
+
args: Prisma.CommentaryChapterVerseFindFirstArgs<ExtArgs>;
|
|
1321
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload> | null;
|
|
1322
|
+
};
|
|
1323
|
+
findFirstOrThrow: {
|
|
1324
|
+
args: Prisma.CommentaryChapterVerseFindFirstOrThrowArgs<ExtArgs>;
|
|
1325
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>;
|
|
1326
|
+
};
|
|
1327
|
+
findMany: {
|
|
1328
|
+
args: Prisma.CommentaryChapterVerseFindManyArgs<ExtArgs>;
|
|
1329
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>[];
|
|
1330
|
+
};
|
|
1331
|
+
create: {
|
|
1332
|
+
args: Prisma.CommentaryChapterVerseCreateArgs<ExtArgs>;
|
|
1333
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>;
|
|
1334
|
+
};
|
|
1335
|
+
createMany: {
|
|
1336
|
+
args: Prisma.CommentaryChapterVerseCreateManyArgs<ExtArgs>;
|
|
1337
|
+
result: BatchPayload;
|
|
1338
|
+
};
|
|
1339
|
+
createManyAndReturn: {
|
|
1340
|
+
args: Prisma.CommentaryChapterVerseCreateManyAndReturnArgs<ExtArgs>;
|
|
1341
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>[];
|
|
1342
|
+
};
|
|
1343
|
+
delete: {
|
|
1344
|
+
args: Prisma.CommentaryChapterVerseDeleteArgs<ExtArgs>;
|
|
1345
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>;
|
|
1346
|
+
};
|
|
1347
|
+
update: {
|
|
1348
|
+
args: Prisma.CommentaryChapterVerseUpdateArgs<ExtArgs>;
|
|
1349
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>;
|
|
1350
|
+
};
|
|
1351
|
+
deleteMany: {
|
|
1352
|
+
args: Prisma.CommentaryChapterVerseDeleteManyArgs<ExtArgs>;
|
|
1353
|
+
result: BatchPayload;
|
|
1354
|
+
};
|
|
1355
|
+
updateMany: {
|
|
1356
|
+
args: Prisma.CommentaryChapterVerseUpdateManyArgs<ExtArgs>;
|
|
1357
|
+
result: BatchPayload;
|
|
1358
|
+
};
|
|
1359
|
+
updateManyAndReturn: {
|
|
1360
|
+
args: Prisma.CommentaryChapterVerseUpdateManyAndReturnArgs<ExtArgs>;
|
|
1361
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>[];
|
|
1362
|
+
};
|
|
1363
|
+
upsert: {
|
|
1364
|
+
args: Prisma.CommentaryChapterVerseUpsertArgs<ExtArgs>;
|
|
1365
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$CommentaryChapterVersePayload>;
|
|
1366
|
+
};
|
|
1367
|
+
aggregate: {
|
|
1368
|
+
args: Prisma.CommentaryChapterVerseAggregateArgs<ExtArgs>;
|
|
1369
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateCommentaryChapterVerse>;
|
|
1370
|
+
};
|
|
1371
|
+
groupBy: {
|
|
1372
|
+
args: Prisma.CommentaryChapterVerseGroupByArgs<ExtArgs>;
|
|
1373
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryChapterVerseGroupByOutputType>[];
|
|
1374
|
+
};
|
|
1375
|
+
count: {
|
|
1376
|
+
args: Prisma.CommentaryChapterVerseCountArgs<ExtArgs>;
|
|
1377
|
+
result: runtime.Types.Utils.Optional<Prisma.CommentaryChapterVerseCountAggregateOutputType> | number;
|
|
1378
|
+
};
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
ChapterFootnote: {
|
|
1382
|
+
payload: Prisma.$ChapterFootnotePayload<ExtArgs>;
|
|
1383
|
+
fields: Prisma.ChapterFootnoteFieldRefs;
|
|
1384
|
+
operations: {
|
|
1385
|
+
findUnique: {
|
|
1386
|
+
args: Prisma.ChapterFootnoteFindUniqueArgs<ExtArgs>;
|
|
1387
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload> | null;
|
|
1388
|
+
};
|
|
1389
|
+
findUniqueOrThrow: {
|
|
1390
|
+
args: Prisma.ChapterFootnoteFindUniqueOrThrowArgs<ExtArgs>;
|
|
1391
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>;
|
|
1392
|
+
};
|
|
1393
|
+
findFirst: {
|
|
1394
|
+
args: Prisma.ChapterFootnoteFindFirstArgs<ExtArgs>;
|
|
1395
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload> | null;
|
|
1396
|
+
};
|
|
1397
|
+
findFirstOrThrow: {
|
|
1398
|
+
args: Prisma.ChapterFootnoteFindFirstOrThrowArgs<ExtArgs>;
|
|
1399
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>;
|
|
1400
|
+
};
|
|
1401
|
+
findMany: {
|
|
1402
|
+
args: Prisma.ChapterFootnoteFindManyArgs<ExtArgs>;
|
|
1403
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>[];
|
|
1404
|
+
};
|
|
1405
|
+
create: {
|
|
1406
|
+
args: Prisma.ChapterFootnoteCreateArgs<ExtArgs>;
|
|
1407
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>;
|
|
1408
|
+
};
|
|
1409
|
+
createMany: {
|
|
1410
|
+
args: Prisma.ChapterFootnoteCreateManyArgs<ExtArgs>;
|
|
1411
|
+
result: BatchPayload;
|
|
1412
|
+
};
|
|
1413
|
+
createManyAndReturn: {
|
|
1414
|
+
args: Prisma.ChapterFootnoteCreateManyAndReturnArgs<ExtArgs>;
|
|
1415
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>[];
|
|
1416
|
+
};
|
|
1417
|
+
delete: {
|
|
1418
|
+
args: Prisma.ChapterFootnoteDeleteArgs<ExtArgs>;
|
|
1419
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>;
|
|
1420
|
+
};
|
|
1421
|
+
update: {
|
|
1422
|
+
args: Prisma.ChapterFootnoteUpdateArgs<ExtArgs>;
|
|
1423
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>;
|
|
1424
|
+
};
|
|
1425
|
+
deleteMany: {
|
|
1426
|
+
args: Prisma.ChapterFootnoteDeleteManyArgs<ExtArgs>;
|
|
1427
|
+
result: BatchPayload;
|
|
1428
|
+
};
|
|
1429
|
+
updateMany: {
|
|
1430
|
+
args: Prisma.ChapterFootnoteUpdateManyArgs<ExtArgs>;
|
|
1431
|
+
result: BatchPayload;
|
|
1432
|
+
};
|
|
1433
|
+
updateManyAndReturn: {
|
|
1434
|
+
args: Prisma.ChapterFootnoteUpdateManyAndReturnArgs<ExtArgs>;
|
|
1435
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>[];
|
|
1436
|
+
};
|
|
1437
|
+
upsert: {
|
|
1438
|
+
args: Prisma.ChapterFootnoteUpsertArgs<ExtArgs>;
|
|
1439
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ChapterFootnotePayload>;
|
|
1440
|
+
};
|
|
1441
|
+
aggregate: {
|
|
1442
|
+
args: Prisma.ChapterFootnoteAggregateArgs<ExtArgs>;
|
|
1443
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateChapterFootnote>;
|
|
1444
|
+
};
|
|
1445
|
+
groupBy: {
|
|
1446
|
+
args: Prisma.ChapterFootnoteGroupByArgs<ExtArgs>;
|
|
1447
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterFootnoteGroupByOutputType>[];
|
|
1448
|
+
};
|
|
1449
|
+
count: {
|
|
1450
|
+
args: Prisma.ChapterFootnoteCountArgs<ExtArgs>;
|
|
1451
|
+
result: runtime.Types.Utils.Optional<Prisma.ChapterFootnoteCountAggregateOutputType> | number;
|
|
1452
|
+
};
|
|
1453
|
+
};
|
|
1454
|
+
};
|
|
1455
|
+
Dataset: {
|
|
1456
|
+
payload: Prisma.$DatasetPayload<ExtArgs>;
|
|
1457
|
+
fields: Prisma.DatasetFieldRefs;
|
|
1458
|
+
operations: {
|
|
1459
|
+
findUnique: {
|
|
1460
|
+
args: Prisma.DatasetFindUniqueArgs<ExtArgs>;
|
|
1461
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload> | null;
|
|
1462
|
+
};
|
|
1463
|
+
findUniqueOrThrow: {
|
|
1464
|
+
args: Prisma.DatasetFindUniqueOrThrowArgs<ExtArgs>;
|
|
1465
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>;
|
|
1466
|
+
};
|
|
1467
|
+
findFirst: {
|
|
1468
|
+
args: Prisma.DatasetFindFirstArgs<ExtArgs>;
|
|
1469
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload> | null;
|
|
1470
|
+
};
|
|
1471
|
+
findFirstOrThrow: {
|
|
1472
|
+
args: Prisma.DatasetFindFirstOrThrowArgs<ExtArgs>;
|
|
1473
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>;
|
|
1474
|
+
};
|
|
1475
|
+
findMany: {
|
|
1476
|
+
args: Prisma.DatasetFindManyArgs<ExtArgs>;
|
|
1477
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>[];
|
|
1478
|
+
};
|
|
1479
|
+
create: {
|
|
1480
|
+
args: Prisma.DatasetCreateArgs<ExtArgs>;
|
|
1481
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>;
|
|
1482
|
+
};
|
|
1483
|
+
createMany: {
|
|
1484
|
+
args: Prisma.DatasetCreateManyArgs<ExtArgs>;
|
|
1485
|
+
result: BatchPayload;
|
|
1486
|
+
};
|
|
1487
|
+
createManyAndReturn: {
|
|
1488
|
+
args: Prisma.DatasetCreateManyAndReturnArgs<ExtArgs>;
|
|
1489
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>[];
|
|
1490
|
+
};
|
|
1491
|
+
delete: {
|
|
1492
|
+
args: Prisma.DatasetDeleteArgs<ExtArgs>;
|
|
1493
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>;
|
|
1494
|
+
};
|
|
1495
|
+
update: {
|
|
1496
|
+
args: Prisma.DatasetUpdateArgs<ExtArgs>;
|
|
1497
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>;
|
|
1498
|
+
};
|
|
1499
|
+
deleteMany: {
|
|
1500
|
+
args: Prisma.DatasetDeleteManyArgs<ExtArgs>;
|
|
1501
|
+
result: BatchPayload;
|
|
1502
|
+
};
|
|
1503
|
+
updateMany: {
|
|
1504
|
+
args: Prisma.DatasetUpdateManyArgs<ExtArgs>;
|
|
1505
|
+
result: BatchPayload;
|
|
1506
|
+
};
|
|
1507
|
+
updateManyAndReturn: {
|
|
1508
|
+
args: Prisma.DatasetUpdateManyAndReturnArgs<ExtArgs>;
|
|
1509
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>[];
|
|
1510
|
+
};
|
|
1511
|
+
upsert: {
|
|
1512
|
+
args: Prisma.DatasetUpsertArgs<ExtArgs>;
|
|
1513
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetPayload>;
|
|
1514
|
+
};
|
|
1515
|
+
aggregate: {
|
|
1516
|
+
args: Prisma.DatasetAggregateArgs<ExtArgs>;
|
|
1517
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateDataset>;
|
|
1518
|
+
};
|
|
1519
|
+
groupBy: {
|
|
1520
|
+
args: Prisma.DatasetGroupByArgs<ExtArgs>;
|
|
1521
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetGroupByOutputType>[];
|
|
1522
|
+
};
|
|
1523
|
+
count: {
|
|
1524
|
+
args: Prisma.DatasetCountArgs<ExtArgs>;
|
|
1525
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetCountAggregateOutputType> | number;
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
};
|
|
1529
|
+
DatasetBook: {
|
|
1530
|
+
payload: Prisma.$DatasetBookPayload<ExtArgs>;
|
|
1531
|
+
fields: Prisma.DatasetBookFieldRefs;
|
|
1532
|
+
operations: {
|
|
1533
|
+
findUnique: {
|
|
1534
|
+
args: Prisma.DatasetBookFindUniqueArgs<ExtArgs>;
|
|
1535
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload> | null;
|
|
1536
|
+
};
|
|
1537
|
+
findUniqueOrThrow: {
|
|
1538
|
+
args: Prisma.DatasetBookFindUniqueOrThrowArgs<ExtArgs>;
|
|
1539
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>;
|
|
1540
|
+
};
|
|
1541
|
+
findFirst: {
|
|
1542
|
+
args: Prisma.DatasetBookFindFirstArgs<ExtArgs>;
|
|
1543
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload> | null;
|
|
1544
|
+
};
|
|
1545
|
+
findFirstOrThrow: {
|
|
1546
|
+
args: Prisma.DatasetBookFindFirstOrThrowArgs<ExtArgs>;
|
|
1547
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>;
|
|
1548
|
+
};
|
|
1549
|
+
findMany: {
|
|
1550
|
+
args: Prisma.DatasetBookFindManyArgs<ExtArgs>;
|
|
1551
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>[];
|
|
1552
|
+
};
|
|
1553
|
+
create: {
|
|
1554
|
+
args: Prisma.DatasetBookCreateArgs<ExtArgs>;
|
|
1555
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>;
|
|
1556
|
+
};
|
|
1557
|
+
createMany: {
|
|
1558
|
+
args: Prisma.DatasetBookCreateManyArgs<ExtArgs>;
|
|
1559
|
+
result: BatchPayload;
|
|
1560
|
+
};
|
|
1561
|
+
createManyAndReturn: {
|
|
1562
|
+
args: Prisma.DatasetBookCreateManyAndReturnArgs<ExtArgs>;
|
|
1563
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>[];
|
|
1564
|
+
};
|
|
1565
|
+
delete: {
|
|
1566
|
+
args: Prisma.DatasetBookDeleteArgs<ExtArgs>;
|
|
1567
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>;
|
|
1568
|
+
};
|
|
1569
|
+
update: {
|
|
1570
|
+
args: Prisma.DatasetBookUpdateArgs<ExtArgs>;
|
|
1571
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>;
|
|
1572
|
+
};
|
|
1573
|
+
deleteMany: {
|
|
1574
|
+
args: Prisma.DatasetBookDeleteManyArgs<ExtArgs>;
|
|
1575
|
+
result: BatchPayload;
|
|
1576
|
+
};
|
|
1577
|
+
updateMany: {
|
|
1578
|
+
args: Prisma.DatasetBookUpdateManyArgs<ExtArgs>;
|
|
1579
|
+
result: BatchPayload;
|
|
1580
|
+
};
|
|
1581
|
+
updateManyAndReturn: {
|
|
1582
|
+
args: Prisma.DatasetBookUpdateManyAndReturnArgs<ExtArgs>;
|
|
1583
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>[];
|
|
1584
|
+
};
|
|
1585
|
+
upsert: {
|
|
1586
|
+
args: Prisma.DatasetBookUpsertArgs<ExtArgs>;
|
|
1587
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetBookPayload>;
|
|
1588
|
+
};
|
|
1589
|
+
aggregate: {
|
|
1590
|
+
args: Prisma.DatasetBookAggregateArgs<ExtArgs>;
|
|
1591
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateDatasetBook>;
|
|
1592
|
+
};
|
|
1593
|
+
groupBy: {
|
|
1594
|
+
args: Prisma.DatasetBookGroupByArgs<ExtArgs>;
|
|
1595
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetBookGroupByOutputType>[];
|
|
1596
|
+
};
|
|
1597
|
+
count: {
|
|
1598
|
+
args: Prisma.DatasetBookCountArgs<ExtArgs>;
|
|
1599
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetBookCountAggregateOutputType> | number;
|
|
1600
|
+
};
|
|
1601
|
+
};
|
|
1602
|
+
};
|
|
1603
|
+
DatasetChapter: {
|
|
1604
|
+
payload: Prisma.$DatasetChapterPayload<ExtArgs>;
|
|
1605
|
+
fields: Prisma.DatasetChapterFieldRefs;
|
|
1606
|
+
operations: {
|
|
1607
|
+
findUnique: {
|
|
1608
|
+
args: Prisma.DatasetChapterFindUniqueArgs<ExtArgs>;
|
|
1609
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload> | null;
|
|
1610
|
+
};
|
|
1611
|
+
findUniqueOrThrow: {
|
|
1612
|
+
args: Prisma.DatasetChapterFindUniqueOrThrowArgs<ExtArgs>;
|
|
1613
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>;
|
|
1614
|
+
};
|
|
1615
|
+
findFirst: {
|
|
1616
|
+
args: Prisma.DatasetChapterFindFirstArgs<ExtArgs>;
|
|
1617
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload> | null;
|
|
1618
|
+
};
|
|
1619
|
+
findFirstOrThrow: {
|
|
1620
|
+
args: Prisma.DatasetChapterFindFirstOrThrowArgs<ExtArgs>;
|
|
1621
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>;
|
|
1622
|
+
};
|
|
1623
|
+
findMany: {
|
|
1624
|
+
args: Prisma.DatasetChapterFindManyArgs<ExtArgs>;
|
|
1625
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>[];
|
|
1626
|
+
};
|
|
1627
|
+
create: {
|
|
1628
|
+
args: Prisma.DatasetChapterCreateArgs<ExtArgs>;
|
|
1629
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>;
|
|
1630
|
+
};
|
|
1631
|
+
createMany: {
|
|
1632
|
+
args: Prisma.DatasetChapterCreateManyArgs<ExtArgs>;
|
|
1633
|
+
result: BatchPayload;
|
|
1634
|
+
};
|
|
1635
|
+
createManyAndReturn: {
|
|
1636
|
+
args: Prisma.DatasetChapterCreateManyAndReturnArgs<ExtArgs>;
|
|
1637
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>[];
|
|
1638
|
+
};
|
|
1639
|
+
delete: {
|
|
1640
|
+
args: Prisma.DatasetChapterDeleteArgs<ExtArgs>;
|
|
1641
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>;
|
|
1642
|
+
};
|
|
1643
|
+
update: {
|
|
1644
|
+
args: Prisma.DatasetChapterUpdateArgs<ExtArgs>;
|
|
1645
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>;
|
|
1646
|
+
};
|
|
1647
|
+
deleteMany: {
|
|
1648
|
+
args: Prisma.DatasetChapterDeleteManyArgs<ExtArgs>;
|
|
1649
|
+
result: BatchPayload;
|
|
1650
|
+
};
|
|
1651
|
+
updateMany: {
|
|
1652
|
+
args: Prisma.DatasetChapterUpdateManyArgs<ExtArgs>;
|
|
1653
|
+
result: BatchPayload;
|
|
1654
|
+
};
|
|
1655
|
+
updateManyAndReturn: {
|
|
1656
|
+
args: Prisma.DatasetChapterUpdateManyAndReturnArgs<ExtArgs>;
|
|
1657
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>[];
|
|
1658
|
+
};
|
|
1659
|
+
upsert: {
|
|
1660
|
+
args: Prisma.DatasetChapterUpsertArgs<ExtArgs>;
|
|
1661
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterPayload>;
|
|
1662
|
+
};
|
|
1663
|
+
aggregate: {
|
|
1664
|
+
args: Prisma.DatasetChapterAggregateArgs<ExtArgs>;
|
|
1665
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateDatasetChapter>;
|
|
1666
|
+
};
|
|
1667
|
+
groupBy: {
|
|
1668
|
+
args: Prisma.DatasetChapterGroupByArgs<ExtArgs>;
|
|
1669
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetChapterGroupByOutputType>[];
|
|
1670
|
+
};
|
|
1671
|
+
count: {
|
|
1672
|
+
args: Prisma.DatasetChapterCountArgs<ExtArgs>;
|
|
1673
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetChapterCountAggregateOutputType> | number;
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
DatasetChapterVerse: {
|
|
1678
|
+
payload: Prisma.$DatasetChapterVersePayload<ExtArgs>;
|
|
1679
|
+
fields: Prisma.DatasetChapterVerseFieldRefs;
|
|
1680
|
+
operations: {
|
|
1681
|
+
findUnique: {
|
|
1682
|
+
args: Prisma.DatasetChapterVerseFindUniqueArgs<ExtArgs>;
|
|
1683
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload> | null;
|
|
1684
|
+
};
|
|
1685
|
+
findUniqueOrThrow: {
|
|
1686
|
+
args: Prisma.DatasetChapterVerseFindUniqueOrThrowArgs<ExtArgs>;
|
|
1687
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>;
|
|
1688
|
+
};
|
|
1689
|
+
findFirst: {
|
|
1690
|
+
args: Prisma.DatasetChapterVerseFindFirstArgs<ExtArgs>;
|
|
1691
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload> | null;
|
|
1692
|
+
};
|
|
1693
|
+
findFirstOrThrow: {
|
|
1694
|
+
args: Prisma.DatasetChapterVerseFindFirstOrThrowArgs<ExtArgs>;
|
|
1695
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>;
|
|
1696
|
+
};
|
|
1697
|
+
findMany: {
|
|
1698
|
+
args: Prisma.DatasetChapterVerseFindManyArgs<ExtArgs>;
|
|
1699
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>[];
|
|
1700
|
+
};
|
|
1701
|
+
create: {
|
|
1702
|
+
args: Prisma.DatasetChapterVerseCreateArgs<ExtArgs>;
|
|
1703
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>;
|
|
1704
|
+
};
|
|
1705
|
+
createMany: {
|
|
1706
|
+
args: Prisma.DatasetChapterVerseCreateManyArgs<ExtArgs>;
|
|
1707
|
+
result: BatchPayload;
|
|
1708
|
+
};
|
|
1709
|
+
createManyAndReturn: {
|
|
1710
|
+
args: Prisma.DatasetChapterVerseCreateManyAndReturnArgs<ExtArgs>;
|
|
1711
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>[];
|
|
1712
|
+
};
|
|
1713
|
+
delete: {
|
|
1714
|
+
args: Prisma.DatasetChapterVerseDeleteArgs<ExtArgs>;
|
|
1715
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>;
|
|
1716
|
+
};
|
|
1717
|
+
update: {
|
|
1718
|
+
args: Prisma.DatasetChapterVerseUpdateArgs<ExtArgs>;
|
|
1719
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>;
|
|
1720
|
+
};
|
|
1721
|
+
deleteMany: {
|
|
1722
|
+
args: Prisma.DatasetChapterVerseDeleteManyArgs<ExtArgs>;
|
|
1723
|
+
result: BatchPayload;
|
|
1724
|
+
};
|
|
1725
|
+
updateMany: {
|
|
1726
|
+
args: Prisma.DatasetChapterVerseUpdateManyArgs<ExtArgs>;
|
|
1727
|
+
result: BatchPayload;
|
|
1728
|
+
};
|
|
1729
|
+
updateManyAndReturn: {
|
|
1730
|
+
args: Prisma.DatasetChapterVerseUpdateManyAndReturnArgs<ExtArgs>;
|
|
1731
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>[];
|
|
1732
|
+
};
|
|
1733
|
+
upsert: {
|
|
1734
|
+
args: Prisma.DatasetChapterVerseUpsertArgs<ExtArgs>;
|
|
1735
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetChapterVersePayload>;
|
|
1736
|
+
};
|
|
1737
|
+
aggregate: {
|
|
1738
|
+
args: Prisma.DatasetChapterVerseAggregateArgs<ExtArgs>;
|
|
1739
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateDatasetChapterVerse>;
|
|
1740
|
+
};
|
|
1741
|
+
groupBy: {
|
|
1742
|
+
args: Prisma.DatasetChapterVerseGroupByArgs<ExtArgs>;
|
|
1743
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetChapterVerseGroupByOutputType>[];
|
|
1744
|
+
};
|
|
1745
|
+
count: {
|
|
1746
|
+
args: Prisma.DatasetChapterVerseCountArgs<ExtArgs>;
|
|
1747
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetChapterVerseCountAggregateOutputType> | number;
|
|
1748
|
+
};
|
|
1749
|
+
};
|
|
1750
|
+
};
|
|
1751
|
+
DatasetReference: {
|
|
1752
|
+
payload: Prisma.$DatasetReferencePayload<ExtArgs>;
|
|
1753
|
+
fields: Prisma.DatasetReferenceFieldRefs;
|
|
1754
|
+
operations: {
|
|
1755
|
+
findUnique: {
|
|
1756
|
+
args: Prisma.DatasetReferenceFindUniqueArgs<ExtArgs>;
|
|
1757
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload> | null;
|
|
1758
|
+
};
|
|
1759
|
+
findUniqueOrThrow: {
|
|
1760
|
+
args: Prisma.DatasetReferenceFindUniqueOrThrowArgs<ExtArgs>;
|
|
1761
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>;
|
|
1762
|
+
};
|
|
1763
|
+
findFirst: {
|
|
1764
|
+
args: Prisma.DatasetReferenceFindFirstArgs<ExtArgs>;
|
|
1765
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload> | null;
|
|
1766
|
+
};
|
|
1767
|
+
findFirstOrThrow: {
|
|
1768
|
+
args: Prisma.DatasetReferenceFindFirstOrThrowArgs<ExtArgs>;
|
|
1769
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>;
|
|
1770
|
+
};
|
|
1771
|
+
findMany: {
|
|
1772
|
+
args: Prisma.DatasetReferenceFindManyArgs<ExtArgs>;
|
|
1773
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>[];
|
|
1774
|
+
};
|
|
1775
|
+
create: {
|
|
1776
|
+
args: Prisma.DatasetReferenceCreateArgs<ExtArgs>;
|
|
1777
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>;
|
|
1778
|
+
};
|
|
1779
|
+
createMany: {
|
|
1780
|
+
args: Prisma.DatasetReferenceCreateManyArgs<ExtArgs>;
|
|
1781
|
+
result: BatchPayload;
|
|
1782
|
+
};
|
|
1783
|
+
createManyAndReturn: {
|
|
1784
|
+
args: Prisma.DatasetReferenceCreateManyAndReturnArgs<ExtArgs>;
|
|
1785
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>[];
|
|
1786
|
+
};
|
|
1787
|
+
delete: {
|
|
1788
|
+
args: Prisma.DatasetReferenceDeleteArgs<ExtArgs>;
|
|
1789
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>;
|
|
1790
|
+
};
|
|
1791
|
+
update: {
|
|
1792
|
+
args: Prisma.DatasetReferenceUpdateArgs<ExtArgs>;
|
|
1793
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>;
|
|
1794
|
+
};
|
|
1795
|
+
deleteMany: {
|
|
1796
|
+
args: Prisma.DatasetReferenceDeleteManyArgs<ExtArgs>;
|
|
1797
|
+
result: BatchPayload;
|
|
1798
|
+
};
|
|
1799
|
+
updateMany: {
|
|
1800
|
+
args: Prisma.DatasetReferenceUpdateManyArgs<ExtArgs>;
|
|
1801
|
+
result: BatchPayload;
|
|
1802
|
+
};
|
|
1803
|
+
updateManyAndReturn: {
|
|
1804
|
+
args: Prisma.DatasetReferenceUpdateManyAndReturnArgs<ExtArgs>;
|
|
1805
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>[];
|
|
1806
|
+
};
|
|
1807
|
+
upsert: {
|
|
1808
|
+
args: Prisma.DatasetReferenceUpsertArgs<ExtArgs>;
|
|
1809
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$DatasetReferencePayload>;
|
|
1810
|
+
};
|
|
1811
|
+
aggregate: {
|
|
1812
|
+
args: Prisma.DatasetReferenceAggregateArgs<ExtArgs>;
|
|
1813
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateDatasetReference>;
|
|
1814
|
+
};
|
|
1815
|
+
groupBy: {
|
|
1816
|
+
args: Prisma.DatasetReferenceGroupByArgs<ExtArgs>;
|
|
1817
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetReferenceGroupByOutputType>[];
|
|
1818
|
+
};
|
|
1819
|
+
count: {
|
|
1820
|
+
args: Prisma.DatasetReferenceCountArgs<ExtArgs>;
|
|
1821
|
+
result: runtime.Types.Utils.Optional<Prisma.DatasetReferenceCountAggregateOutputType> | number;
|
|
1822
|
+
};
|
|
1823
|
+
};
|
|
1824
|
+
};
|
|
1825
|
+
};
|
|
1826
|
+
} & {
|
|
1827
|
+
other: {
|
|
1828
|
+
payload: any;
|
|
1829
|
+
operations: {
|
|
1830
|
+
$executeRaw: {
|
|
1831
|
+
args: [query: TemplateStringsArray | Sql, ...values: any[]];
|
|
1832
|
+
result: any;
|
|
1833
|
+
};
|
|
1834
|
+
$executeRawUnsafe: {
|
|
1835
|
+
args: [query: string, ...values: any[]];
|
|
1836
|
+
result: any;
|
|
1837
|
+
};
|
|
1838
|
+
$queryRaw: {
|
|
1839
|
+
args: [query: TemplateStringsArray | Sql, ...values: any[]];
|
|
1840
|
+
result: any;
|
|
1841
|
+
};
|
|
1842
|
+
$queryRawUnsafe: {
|
|
1843
|
+
args: [query: string, ...values: any[]];
|
|
1844
|
+
result: any;
|
|
1845
|
+
};
|
|
1846
|
+
};
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1849
|
+
/**
|
|
1850
|
+
* Enums
|
|
1851
|
+
*/
|
|
1852
|
+
export declare const TransactionIsolationLevel: {
|
|
1853
|
+
readonly Serializable: "Serializable";
|
|
1854
|
+
};
|
|
1855
|
+
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
|
|
1856
|
+
export declare const TranslationScalarFieldEnum: {
|
|
1857
|
+
readonly id: "id";
|
|
1858
|
+
readonly name: "name";
|
|
1859
|
+
readonly website: "website";
|
|
1860
|
+
readonly licenseUrl: "licenseUrl";
|
|
1861
|
+
readonly licenseNotes: "licenseNotes";
|
|
1862
|
+
readonly licenseNotice: "licenseNotice";
|
|
1863
|
+
readonly shortName: "shortName";
|
|
1864
|
+
readonly englishName: "englishName";
|
|
1865
|
+
readonly language: "language";
|
|
1866
|
+
readonly textDirection: "textDirection";
|
|
1867
|
+
readonly sha256: "sha256";
|
|
1868
|
+
};
|
|
1869
|
+
export type TranslationScalarFieldEnum = (typeof TranslationScalarFieldEnum)[keyof typeof TranslationScalarFieldEnum];
|
|
1870
|
+
export declare const CommentaryScalarFieldEnum: {
|
|
1871
|
+
readonly id: "id";
|
|
1872
|
+
readonly name: "name";
|
|
1873
|
+
readonly website: "website";
|
|
1874
|
+
readonly licenseUrl: "licenseUrl";
|
|
1875
|
+
readonly licenseNotes: "licenseNotes";
|
|
1876
|
+
readonly licenseNotice: "licenseNotice";
|
|
1877
|
+
readonly englishName: "englishName";
|
|
1878
|
+
readonly language: "language";
|
|
1879
|
+
readonly textDirection: "textDirection";
|
|
1880
|
+
readonly sha256: "sha256";
|
|
1881
|
+
};
|
|
1882
|
+
export type CommentaryScalarFieldEnum = (typeof CommentaryScalarFieldEnum)[keyof typeof CommentaryScalarFieldEnum];
|
|
1883
|
+
export declare const EBibleSourceScalarFieldEnum: {
|
|
1884
|
+
readonly id: "id";
|
|
1885
|
+
readonly usfmZipUrl: "usfmZipUrl";
|
|
1886
|
+
readonly usfmZipEtag: "usfmZipEtag";
|
|
1887
|
+
readonly languageCode: "languageCode";
|
|
1888
|
+
readonly title: "title";
|
|
1889
|
+
readonly shortTitle: "shortTitle";
|
|
1890
|
+
readonly textDirection: "textDirection";
|
|
1891
|
+
readonly redistributable: "redistributable";
|
|
1892
|
+
readonly description: "description";
|
|
1893
|
+
readonly copyright: "copyright";
|
|
1894
|
+
readonly FCBHID: "FCBHID";
|
|
1895
|
+
readonly updateDate: "updateDate";
|
|
1896
|
+
readonly sourceDate: "sourceDate";
|
|
1897
|
+
readonly oldTestamentBooks: "oldTestamentBooks";
|
|
1898
|
+
readonly oldTestamentChapters: "oldTestamentChapters";
|
|
1899
|
+
readonly oldTestamentVerses: "oldTestamentVerses";
|
|
1900
|
+
readonly newTestamentBooks: "newTestamentBooks";
|
|
1901
|
+
readonly newTestamentChapters: "newTestamentChapters";
|
|
1902
|
+
readonly newTestamentVerses: "newTestamentVerses";
|
|
1903
|
+
readonly apocryphaBooks: "apocryphaBooks";
|
|
1904
|
+
readonly apocryphaChapters: "apocryphaChapters";
|
|
1905
|
+
readonly apocryphaVerses: "apocryphaVerses";
|
|
1906
|
+
readonly translationId: "translationId";
|
|
1907
|
+
readonly usfmDownloadDate: "usfmDownloadDate";
|
|
1908
|
+
readonly usfmDownloadPath: "usfmDownloadPath";
|
|
1909
|
+
readonly sha256: "sha256";
|
|
1910
|
+
};
|
|
1911
|
+
export type EBibleSourceScalarFieldEnum = (typeof EBibleSourceScalarFieldEnum)[keyof typeof EBibleSourceScalarFieldEnum];
|
|
1912
|
+
export declare const InputFileScalarFieldEnum: {
|
|
1913
|
+
readonly translationId: "translationId";
|
|
1914
|
+
readonly name: "name";
|
|
1915
|
+
readonly format: "format";
|
|
1916
|
+
readonly sha256: "sha256";
|
|
1917
|
+
readonly sizeInBytes: "sizeInBytes";
|
|
1918
|
+
};
|
|
1919
|
+
export type InputFileScalarFieldEnum = (typeof InputFileScalarFieldEnum)[keyof typeof InputFileScalarFieldEnum];
|
|
1920
|
+
export declare const InputFileWarningScalarFieldEnum: {
|
|
1921
|
+
readonly name: "name";
|
|
1922
|
+
readonly type: "type";
|
|
1923
|
+
readonly message: "message";
|
|
1924
|
+
};
|
|
1925
|
+
export type InputFileWarningScalarFieldEnum = (typeof InputFileWarningScalarFieldEnum)[keyof typeof InputFileWarningScalarFieldEnum];
|
|
1926
|
+
export declare const BookScalarFieldEnum: {
|
|
1927
|
+
readonly id: "id";
|
|
1928
|
+
readonly translationId: "translationId";
|
|
1929
|
+
readonly name: "name";
|
|
1930
|
+
readonly commonName: "commonName";
|
|
1931
|
+
readonly title: "title";
|
|
1932
|
+
readonly order: "order";
|
|
1933
|
+
readonly numberOfChapters: "numberOfChapters";
|
|
1934
|
+
readonly isApocryphal: "isApocryphal";
|
|
1935
|
+
readonly sha256: "sha256";
|
|
1936
|
+
};
|
|
1937
|
+
export type BookScalarFieldEnum = (typeof BookScalarFieldEnum)[keyof typeof BookScalarFieldEnum];
|
|
1938
|
+
export declare const CommentaryBookScalarFieldEnum: {
|
|
1939
|
+
readonly id: "id";
|
|
1940
|
+
readonly commentaryId: "commentaryId";
|
|
1941
|
+
readonly name: "name";
|
|
1942
|
+
readonly commonName: "commonName";
|
|
1943
|
+
readonly introduction: "introduction";
|
|
1944
|
+
readonly introductionSummary: "introductionSummary";
|
|
1945
|
+
readonly order: "order";
|
|
1946
|
+
readonly numberOfChapters: "numberOfChapters";
|
|
1947
|
+
readonly sha256: "sha256";
|
|
1948
|
+
};
|
|
1949
|
+
export type CommentaryBookScalarFieldEnum = (typeof CommentaryBookScalarFieldEnum)[keyof typeof CommentaryBookScalarFieldEnum];
|
|
1950
|
+
export declare const CommentaryProfileScalarFieldEnum: {
|
|
1951
|
+
readonly id: "id";
|
|
1952
|
+
readonly commentaryId: "commentaryId";
|
|
1953
|
+
readonly subject: "subject";
|
|
1954
|
+
readonly content: "content";
|
|
1955
|
+
readonly referenceBook: "referenceBook";
|
|
1956
|
+
readonly referenceChapter: "referenceChapter";
|
|
1957
|
+
readonly referenceVerse: "referenceVerse";
|
|
1958
|
+
readonly referenceEndChapter: "referenceEndChapter";
|
|
1959
|
+
readonly referenceEndVerse: "referenceEndVerse";
|
|
1960
|
+
readonly json: "json";
|
|
1961
|
+
readonly sha256: "sha256";
|
|
1962
|
+
};
|
|
1963
|
+
export type CommentaryProfileScalarFieldEnum = (typeof CommentaryProfileScalarFieldEnum)[keyof typeof CommentaryProfileScalarFieldEnum];
|
|
1964
|
+
export declare const ChapterScalarFieldEnum: {
|
|
1965
|
+
readonly number: "number";
|
|
1966
|
+
readonly bookId: "bookId";
|
|
1967
|
+
readonly translationId: "translationId";
|
|
1968
|
+
readonly json: "json";
|
|
1969
|
+
readonly sha256: "sha256";
|
|
1970
|
+
};
|
|
1971
|
+
export type ChapterScalarFieldEnum = (typeof ChapterScalarFieldEnum)[keyof typeof ChapterScalarFieldEnum];
|
|
1972
|
+
export declare const CommentaryChapterScalarFieldEnum: {
|
|
1973
|
+
readonly number: "number";
|
|
1974
|
+
readonly bookId: "bookId";
|
|
1975
|
+
readonly commentaryId: "commentaryId";
|
|
1976
|
+
readonly introduction: "introduction";
|
|
1977
|
+
readonly json: "json";
|
|
1978
|
+
readonly sha256: "sha256";
|
|
1979
|
+
};
|
|
1980
|
+
export type CommentaryChapterScalarFieldEnum = (typeof CommentaryChapterScalarFieldEnum)[keyof typeof CommentaryChapterScalarFieldEnum];
|
|
1981
|
+
export declare const ChapterAudioUrlScalarFieldEnum: {
|
|
1982
|
+
readonly number: "number";
|
|
1983
|
+
readonly bookId: "bookId";
|
|
1984
|
+
readonly translationId: "translationId";
|
|
1985
|
+
readonly reader: "reader";
|
|
1986
|
+
readonly url: "url";
|
|
1987
|
+
};
|
|
1988
|
+
export type ChapterAudioUrlScalarFieldEnum = (typeof ChapterAudioUrlScalarFieldEnum)[keyof typeof ChapterAudioUrlScalarFieldEnum];
|
|
1989
|
+
export declare const ChapterAudioTimingScalarFieldEnum: {
|
|
1990
|
+
readonly number: "number";
|
|
1991
|
+
readonly bookId: "bookId";
|
|
1992
|
+
readonly translationId: "translationId";
|
|
1993
|
+
readonly reader: "reader";
|
|
1994
|
+
readonly timingsJson: "timingsJson";
|
|
1995
|
+
};
|
|
1996
|
+
export type ChapterAudioTimingScalarFieldEnum = (typeof ChapterAudioTimingScalarFieldEnum)[keyof typeof ChapterAudioTimingScalarFieldEnum];
|
|
1997
|
+
export declare const ChapterWordsScalarFieldEnum: {
|
|
1998
|
+
readonly number: "number";
|
|
1999
|
+
readonly bookId: "bookId";
|
|
2000
|
+
readonly translationId: "translationId";
|
|
2001
|
+
readonly wordsJson: "wordsJson";
|
|
2002
|
+
};
|
|
2003
|
+
export type ChapterWordsScalarFieldEnum = (typeof ChapterWordsScalarFieldEnum)[keyof typeof ChapterWordsScalarFieldEnum];
|
|
2004
|
+
export declare const ChapterVerseScalarFieldEnum: {
|
|
2005
|
+
readonly number: "number";
|
|
2006
|
+
readonly chapterNumber: "chapterNumber";
|
|
2007
|
+
readonly bookId: "bookId";
|
|
2008
|
+
readonly translationId: "translationId";
|
|
2009
|
+
readonly text: "text";
|
|
2010
|
+
readonly contentJson: "contentJson";
|
|
2011
|
+
readonly sha256: "sha256";
|
|
2012
|
+
};
|
|
2013
|
+
export type ChapterVerseScalarFieldEnum = (typeof ChapterVerseScalarFieldEnum)[keyof typeof ChapterVerseScalarFieldEnum];
|
|
2014
|
+
export declare const CommentaryChapterVerseScalarFieldEnum: {
|
|
2015
|
+
readonly number: "number";
|
|
2016
|
+
readonly chapterNumber: "chapterNumber";
|
|
2017
|
+
readonly bookId: "bookId";
|
|
2018
|
+
readonly commentaryId: "commentaryId";
|
|
2019
|
+
readonly text: "text";
|
|
2020
|
+
readonly contentJson: "contentJson";
|
|
2021
|
+
readonly sha256: "sha256";
|
|
2022
|
+
};
|
|
2023
|
+
export type CommentaryChapterVerseScalarFieldEnum = (typeof CommentaryChapterVerseScalarFieldEnum)[keyof typeof CommentaryChapterVerseScalarFieldEnum];
|
|
2024
|
+
export declare const ChapterFootnoteScalarFieldEnum: {
|
|
2025
|
+
readonly id: "id";
|
|
2026
|
+
readonly chapterNumber: "chapterNumber";
|
|
2027
|
+
readonly bookId: "bookId";
|
|
2028
|
+
readonly translationId: "translationId";
|
|
2029
|
+
readonly text: "text";
|
|
2030
|
+
readonly sha256: "sha256";
|
|
2031
|
+
readonly verseNumber: "verseNumber";
|
|
2032
|
+
};
|
|
2033
|
+
export type ChapterFootnoteScalarFieldEnum = (typeof ChapterFootnoteScalarFieldEnum)[keyof typeof ChapterFootnoteScalarFieldEnum];
|
|
2034
|
+
export declare const DatasetScalarFieldEnum: {
|
|
2035
|
+
readonly id: "id";
|
|
2036
|
+
readonly name: "name";
|
|
2037
|
+
readonly website: "website";
|
|
2038
|
+
readonly licenseUrl: "licenseUrl";
|
|
2039
|
+
readonly licenseNotes: "licenseNotes";
|
|
2040
|
+
readonly englishName: "englishName";
|
|
2041
|
+
readonly language: "language";
|
|
2042
|
+
readonly textDirection: "textDirection";
|
|
2043
|
+
readonly sha256: "sha256";
|
|
2044
|
+
};
|
|
2045
|
+
export type DatasetScalarFieldEnum = (typeof DatasetScalarFieldEnum)[keyof typeof DatasetScalarFieldEnum];
|
|
2046
|
+
export declare const DatasetBookScalarFieldEnum: {
|
|
2047
|
+
readonly id: "id";
|
|
2048
|
+
readonly datasetId: "datasetId";
|
|
2049
|
+
readonly order: "order";
|
|
2050
|
+
readonly numberOfChapters: "numberOfChapters";
|
|
2051
|
+
readonly sha256: "sha256";
|
|
2052
|
+
};
|
|
2053
|
+
export type DatasetBookScalarFieldEnum = (typeof DatasetBookScalarFieldEnum)[keyof typeof DatasetBookScalarFieldEnum];
|
|
2054
|
+
export declare const DatasetChapterScalarFieldEnum: {
|
|
2055
|
+
readonly number: "number";
|
|
2056
|
+
readonly bookId: "bookId";
|
|
2057
|
+
readonly datasetId: "datasetId";
|
|
2058
|
+
readonly json: "json";
|
|
2059
|
+
readonly sha256: "sha256";
|
|
2060
|
+
};
|
|
2061
|
+
export type DatasetChapterScalarFieldEnum = (typeof DatasetChapterScalarFieldEnum)[keyof typeof DatasetChapterScalarFieldEnum];
|
|
2062
|
+
export declare const DatasetChapterVerseScalarFieldEnum: {
|
|
2063
|
+
readonly number: "number";
|
|
2064
|
+
readonly chapterNumber: "chapterNumber";
|
|
2065
|
+
readonly bookId: "bookId";
|
|
2066
|
+
readonly datasetId: "datasetId";
|
|
2067
|
+
readonly contentJson: "contentJson";
|
|
2068
|
+
readonly sha256: "sha256";
|
|
2069
|
+
};
|
|
2070
|
+
export type DatasetChapterVerseScalarFieldEnum = (typeof DatasetChapterVerseScalarFieldEnum)[keyof typeof DatasetChapterVerseScalarFieldEnum];
|
|
2071
|
+
export declare const DatasetReferenceScalarFieldEnum: {
|
|
2072
|
+
readonly id: "id";
|
|
2073
|
+
readonly datasetId: "datasetId";
|
|
2074
|
+
readonly bookId: "bookId";
|
|
2075
|
+
readonly chapterNumber: "chapterNumber";
|
|
2076
|
+
readonly verseNumber: "verseNumber";
|
|
2077
|
+
readonly referenceBookId: "referenceBookId";
|
|
2078
|
+
readonly referenceChapter: "referenceChapter";
|
|
2079
|
+
readonly referenceVerse: "referenceVerse";
|
|
2080
|
+
readonly endVerseNumber: "endVerseNumber";
|
|
2081
|
+
readonly score: "score";
|
|
2082
|
+
};
|
|
2083
|
+
export type DatasetReferenceScalarFieldEnum = (typeof DatasetReferenceScalarFieldEnum)[keyof typeof DatasetReferenceScalarFieldEnum];
|
|
2084
|
+
export declare const SortOrder: {
|
|
2085
|
+
readonly asc: "asc";
|
|
2086
|
+
readonly desc: "desc";
|
|
2087
|
+
};
|
|
2088
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2089
|
+
export declare const NullsOrder: {
|
|
2090
|
+
readonly first: "first";
|
|
2091
|
+
readonly last: "last";
|
|
2092
|
+
};
|
|
2093
|
+
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
2094
|
+
/**
|
|
2095
|
+
* Field references
|
|
2096
|
+
*/
|
|
2097
|
+
/**
|
|
2098
|
+
* Reference to a field of type 'String'
|
|
2099
|
+
*/
|
|
2100
|
+
export type StringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String'>;
|
|
2101
|
+
/**
|
|
2102
|
+
* Reference to a field of type 'Boolean'
|
|
2103
|
+
*/
|
|
2104
|
+
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>;
|
|
2105
|
+
/**
|
|
2106
|
+
* Reference to a field of type 'DateTime'
|
|
2107
|
+
*/
|
|
2108
|
+
export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>;
|
|
2109
|
+
/**
|
|
2110
|
+
* Reference to a field of type 'Int'
|
|
2111
|
+
*/
|
|
2112
|
+
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>;
|
|
2113
|
+
/**
|
|
2114
|
+
* Reference to a field of type 'Float'
|
|
2115
|
+
*/
|
|
2116
|
+
export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>;
|
|
2117
|
+
/**
|
|
2118
|
+
* Batch Payload for updateMany & deleteMany & createMany
|
|
2119
|
+
*/
|
|
2120
|
+
export type BatchPayload = {
|
|
2121
|
+
count: number;
|
|
2122
|
+
};
|
|
2123
|
+
export declare const defineExtension: runtime.Types.Extensions.ExtendsHook<"define", TypeMapCb, runtime.Types.Extensions.DefaultArgs>;
|
|
2124
|
+
export type DefaultPrismaClient = PrismaClient;
|
|
2125
|
+
export type ErrorFormat = 'pretty' | 'colorless' | 'minimal';
|
|
2126
|
+
export type PrismaClientOptions = ({
|
|
2127
|
+
/**
|
|
2128
|
+
* Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-pg`.
|
|
2129
|
+
*/
|
|
2130
|
+
adapter: runtime.SqlDriverAdapterFactory;
|
|
2131
|
+
accelerateUrl?: never;
|
|
2132
|
+
} | {
|
|
2133
|
+
/**
|
|
2134
|
+
* Prisma Accelerate URL allowing the client to connect through Accelerate instead of a direct database.
|
|
2135
|
+
*/
|
|
2136
|
+
accelerateUrl: string;
|
|
2137
|
+
adapter?: never;
|
|
2138
|
+
}) & {
|
|
2139
|
+
/**
|
|
2140
|
+
* @default "colorless"
|
|
2141
|
+
*/
|
|
2142
|
+
errorFormat?: ErrorFormat;
|
|
2143
|
+
/**
|
|
2144
|
+
* @example
|
|
2145
|
+
* ```
|
|
2146
|
+
* // Shorthand for `emit: 'stdout'`
|
|
2147
|
+
* log: ['query', 'info', 'warn', 'error']
|
|
2148
|
+
*
|
|
2149
|
+
* // Emit as events only
|
|
2150
|
+
* log: [
|
|
2151
|
+
* { emit: 'event', level: 'query' },
|
|
2152
|
+
* { emit: 'event', level: 'info' },
|
|
2153
|
+
* { emit: 'event', level: 'warn' }
|
|
2154
|
+
* { emit: 'event', level: 'error' }
|
|
2155
|
+
* ]
|
|
2156
|
+
*
|
|
2157
|
+
* / Emit as events and log to stdout
|
|
2158
|
+
* og: [
|
|
2159
|
+
* { emit: 'stdout', level: 'query' },
|
|
2160
|
+
* { emit: 'stdout', level: 'info' },
|
|
2161
|
+
* { emit: 'stdout', level: 'warn' }
|
|
2162
|
+
* { emit: 'stdout', level: 'error' }
|
|
2163
|
+
*
|
|
2164
|
+
* ```
|
|
2165
|
+
* Read more in our [docs](https://pris.ly/d/logging).
|
|
2166
|
+
*/
|
|
2167
|
+
log?: (LogLevel | LogDefinition)[];
|
|
2168
|
+
/**
|
|
2169
|
+
* The default values for transactionOptions
|
|
2170
|
+
* maxWait ?= 2000
|
|
2171
|
+
* timeout ?= 5000
|
|
2172
|
+
*/
|
|
2173
|
+
transactionOptions?: {
|
|
2174
|
+
maxWait?: number;
|
|
2175
|
+
timeout?: number;
|
|
2176
|
+
isolationLevel?: TransactionIsolationLevel;
|
|
2177
|
+
};
|
|
2178
|
+
/**
|
|
2179
|
+
* Global configuration for omitting model fields by default.
|
|
2180
|
+
*
|
|
2181
|
+
* @example
|
|
2182
|
+
* ```
|
|
2183
|
+
* const prisma = new PrismaClient({
|
|
2184
|
+
* omit: {
|
|
2185
|
+
* user: {
|
|
2186
|
+
* password: true
|
|
2187
|
+
* }
|
|
2188
|
+
* }
|
|
2189
|
+
* })
|
|
2190
|
+
* ```
|
|
2191
|
+
*/
|
|
2192
|
+
omit?: GlobalOmitConfig;
|
|
2193
|
+
/**
|
|
2194
|
+
* SQL commenter plugins that add metadata to SQL queries as comments.
|
|
2195
|
+
* Comments follow the sqlcommenter format: https://google.github.io/sqlcommenter/
|
|
2196
|
+
*
|
|
2197
|
+
* @example
|
|
2198
|
+
* ```
|
|
2199
|
+
* const prisma = new PrismaClient({
|
|
2200
|
+
* adapter,
|
|
2201
|
+
* comments: [
|
|
2202
|
+
* traceContext(),
|
|
2203
|
+
* queryInsights(),
|
|
2204
|
+
* ],
|
|
2205
|
+
* })
|
|
2206
|
+
* ```
|
|
2207
|
+
*/
|
|
2208
|
+
comments?: runtime.SqlCommenterPlugin[];
|
|
2209
|
+
/**
|
|
2210
|
+
* Optional maximum size for the query plan cache. If not provided, a default size will be used.
|
|
2211
|
+
* A value of `0` can be used to disable the cache entirely. A higher cache size can improve
|
|
2212
|
+
* performance for applications that execute a large number of unique queries, while a smaller
|
|
2213
|
+
* cache size can reduce memory usage.
|
|
2214
|
+
*
|
|
2215
|
+
* @example
|
|
2216
|
+
* ```
|
|
2217
|
+
* const prisma = new PrismaClient({
|
|
2218
|
+
* adapter,
|
|
2219
|
+
* queryPlanCacheMaxSize: 100,
|
|
2220
|
+
* })
|
|
2221
|
+
* ```
|
|
2222
|
+
*/
|
|
2223
|
+
queryPlanCacheMaxSize?: number;
|
|
2224
|
+
};
|
|
2225
|
+
export type GlobalOmitConfig = {
|
|
2226
|
+
translation?: Prisma.TranslationOmit;
|
|
2227
|
+
commentary?: Prisma.CommentaryOmit;
|
|
2228
|
+
eBibleSource?: Prisma.EBibleSourceOmit;
|
|
2229
|
+
inputFile?: Prisma.InputFileOmit;
|
|
2230
|
+
inputFileWarning?: Prisma.InputFileWarningOmit;
|
|
2231
|
+
book?: Prisma.BookOmit;
|
|
2232
|
+
commentaryBook?: Prisma.CommentaryBookOmit;
|
|
2233
|
+
commentaryProfile?: Prisma.CommentaryProfileOmit;
|
|
2234
|
+
chapter?: Prisma.ChapterOmit;
|
|
2235
|
+
commentaryChapter?: Prisma.CommentaryChapterOmit;
|
|
2236
|
+
chapterAudioUrl?: Prisma.ChapterAudioUrlOmit;
|
|
2237
|
+
chapterAudioTiming?: Prisma.ChapterAudioTimingOmit;
|
|
2238
|
+
chapterWords?: Prisma.ChapterWordsOmit;
|
|
2239
|
+
chapterVerse?: Prisma.ChapterVerseOmit;
|
|
2240
|
+
commentaryChapterVerse?: Prisma.CommentaryChapterVerseOmit;
|
|
2241
|
+
chapterFootnote?: Prisma.ChapterFootnoteOmit;
|
|
2242
|
+
dataset?: Prisma.DatasetOmit;
|
|
2243
|
+
datasetBook?: Prisma.DatasetBookOmit;
|
|
2244
|
+
datasetChapter?: Prisma.DatasetChapterOmit;
|
|
2245
|
+
datasetChapterVerse?: Prisma.DatasetChapterVerseOmit;
|
|
2246
|
+
datasetReference?: Prisma.DatasetReferenceOmit;
|
|
2247
|
+
};
|
|
2248
|
+
export type LogLevel = 'info' | 'query' | 'warn' | 'error';
|
|
2249
|
+
export type LogDefinition = {
|
|
2250
|
+
level: LogLevel;
|
|
2251
|
+
emit: 'stdout' | 'event';
|
|
2252
|
+
};
|
|
2253
|
+
export type CheckIsLogLevel<T> = T extends LogLevel ? T : never;
|
|
2254
|
+
export type GetLogType<T> = CheckIsLogLevel<T extends LogDefinition ? T['level'] : T>;
|
|
2255
|
+
export type GetEvents<T extends any[]> = T extends Array<LogLevel | LogDefinition> ? GetLogType<T[number]> : never;
|
|
2256
|
+
export type QueryEvent = {
|
|
2257
|
+
timestamp: Date;
|
|
2258
|
+
query: string;
|
|
2259
|
+
params: string;
|
|
2260
|
+
duration: number;
|
|
2261
|
+
target: string;
|
|
2262
|
+
};
|
|
2263
|
+
export type LogEvent = {
|
|
2264
|
+
timestamp: Date;
|
|
2265
|
+
message: string;
|
|
2266
|
+
target: string;
|
|
2267
|
+
};
|
|
2268
|
+
export type PrismaAction = 'findUnique' | 'findUniqueOrThrow' | 'findMany' | 'findFirst' | 'findFirstOrThrow' | 'create' | 'createMany' | 'createManyAndReturn' | 'update' | 'updateMany' | 'updateManyAndReturn' | 'upsert' | 'delete' | 'deleteMany' | 'executeRaw' | 'queryRaw' | 'aggregate' | 'count' | 'runCommandRaw' | 'findRaw' | 'groupBy';
|
|
2269
|
+
/**
|
|
2270
|
+
* `PrismaClient` proxy available in interactive transactions.
|
|
2271
|
+
*/
|
|
2272
|
+
export type TransactionClient = Omit<DefaultPrismaClient, runtime.ITXClientDenyList>;
|
|
2273
|
+
//# sourceMappingURL=prismaNamespace.d.ts.map
|