@helloao/cli 0.2.0 → 0.4.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 +4 -0
- package/dist/cjs/cli.cjs +7361 -8421
- package/dist/cjs/index.cjs +7663 -8857
- package/dist/esm/cli.js +6118 -0
- package/dist/esm/cli.js.map +7 -0
- package/dist/esm/index.js +1272 -6039
- package/dist/esm/index.js.map +4 -4
- package/dist/types/actions.d.ts +43 -1
- package/dist/types/db.d.ts +19 -8
- package/dist/types/ebible.d.ts +1 -1
- package/dist/types/files.d.ts +6 -1
- package/dist/types/prisma-gen/browser.d.ts +115 -0
- package/dist/types/prisma-gen/client.d.ts +134 -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 +364 -0
- package/dist/types/prisma-gen/internal/prismaNamespace.d.ts +2358 -0
- package/dist/types/prisma-gen/internal/prismaNamespaceBrowser.d.ts +304 -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 +1810 -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/DatasetEntity.d.ts +1214 -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 +24 -0
- package/dist/types/s3.d.ts +2 -0
- package/dist/types/uploads.d.ts +1 -1
- package/meta/ARBNAV.json +10 -10
- package/meta/BSB.json +10 -10
- package/meta/HBOMAS.json +10 -10
- package/meta/HINIRV.json +10 -10
- package/meta/eng_dra.json +10 -10
- package/migrations/20240420231455_initial/migration.sql +66 -66
- package/migrations/20240711173108_add_chapter_audio/migration.sql +13 -13
- package/migrations/20240724212651_add_hashing/migration.sql +25 -25
- package/migrations/20250625201152_add_extra_ebible_metadata/migration.sql +3 -3
- package/migrations/20250630200532_add_apocryhpa_flag/migration.sql +2 -2
- package/migrations/20250701195337_add_file_warnings/migration.sql +8 -8
- package/migrations/20251028135135_add_datasets/migration.sql +72 -72
- package/migrations/20251028144932_fix_dataset_types/migration.sql +50 -50
- package/migrations/20260217200934_add_license_notice/migration.sql +5 -5
- package/migrations/20260703000000_add_chapter_audio_timing/migration.sql +13 -0
- package/migrations/20260809000000_add_chapter_words/migration.sql +12 -0
- package/migrations/20260829000000_add_dataset_entities/migration.sql +12 -0
- package/package.json +21 -18
- package/schema.prisma +65 -2
- 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 -403
- package/prisma-gen/index-browser.js +0 -397
- package/prisma-gen/index.d.ts +0 -34011
- package/prisma-gen/index.js +0 -426
- 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 -397
|
@@ -0,0 +1,1514 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../internal/prismaNamespace";
|
|
3
|
+
/**
|
|
4
|
+
* Model CommentaryChapterVerse
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export type CommentaryChapterVerseModel = runtime.Types.Result.DefaultSelection<Prisma.$CommentaryChapterVersePayload>;
|
|
8
|
+
export type AggregateCommentaryChapterVerse = {
|
|
9
|
+
_count: CommentaryChapterVerseCountAggregateOutputType | null;
|
|
10
|
+
_avg: CommentaryChapterVerseAvgAggregateOutputType | null;
|
|
11
|
+
_sum: CommentaryChapterVerseSumAggregateOutputType | null;
|
|
12
|
+
_min: CommentaryChapterVerseMinAggregateOutputType | null;
|
|
13
|
+
_max: CommentaryChapterVerseMaxAggregateOutputType | null;
|
|
14
|
+
};
|
|
15
|
+
export type CommentaryChapterVerseAvgAggregateOutputType = {
|
|
16
|
+
number: number | null;
|
|
17
|
+
chapterNumber: number | null;
|
|
18
|
+
};
|
|
19
|
+
export type CommentaryChapterVerseSumAggregateOutputType = {
|
|
20
|
+
number: number | null;
|
|
21
|
+
chapterNumber: number | null;
|
|
22
|
+
};
|
|
23
|
+
export type CommentaryChapterVerseMinAggregateOutputType = {
|
|
24
|
+
number: number | null;
|
|
25
|
+
chapterNumber: number | null;
|
|
26
|
+
bookId: string | null;
|
|
27
|
+
commentaryId: string | null;
|
|
28
|
+
text: string | null;
|
|
29
|
+
contentJson: string | null;
|
|
30
|
+
sha256: string | null;
|
|
31
|
+
};
|
|
32
|
+
export type CommentaryChapterVerseMaxAggregateOutputType = {
|
|
33
|
+
number: number | null;
|
|
34
|
+
chapterNumber: number | null;
|
|
35
|
+
bookId: string | null;
|
|
36
|
+
commentaryId: string | null;
|
|
37
|
+
text: string | null;
|
|
38
|
+
contentJson: string | null;
|
|
39
|
+
sha256: string | null;
|
|
40
|
+
};
|
|
41
|
+
export type CommentaryChapterVerseCountAggregateOutputType = {
|
|
42
|
+
number: number;
|
|
43
|
+
chapterNumber: number;
|
|
44
|
+
bookId: number;
|
|
45
|
+
commentaryId: number;
|
|
46
|
+
text: number;
|
|
47
|
+
contentJson: number;
|
|
48
|
+
sha256: number;
|
|
49
|
+
_all: number;
|
|
50
|
+
};
|
|
51
|
+
export type CommentaryChapterVerseAvgAggregateInputType = {
|
|
52
|
+
number?: true;
|
|
53
|
+
chapterNumber?: true;
|
|
54
|
+
};
|
|
55
|
+
export type CommentaryChapterVerseSumAggregateInputType = {
|
|
56
|
+
number?: true;
|
|
57
|
+
chapterNumber?: true;
|
|
58
|
+
};
|
|
59
|
+
export type CommentaryChapterVerseMinAggregateInputType = {
|
|
60
|
+
number?: true;
|
|
61
|
+
chapterNumber?: true;
|
|
62
|
+
bookId?: true;
|
|
63
|
+
commentaryId?: true;
|
|
64
|
+
text?: true;
|
|
65
|
+
contentJson?: true;
|
|
66
|
+
sha256?: true;
|
|
67
|
+
};
|
|
68
|
+
export type CommentaryChapterVerseMaxAggregateInputType = {
|
|
69
|
+
number?: true;
|
|
70
|
+
chapterNumber?: true;
|
|
71
|
+
bookId?: true;
|
|
72
|
+
commentaryId?: true;
|
|
73
|
+
text?: true;
|
|
74
|
+
contentJson?: true;
|
|
75
|
+
sha256?: true;
|
|
76
|
+
};
|
|
77
|
+
export type CommentaryChapterVerseCountAggregateInputType = {
|
|
78
|
+
number?: true;
|
|
79
|
+
chapterNumber?: true;
|
|
80
|
+
bookId?: true;
|
|
81
|
+
commentaryId?: true;
|
|
82
|
+
text?: true;
|
|
83
|
+
contentJson?: true;
|
|
84
|
+
sha256?: true;
|
|
85
|
+
_all?: true;
|
|
86
|
+
};
|
|
87
|
+
export type CommentaryChapterVerseAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
88
|
+
/**
|
|
89
|
+
* Filter which CommentaryChapterVerse to aggregate.
|
|
90
|
+
*/
|
|
91
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
92
|
+
/**
|
|
93
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
94
|
+
*
|
|
95
|
+
* Determine the order of CommentaryChapterVerses to fetch.
|
|
96
|
+
*/
|
|
97
|
+
orderBy?: Prisma.CommentaryChapterVerseOrderByWithRelationInput | Prisma.CommentaryChapterVerseOrderByWithRelationInput[];
|
|
98
|
+
/**
|
|
99
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
100
|
+
*
|
|
101
|
+
* Sets the start position
|
|
102
|
+
*/
|
|
103
|
+
cursor?: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
104
|
+
/**
|
|
105
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
106
|
+
*
|
|
107
|
+
* Take `±n` CommentaryChapterVerses from the position of the cursor.
|
|
108
|
+
*/
|
|
109
|
+
take?: number;
|
|
110
|
+
/**
|
|
111
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
112
|
+
*
|
|
113
|
+
* Skip the first `n` CommentaryChapterVerses.
|
|
114
|
+
*/
|
|
115
|
+
skip?: number;
|
|
116
|
+
/**
|
|
117
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
118
|
+
*
|
|
119
|
+
* Count returned CommentaryChapterVerses
|
|
120
|
+
**/
|
|
121
|
+
_count?: true | CommentaryChapterVerseCountAggregateInputType;
|
|
122
|
+
/**
|
|
123
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
124
|
+
*
|
|
125
|
+
* Select which fields to average
|
|
126
|
+
**/
|
|
127
|
+
_avg?: CommentaryChapterVerseAvgAggregateInputType;
|
|
128
|
+
/**
|
|
129
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
130
|
+
*
|
|
131
|
+
* Select which fields to sum
|
|
132
|
+
**/
|
|
133
|
+
_sum?: CommentaryChapterVerseSumAggregateInputType;
|
|
134
|
+
/**
|
|
135
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
136
|
+
*
|
|
137
|
+
* Select which fields to find the minimum value
|
|
138
|
+
**/
|
|
139
|
+
_min?: CommentaryChapterVerseMinAggregateInputType;
|
|
140
|
+
/**
|
|
141
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
142
|
+
*
|
|
143
|
+
* Select which fields to find the maximum value
|
|
144
|
+
**/
|
|
145
|
+
_max?: CommentaryChapterVerseMaxAggregateInputType;
|
|
146
|
+
};
|
|
147
|
+
export type GetCommentaryChapterVerseAggregateType<T extends CommentaryChapterVerseAggregateArgs> = {
|
|
148
|
+
[P in keyof T & keyof AggregateCommentaryChapterVerse]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateCommentaryChapterVerse[P]> : Prisma.GetScalarType<T[P], AggregateCommentaryChapterVerse[P]>;
|
|
149
|
+
};
|
|
150
|
+
export type CommentaryChapterVerseGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
151
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
152
|
+
orderBy?: Prisma.CommentaryChapterVerseOrderByWithAggregationInput | Prisma.CommentaryChapterVerseOrderByWithAggregationInput[];
|
|
153
|
+
by: Prisma.CommentaryChapterVerseScalarFieldEnum[] | Prisma.CommentaryChapterVerseScalarFieldEnum;
|
|
154
|
+
having?: Prisma.CommentaryChapterVerseScalarWhereWithAggregatesInput;
|
|
155
|
+
take?: number;
|
|
156
|
+
skip?: number;
|
|
157
|
+
_count?: CommentaryChapterVerseCountAggregateInputType | true;
|
|
158
|
+
_avg?: CommentaryChapterVerseAvgAggregateInputType;
|
|
159
|
+
_sum?: CommentaryChapterVerseSumAggregateInputType;
|
|
160
|
+
_min?: CommentaryChapterVerseMinAggregateInputType;
|
|
161
|
+
_max?: CommentaryChapterVerseMaxAggregateInputType;
|
|
162
|
+
};
|
|
163
|
+
export type CommentaryChapterVerseGroupByOutputType = {
|
|
164
|
+
number: number;
|
|
165
|
+
chapterNumber: number;
|
|
166
|
+
bookId: string;
|
|
167
|
+
commentaryId: string;
|
|
168
|
+
text: string;
|
|
169
|
+
contentJson: string;
|
|
170
|
+
sha256: string | null;
|
|
171
|
+
_count: CommentaryChapterVerseCountAggregateOutputType | null;
|
|
172
|
+
_avg: CommentaryChapterVerseAvgAggregateOutputType | null;
|
|
173
|
+
_sum: CommentaryChapterVerseSumAggregateOutputType | null;
|
|
174
|
+
_min: CommentaryChapterVerseMinAggregateOutputType | null;
|
|
175
|
+
_max: CommentaryChapterVerseMaxAggregateOutputType | null;
|
|
176
|
+
};
|
|
177
|
+
export type GetCommentaryChapterVerseGroupByPayload<T extends CommentaryChapterVerseGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<CommentaryChapterVerseGroupByOutputType, T['by']> & {
|
|
178
|
+
[P in ((keyof T) & (keyof CommentaryChapterVerseGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], CommentaryChapterVerseGroupByOutputType[P]> : Prisma.GetScalarType<T[P], CommentaryChapterVerseGroupByOutputType[P]>;
|
|
179
|
+
}>>;
|
|
180
|
+
export type CommentaryChapterVerseWhereInput = {
|
|
181
|
+
AND?: Prisma.CommentaryChapterVerseWhereInput | Prisma.CommentaryChapterVerseWhereInput[];
|
|
182
|
+
OR?: Prisma.CommentaryChapterVerseWhereInput[];
|
|
183
|
+
NOT?: Prisma.CommentaryChapterVerseWhereInput | Prisma.CommentaryChapterVerseWhereInput[];
|
|
184
|
+
number?: Prisma.IntFilter<"CommentaryChapterVerse"> | number;
|
|
185
|
+
chapterNumber?: Prisma.IntFilter<"CommentaryChapterVerse"> | number;
|
|
186
|
+
bookId?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
187
|
+
commentaryId?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
188
|
+
text?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
189
|
+
contentJson?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
190
|
+
sha256?: Prisma.StringNullableFilter<"CommentaryChapterVerse"> | string | null;
|
|
191
|
+
chapter?: Prisma.XOR<Prisma.CommentaryChapterScalarRelationFilter, Prisma.CommentaryChapterWhereInput>;
|
|
192
|
+
book?: Prisma.XOR<Prisma.CommentaryBookScalarRelationFilter, Prisma.CommentaryBookWhereInput>;
|
|
193
|
+
commentary?: Prisma.XOR<Prisma.CommentaryScalarRelationFilter, Prisma.CommentaryWhereInput>;
|
|
194
|
+
};
|
|
195
|
+
export type CommentaryChapterVerseOrderByWithRelationInput = {
|
|
196
|
+
number?: Prisma.SortOrder;
|
|
197
|
+
chapterNumber?: Prisma.SortOrder;
|
|
198
|
+
bookId?: Prisma.SortOrder;
|
|
199
|
+
commentaryId?: Prisma.SortOrder;
|
|
200
|
+
text?: Prisma.SortOrder;
|
|
201
|
+
contentJson?: Prisma.SortOrder;
|
|
202
|
+
sha256?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
203
|
+
chapter?: Prisma.CommentaryChapterOrderByWithRelationInput;
|
|
204
|
+
book?: Prisma.CommentaryBookOrderByWithRelationInput;
|
|
205
|
+
commentary?: Prisma.CommentaryOrderByWithRelationInput;
|
|
206
|
+
};
|
|
207
|
+
export type CommentaryChapterVerseWhereUniqueInput = Prisma.AtLeast<{
|
|
208
|
+
commentaryId_bookId_chapterNumber_number?: Prisma.CommentaryChapterVerseCommentaryIdBookIdChapterNumberNumberCompoundUniqueInput;
|
|
209
|
+
AND?: Prisma.CommentaryChapterVerseWhereInput | Prisma.CommentaryChapterVerseWhereInput[];
|
|
210
|
+
OR?: Prisma.CommentaryChapterVerseWhereInput[];
|
|
211
|
+
NOT?: Prisma.CommentaryChapterVerseWhereInput | Prisma.CommentaryChapterVerseWhereInput[];
|
|
212
|
+
number?: Prisma.IntFilter<"CommentaryChapterVerse"> | number;
|
|
213
|
+
chapterNumber?: Prisma.IntFilter<"CommentaryChapterVerse"> | number;
|
|
214
|
+
bookId?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
215
|
+
commentaryId?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
216
|
+
text?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
217
|
+
contentJson?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
218
|
+
sha256?: Prisma.StringNullableFilter<"CommentaryChapterVerse"> | string | null;
|
|
219
|
+
chapter?: Prisma.XOR<Prisma.CommentaryChapterScalarRelationFilter, Prisma.CommentaryChapterWhereInput>;
|
|
220
|
+
book?: Prisma.XOR<Prisma.CommentaryBookScalarRelationFilter, Prisma.CommentaryBookWhereInput>;
|
|
221
|
+
commentary?: Prisma.XOR<Prisma.CommentaryScalarRelationFilter, Prisma.CommentaryWhereInput>;
|
|
222
|
+
}, "commentaryId_bookId_chapterNumber_number">;
|
|
223
|
+
export type CommentaryChapterVerseOrderByWithAggregationInput = {
|
|
224
|
+
number?: Prisma.SortOrder;
|
|
225
|
+
chapterNumber?: Prisma.SortOrder;
|
|
226
|
+
bookId?: Prisma.SortOrder;
|
|
227
|
+
commentaryId?: Prisma.SortOrder;
|
|
228
|
+
text?: Prisma.SortOrder;
|
|
229
|
+
contentJson?: Prisma.SortOrder;
|
|
230
|
+
sha256?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
231
|
+
_count?: Prisma.CommentaryChapterVerseCountOrderByAggregateInput;
|
|
232
|
+
_avg?: Prisma.CommentaryChapterVerseAvgOrderByAggregateInput;
|
|
233
|
+
_max?: Prisma.CommentaryChapterVerseMaxOrderByAggregateInput;
|
|
234
|
+
_min?: Prisma.CommentaryChapterVerseMinOrderByAggregateInput;
|
|
235
|
+
_sum?: Prisma.CommentaryChapterVerseSumOrderByAggregateInput;
|
|
236
|
+
};
|
|
237
|
+
export type CommentaryChapterVerseScalarWhereWithAggregatesInput = {
|
|
238
|
+
AND?: Prisma.CommentaryChapterVerseScalarWhereWithAggregatesInput | Prisma.CommentaryChapterVerseScalarWhereWithAggregatesInput[];
|
|
239
|
+
OR?: Prisma.CommentaryChapterVerseScalarWhereWithAggregatesInput[];
|
|
240
|
+
NOT?: Prisma.CommentaryChapterVerseScalarWhereWithAggregatesInput | Prisma.CommentaryChapterVerseScalarWhereWithAggregatesInput[];
|
|
241
|
+
number?: Prisma.IntWithAggregatesFilter<"CommentaryChapterVerse"> | number;
|
|
242
|
+
chapterNumber?: Prisma.IntWithAggregatesFilter<"CommentaryChapterVerse"> | number;
|
|
243
|
+
bookId?: Prisma.StringWithAggregatesFilter<"CommentaryChapterVerse"> | string;
|
|
244
|
+
commentaryId?: Prisma.StringWithAggregatesFilter<"CommentaryChapterVerse"> | string;
|
|
245
|
+
text?: Prisma.StringWithAggregatesFilter<"CommentaryChapterVerse"> | string;
|
|
246
|
+
contentJson?: Prisma.StringWithAggregatesFilter<"CommentaryChapterVerse"> | string;
|
|
247
|
+
sha256?: Prisma.StringNullableWithAggregatesFilter<"CommentaryChapterVerse"> | string | null;
|
|
248
|
+
};
|
|
249
|
+
export type CommentaryChapterVerseCreateInput = {
|
|
250
|
+
number: number;
|
|
251
|
+
text: string;
|
|
252
|
+
contentJson: string;
|
|
253
|
+
sha256?: string | null;
|
|
254
|
+
chapter: Prisma.CommentaryChapterCreateNestedOneWithoutVersesInput;
|
|
255
|
+
book: Prisma.CommentaryBookCreateNestedOneWithoutVersesInput;
|
|
256
|
+
commentary: Prisma.CommentaryCreateNestedOneWithoutVersesInput;
|
|
257
|
+
};
|
|
258
|
+
export type CommentaryChapterVerseUncheckedCreateInput = {
|
|
259
|
+
number: number;
|
|
260
|
+
chapterNumber: number;
|
|
261
|
+
bookId: string;
|
|
262
|
+
commentaryId: string;
|
|
263
|
+
text: string;
|
|
264
|
+
contentJson: string;
|
|
265
|
+
sha256?: string | null;
|
|
266
|
+
};
|
|
267
|
+
export type CommentaryChapterVerseUpdateInput = {
|
|
268
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
269
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
270
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
271
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
272
|
+
chapter?: Prisma.CommentaryChapterUpdateOneRequiredWithoutVersesNestedInput;
|
|
273
|
+
book?: Prisma.CommentaryBookUpdateOneRequiredWithoutVersesNestedInput;
|
|
274
|
+
commentary?: Prisma.CommentaryUpdateOneRequiredWithoutVersesNestedInput;
|
|
275
|
+
};
|
|
276
|
+
export type CommentaryChapterVerseUncheckedUpdateInput = {
|
|
277
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
278
|
+
chapterNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
279
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
280
|
+
commentaryId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
281
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
282
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
283
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
284
|
+
};
|
|
285
|
+
export type CommentaryChapterVerseCreateManyInput = {
|
|
286
|
+
number: number;
|
|
287
|
+
chapterNumber: number;
|
|
288
|
+
bookId: string;
|
|
289
|
+
commentaryId: string;
|
|
290
|
+
text: string;
|
|
291
|
+
contentJson: string;
|
|
292
|
+
sha256?: string | null;
|
|
293
|
+
};
|
|
294
|
+
export type CommentaryChapterVerseUpdateManyMutationInput = {
|
|
295
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
296
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
297
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
298
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
299
|
+
};
|
|
300
|
+
export type CommentaryChapterVerseUncheckedUpdateManyInput = {
|
|
301
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
302
|
+
chapterNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
303
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
304
|
+
commentaryId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
305
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
306
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
307
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
308
|
+
};
|
|
309
|
+
export type CommentaryChapterVerseListRelationFilter = {
|
|
310
|
+
every?: Prisma.CommentaryChapterVerseWhereInput;
|
|
311
|
+
some?: Prisma.CommentaryChapterVerseWhereInput;
|
|
312
|
+
none?: Prisma.CommentaryChapterVerseWhereInput;
|
|
313
|
+
};
|
|
314
|
+
export type CommentaryChapterVerseOrderByRelationAggregateInput = {
|
|
315
|
+
_count?: Prisma.SortOrder;
|
|
316
|
+
};
|
|
317
|
+
export type CommentaryChapterVerseCommentaryIdBookIdChapterNumberNumberCompoundUniqueInput = {
|
|
318
|
+
commentaryId: string;
|
|
319
|
+
bookId: string;
|
|
320
|
+
chapterNumber: number;
|
|
321
|
+
number: number;
|
|
322
|
+
};
|
|
323
|
+
export type CommentaryChapterVerseCountOrderByAggregateInput = {
|
|
324
|
+
number?: Prisma.SortOrder;
|
|
325
|
+
chapterNumber?: Prisma.SortOrder;
|
|
326
|
+
bookId?: Prisma.SortOrder;
|
|
327
|
+
commentaryId?: Prisma.SortOrder;
|
|
328
|
+
text?: Prisma.SortOrder;
|
|
329
|
+
contentJson?: Prisma.SortOrder;
|
|
330
|
+
sha256?: Prisma.SortOrder;
|
|
331
|
+
};
|
|
332
|
+
export type CommentaryChapterVerseAvgOrderByAggregateInput = {
|
|
333
|
+
number?: Prisma.SortOrder;
|
|
334
|
+
chapterNumber?: Prisma.SortOrder;
|
|
335
|
+
};
|
|
336
|
+
export type CommentaryChapterVerseMaxOrderByAggregateInput = {
|
|
337
|
+
number?: Prisma.SortOrder;
|
|
338
|
+
chapterNumber?: Prisma.SortOrder;
|
|
339
|
+
bookId?: Prisma.SortOrder;
|
|
340
|
+
commentaryId?: Prisma.SortOrder;
|
|
341
|
+
text?: Prisma.SortOrder;
|
|
342
|
+
contentJson?: Prisma.SortOrder;
|
|
343
|
+
sha256?: Prisma.SortOrder;
|
|
344
|
+
};
|
|
345
|
+
export type CommentaryChapterVerseMinOrderByAggregateInput = {
|
|
346
|
+
number?: Prisma.SortOrder;
|
|
347
|
+
chapterNumber?: Prisma.SortOrder;
|
|
348
|
+
bookId?: Prisma.SortOrder;
|
|
349
|
+
commentaryId?: Prisma.SortOrder;
|
|
350
|
+
text?: Prisma.SortOrder;
|
|
351
|
+
contentJson?: Prisma.SortOrder;
|
|
352
|
+
sha256?: Prisma.SortOrder;
|
|
353
|
+
};
|
|
354
|
+
export type CommentaryChapterVerseSumOrderByAggregateInput = {
|
|
355
|
+
number?: Prisma.SortOrder;
|
|
356
|
+
chapterNumber?: Prisma.SortOrder;
|
|
357
|
+
};
|
|
358
|
+
export type CommentaryChapterVerseCreateNestedManyWithoutCommentaryInput = {
|
|
359
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput> | Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput[];
|
|
360
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput[];
|
|
361
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyCommentaryInputEnvelope;
|
|
362
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
363
|
+
};
|
|
364
|
+
export type CommentaryChapterVerseUncheckedCreateNestedManyWithoutCommentaryInput = {
|
|
365
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput> | Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput[];
|
|
366
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput[];
|
|
367
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyCommentaryInputEnvelope;
|
|
368
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
369
|
+
};
|
|
370
|
+
export type CommentaryChapterVerseUpdateManyWithoutCommentaryNestedInput = {
|
|
371
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput> | Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput[];
|
|
372
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput[];
|
|
373
|
+
upsert?: Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutCommentaryInput | Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutCommentaryInput[];
|
|
374
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyCommentaryInputEnvelope;
|
|
375
|
+
set?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
376
|
+
disconnect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
377
|
+
delete?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
378
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
379
|
+
update?: Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutCommentaryInput | Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutCommentaryInput[];
|
|
380
|
+
updateMany?: Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutCommentaryInput | Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutCommentaryInput[];
|
|
381
|
+
deleteMany?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
382
|
+
};
|
|
383
|
+
export type CommentaryChapterVerseUncheckedUpdateManyWithoutCommentaryNestedInput = {
|
|
384
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput> | Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput[];
|
|
385
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput[];
|
|
386
|
+
upsert?: Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutCommentaryInput | Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutCommentaryInput[];
|
|
387
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyCommentaryInputEnvelope;
|
|
388
|
+
set?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
389
|
+
disconnect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
390
|
+
delete?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
391
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
392
|
+
update?: Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutCommentaryInput | Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutCommentaryInput[];
|
|
393
|
+
updateMany?: Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutCommentaryInput | Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutCommentaryInput[];
|
|
394
|
+
deleteMany?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
395
|
+
};
|
|
396
|
+
export type CommentaryChapterVerseCreateNestedManyWithoutBookInput = {
|
|
397
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput> | Prisma.CommentaryChapterVerseCreateWithoutBookInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput[];
|
|
398
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput[];
|
|
399
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyBookInputEnvelope;
|
|
400
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
401
|
+
};
|
|
402
|
+
export type CommentaryChapterVerseUncheckedCreateNestedManyWithoutBookInput = {
|
|
403
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput> | Prisma.CommentaryChapterVerseCreateWithoutBookInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput[];
|
|
404
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput[];
|
|
405
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyBookInputEnvelope;
|
|
406
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
407
|
+
};
|
|
408
|
+
export type CommentaryChapterVerseUpdateManyWithoutBookNestedInput = {
|
|
409
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput> | Prisma.CommentaryChapterVerseCreateWithoutBookInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput[];
|
|
410
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput[];
|
|
411
|
+
upsert?: Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutBookInput | Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutBookInput[];
|
|
412
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyBookInputEnvelope;
|
|
413
|
+
set?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
414
|
+
disconnect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
415
|
+
delete?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
416
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
417
|
+
update?: Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutBookInput | Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutBookInput[];
|
|
418
|
+
updateMany?: Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutBookInput | Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutBookInput[];
|
|
419
|
+
deleteMany?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
420
|
+
};
|
|
421
|
+
export type CommentaryChapterVerseUncheckedUpdateManyWithoutBookNestedInput = {
|
|
422
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput> | Prisma.CommentaryChapterVerseCreateWithoutBookInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput[];
|
|
423
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutBookInput[];
|
|
424
|
+
upsert?: Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutBookInput | Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutBookInput[];
|
|
425
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyBookInputEnvelope;
|
|
426
|
+
set?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
427
|
+
disconnect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
428
|
+
delete?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
429
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
430
|
+
update?: Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutBookInput | Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutBookInput[];
|
|
431
|
+
updateMany?: Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutBookInput | Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutBookInput[];
|
|
432
|
+
deleteMany?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
433
|
+
};
|
|
434
|
+
export type CommentaryChapterVerseCreateNestedManyWithoutChapterInput = {
|
|
435
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput> | Prisma.CommentaryChapterVerseCreateWithoutChapterInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput[];
|
|
436
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput[];
|
|
437
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyChapterInputEnvelope;
|
|
438
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
439
|
+
};
|
|
440
|
+
export type CommentaryChapterVerseUncheckedCreateNestedManyWithoutChapterInput = {
|
|
441
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput> | Prisma.CommentaryChapterVerseCreateWithoutChapterInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput[];
|
|
442
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput[];
|
|
443
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyChapterInputEnvelope;
|
|
444
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
445
|
+
};
|
|
446
|
+
export type CommentaryChapterVerseUpdateManyWithoutChapterNestedInput = {
|
|
447
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput> | Prisma.CommentaryChapterVerseCreateWithoutChapterInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput[];
|
|
448
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput[];
|
|
449
|
+
upsert?: Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutChapterInput | Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutChapterInput[];
|
|
450
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyChapterInputEnvelope;
|
|
451
|
+
set?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
452
|
+
disconnect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
453
|
+
delete?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
454
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
455
|
+
update?: Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutChapterInput | Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutChapterInput[];
|
|
456
|
+
updateMany?: Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutChapterInput | Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutChapterInput[];
|
|
457
|
+
deleteMany?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
458
|
+
};
|
|
459
|
+
export type CommentaryChapterVerseUncheckedUpdateManyWithoutChapterNestedInput = {
|
|
460
|
+
create?: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput> | Prisma.CommentaryChapterVerseCreateWithoutChapterInput[] | Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput[];
|
|
461
|
+
connectOrCreate?: Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput | Prisma.CommentaryChapterVerseCreateOrConnectWithoutChapterInput[];
|
|
462
|
+
upsert?: Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutChapterInput | Prisma.CommentaryChapterVerseUpsertWithWhereUniqueWithoutChapterInput[];
|
|
463
|
+
createMany?: Prisma.CommentaryChapterVerseCreateManyChapterInputEnvelope;
|
|
464
|
+
set?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
465
|
+
disconnect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
466
|
+
delete?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
467
|
+
connect?: Prisma.CommentaryChapterVerseWhereUniqueInput | Prisma.CommentaryChapterVerseWhereUniqueInput[];
|
|
468
|
+
update?: Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutChapterInput | Prisma.CommentaryChapterVerseUpdateWithWhereUniqueWithoutChapterInput[];
|
|
469
|
+
updateMany?: Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutChapterInput | Prisma.CommentaryChapterVerseUpdateManyWithWhereWithoutChapterInput[];
|
|
470
|
+
deleteMany?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
471
|
+
};
|
|
472
|
+
export type CommentaryChapterVerseCreateWithoutCommentaryInput = {
|
|
473
|
+
number: number;
|
|
474
|
+
text: string;
|
|
475
|
+
contentJson: string;
|
|
476
|
+
sha256?: string | null;
|
|
477
|
+
chapter: Prisma.CommentaryChapterCreateNestedOneWithoutVersesInput;
|
|
478
|
+
book: Prisma.CommentaryBookCreateNestedOneWithoutVersesInput;
|
|
479
|
+
};
|
|
480
|
+
export type CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput = {
|
|
481
|
+
number: number;
|
|
482
|
+
chapterNumber: number;
|
|
483
|
+
bookId: string;
|
|
484
|
+
text: string;
|
|
485
|
+
contentJson: string;
|
|
486
|
+
sha256?: string | null;
|
|
487
|
+
};
|
|
488
|
+
export type CommentaryChapterVerseCreateOrConnectWithoutCommentaryInput = {
|
|
489
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
490
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput>;
|
|
491
|
+
};
|
|
492
|
+
export type CommentaryChapterVerseCreateManyCommentaryInputEnvelope = {
|
|
493
|
+
data: Prisma.CommentaryChapterVerseCreateManyCommentaryInput | Prisma.CommentaryChapterVerseCreateManyCommentaryInput[];
|
|
494
|
+
};
|
|
495
|
+
export type CommentaryChapterVerseUpsertWithWhereUniqueWithoutCommentaryInput = {
|
|
496
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
497
|
+
update: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedUpdateWithoutCommentaryInput>;
|
|
498
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutCommentaryInput>;
|
|
499
|
+
};
|
|
500
|
+
export type CommentaryChapterVerseUpdateWithWhereUniqueWithoutCommentaryInput = {
|
|
501
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
502
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateWithoutCommentaryInput, Prisma.CommentaryChapterVerseUncheckedUpdateWithoutCommentaryInput>;
|
|
503
|
+
};
|
|
504
|
+
export type CommentaryChapterVerseUpdateManyWithWhereWithoutCommentaryInput = {
|
|
505
|
+
where: Prisma.CommentaryChapterVerseScalarWhereInput;
|
|
506
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateManyMutationInput, Prisma.CommentaryChapterVerseUncheckedUpdateManyWithoutCommentaryInput>;
|
|
507
|
+
};
|
|
508
|
+
export type CommentaryChapterVerseScalarWhereInput = {
|
|
509
|
+
AND?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
510
|
+
OR?: Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
511
|
+
NOT?: Prisma.CommentaryChapterVerseScalarWhereInput | Prisma.CommentaryChapterVerseScalarWhereInput[];
|
|
512
|
+
number?: Prisma.IntFilter<"CommentaryChapterVerse"> | number;
|
|
513
|
+
chapterNumber?: Prisma.IntFilter<"CommentaryChapterVerse"> | number;
|
|
514
|
+
bookId?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
515
|
+
commentaryId?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
516
|
+
text?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
517
|
+
contentJson?: Prisma.StringFilter<"CommentaryChapterVerse"> | string;
|
|
518
|
+
sha256?: Prisma.StringNullableFilter<"CommentaryChapterVerse"> | string | null;
|
|
519
|
+
};
|
|
520
|
+
export type CommentaryChapterVerseCreateWithoutBookInput = {
|
|
521
|
+
number: number;
|
|
522
|
+
text: string;
|
|
523
|
+
contentJson: string;
|
|
524
|
+
sha256?: string | null;
|
|
525
|
+
chapter: Prisma.CommentaryChapterCreateNestedOneWithoutVersesInput;
|
|
526
|
+
commentary: Prisma.CommentaryCreateNestedOneWithoutVersesInput;
|
|
527
|
+
};
|
|
528
|
+
export type CommentaryChapterVerseUncheckedCreateWithoutBookInput = {
|
|
529
|
+
number: number;
|
|
530
|
+
chapterNumber: number;
|
|
531
|
+
text: string;
|
|
532
|
+
contentJson: string;
|
|
533
|
+
sha256?: string | null;
|
|
534
|
+
};
|
|
535
|
+
export type CommentaryChapterVerseCreateOrConnectWithoutBookInput = {
|
|
536
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
537
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput>;
|
|
538
|
+
};
|
|
539
|
+
export type CommentaryChapterVerseCreateManyBookInputEnvelope = {
|
|
540
|
+
data: Prisma.CommentaryChapterVerseCreateManyBookInput | Prisma.CommentaryChapterVerseCreateManyBookInput[];
|
|
541
|
+
};
|
|
542
|
+
export type CommentaryChapterVerseUpsertWithWhereUniqueWithoutBookInput = {
|
|
543
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
544
|
+
update: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedUpdateWithoutBookInput>;
|
|
545
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutBookInput>;
|
|
546
|
+
};
|
|
547
|
+
export type CommentaryChapterVerseUpdateWithWhereUniqueWithoutBookInput = {
|
|
548
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
549
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateWithoutBookInput, Prisma.CommentaryChapterVerseUncheckedUpdateWithoutBookInput>;
|
|
550
|
+
};
|
|
551
|
+
export type CommentaryChapterVerseUpdateManyWithWhereWithoutBookInput = {
|
|
552
|
+
where: Prisma.CommentaryChapterVerseScalarWhereInput;
|
|
553
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateManyMutationInput, Prisma.CommentaryChapterVerseUncheckedUpdateManyWithoutBookInput>;
|
|
554
|
+
};
|
|
555
|
+
export type CommentaryChapterVerseCreateWithoutChapterInput = {
|
|
556
|
+
number: number;
|
|
557
|
+
text: string;
|
|
558
|
+
contentJson: string;
|
|
559
|
+
sha256?: string | null;
|
|
560
|
+
book: Prisma.CommentaryBookCreateNestedOneWithoutVersesInput;
|
|
561
|
+
commentary: Prisma.CommentaryCreateNestedOneWithoutVersesInput;
|
|
562
|
+
};
|
|
563
|
+
export type CommentaryChapterVerseUncheckedCreateWithoutChapterInput = {
|
|
564
|
+
number: number;
|
|
565
|
+
text: string;
|
|
566
|
+
contentJson: string;
|
|
567
|
+
sha256?: string | null;
|
|
568
|
+
};
|
|
569
|
+
export type CommentaryChapterVerseCreateOrConnectWithoutChapterInput = {
|
|
570
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
571
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput>;
|
|
572
|
+
};
|
|
573
|
+
export type CommentaryChapterVerseCreateManyChapterInputEnvelope = {
|
|
574
|
+
data: Prisma.CommentaryChapterVerseCreateManyChapterInput | Prisma.CommentaryChapterVerseCreateManyChapterInput[];
|
|
575
|
+
};
|
|
576
|
+
export type CommentaryChapterVerseUpsertWithWhereUniqueWithoutChapterInput = {
|
|
577
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
578
|
+
update: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedUpdateWithoutChapterInput>;
|
|
579
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedCreateWithoutChapterInput>;
|
|
580
|
+
};
|
|
581
|
+
export type CommentaryChapterVerseUpdateWithWhereUniqueWithoutChapterInput = {
|
|
582
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
583
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateWithoutChapterInput, Prisma.CommentaryChapterVerseUncheckedUpdateWithoutChapterInput>;
|
|
584
|
+
};
|
|
585
|
+
export type CommentaryChapterVerseUpdateManyWithWhereWithoutChapterInput = {
|
|
586
|
+
where: Prisma.CommentaryChapterVerseScalarWhereInput;
|
|
587
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateManyMutationInput, Prisma.CommentaryChapterVerseUncheckedUpdateManyWithoutChapterInput>;
|
|
588
|
+
};
|
|
589
|
+
export type CommentaryChapterVerseCreateManyCommentaryInput = {
|
|
590
|
+
number: number;
|
|
591
|
+
chapterNumber: number;
|
|
592
|
+
bookId: string;
|
|
593
|
+
text: string;
|
|
594
|
+
contentJson: string;
|
|
595
|
+
sha256?: string | null;
|
|
596
|
+
};
|
|
597
|
+
export type CommentaryChapterVerseUpdateWithoutCommentaryInput = {
|
|
598
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
599
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
600
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
601
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
602
|
+
chapter?: Prisma.CommentaryChapterUpdateOneRequiredWithoutVersesNestedInput;
|
|
603
|
+
book?: Prisma.CommentaryBookUpdateOneRequiredWithoutVersesNestedInput;
|
|
604
|
+
};
|
|
605
|
+
export type CommentaryChapterVerseUncheckedUpdateWithoutCommentaryInput = {
|
|
606
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
607
|
+
chapterNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
608
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
609
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
610
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
611
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
612
|
+
};
|
|
613
|
+
export type CommentaryChapterVerseUncheckedUpdateManyWithoutCommentaryInput = {
|
|
614
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
615
|
+
chapterNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
616
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
617
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
618
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
619
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
620
|
+
};
|
|
621
|
+
export type CommentaryChapterVerseCreateManyBookInput = {
|
|
622
|
+
number: number;
|
|
623
|
+
chapterNumber: number;
|
|
624
|
+
text: string;
|
|
625
|
+
contentJson: string;
|
|
626
|
+
sha256?: string | null;
|
|
627
|
+
};
|
|
628
|
+
export type CommentaryChapterVerseUpdateWithoutBookInput = {
|
|
629
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
630
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
631
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
632
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
633
|
+
chapter?: Prisma.CommentaryChapterUpdateOneRequiredWithoutVersesNestedInput;
|
|
634
|
+
commentary?: Prisma.CommentaryUpdateOneRequiredWithoutVersesNestedInput;
|
|
635
|
+
};
|
|
636
|
+
export type CommentaryChapterVerseUncheckedUpdateWithoutBookInput = {
|
|
637
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
638
|
+
chapterNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
639
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
640
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
641
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
642
|
+
};
|
|
643
|
+
export type CommentaryChapterVerseUncheckedUpdateManyWithoutBookInput = {
|
|
644
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
645
|
+
chapterNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
646
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
647
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
648
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
649
|
+
};
|
|
650
|
+
export type CommentaryChapterVerseCreateManyChapterInput = {
|
|
651
|
+
number: number;
|
|
652
|
+
text: string;
|
|
653
|
+
contentJson: string;
|
|
654
|
+
sha256?: string | null;
|
|
655
|
+
};
|
|
656
|
+
export type CommentaryChapterVerseUpdateWithoutChapterInput = {
|
|
657
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
658
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
659
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
660
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
661
|
+
book?: Prisma.CommentaryBookUpdateOneRequiredWithoutVersesNestedInput;
|
|
662
|
+
commentary?: Prisma.CommentaryUpdateOneRequiredWithoutVersesNestedInput;
|
|
663
|
+
};
|
|
664
|
+
export type CommentaryChapterVerseUncheckedUpdateWithoutChapterInput = {
|
|
665
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
666
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
667
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
668
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
669
|
+
};
|
|
670
|
+
export type CommentaryChapterVerseUncheckedUpdateManyWithoutChapterInput = {
|
|
671
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
672
|
+
text?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
673
|
+
contentJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
674
|
+
sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
675
|
+
};
|
|
676
|
+
export type CommentaryChapterVerseSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
677
|
+
number?: boolean;
|
|
678
|
+
chapterNumber?: boolean;
|
|
679
|
+
bookId?: boolean;
|
|
680
|
+
commentaryId?: boolean;
|
|
681
|
+
text?: boolean;
|
|
682
|
+
contentJson?: boolean;
|
|
683
|
+
sha256?: boolean;
|
|
684
|
+
chapter?: boolean | Prisma.CommentaryChapterDefaultArgs<ExtArgs>;
|
|
685
|
+
book?: boolean | Prisma.CommentaryBookDefaultArgs<ExtArgs>;
|
|
686
|
+
commentary?: boolean | Prisma.CommentaryDefaultArgs<ExtArgs>;
|
|
687
|
+
}, ExtArgs["result"]["commentaryChapterVerse"]>;
|
|
688
|
+
export type CommentaryChapterVerseSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
689
|
+
number?: boolean;
|
|
690
|
+
chapterNumber?: boolean;
|
|
691
|
+
bookId?: boolean;
|
|
692
|
+
commentaryId?: boolean;
|
|
693
|
+
text?: boolean;
|
|
694
|
+
contentJson?: boolean;
|
|
695
|
+
sha256?: boolean;
|
|
696
|
+
chapter?: boolean | Prisma.CommentaryChapterDefaultArgs<ExtArgs>;
|
|
697
|
+
book?: boolean | Prisma.CommentaryBookDefaultArgs<ExtArgs>;
|
|
698
|
+
commentary?: boolean | Prisma.CommentaryDefaultArgs<ExtArgs>;
|
|
699
|
+
}, ExtArgs["result"]["commentaryChapterVerse"]>;
|
|
700
|
+
export type CommentaryChapterVerseSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
701
|
+
number?: boolean;
|
|
702
|
+
chapterNumber?: boolean;
|
|
703
|
+
bookId?: boolean;
|
|
704
|
+
commentaryId?: boolean;
|
|
705
|
+
text?: boolean;
|
|
706
|
+
contentJson?: boolean;
|
|
707
|
+
sha256?: boolean;
|
|
708
|
+
chapter?: boolean | Prisma.CommentaryChapterDefaultArgs<ExtArgs>;
|
|
709
|
+
book?: boolean | Prisma.CommentaryBookDefaultArgs<ExtArgs>;
|
|
710
|
+
commentary?: boolean | Prisma.CommentaryDefaultArgs<ExtArgs>;
|
|
711
|
+
}, ExtArgs["result"]["commentaryChapterVerse"]>;
|
|
712
|
+
export type CommentaryChapterVerseSelectScalar = {
|
|
713
|
+
number?: boolean;
|
|
714
|
+
chapterNumber?: boolean;
|
|
715
|
+
bookId?: boolean;
|
|
716
|
+
commentaryId?: boolean;
|
|
717
|
+
text?: boolean;
|
|
718
|
+
contentJson?: boolean;
|
|
719
|
+
sha256?: boolean;
|
|
720
|
+
};
|
|
721
|
+
export type CommentaryChapterVerseOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"number" | "chapterNumber" | "bookId" | "commentaryId" | "text" | "contentJson" | "sha256", ExtArgs["result"]["commentaryChapterVerse"]>;
|
|
722
|
+
export type CommentaryChapterVerseInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
723
|
+
chapter?: boolean | Prisma.CommentaryChapterDefaultArgs<ExtArgs>;
|
|
724
|
+
book?: boolean | Prisma.CommentaryBookDefaultArgs<ExtArgs>;
|
|
725
|
+
commentary?: boolean | Prisma.CommentaryDefaultArgs<ExtArgs>;
|
|
726
|
+
};
|
|
727
|
+
export type CommentaryChapterVerseIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
728
|
+
chapter?: boolean | Prisma.CommentaryChapterDefaultArgs<ExtArgs>;
|
|
729
|
+
book?: boolean | Prisma.CommentaryBookDefaultArgs<ExtArgs>;
|
|
730
|
+
commentary?: boolean | Prisma.CommentaryDefaultArgs<ExtArgs>;
|
|
731
|
+
};
|
|
732
|
+
export type CommentaryChapterVerseIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
733
|
+
chapter?: boolean | Prisma.CommentaryChapterDefaultArgs<ExtArgs>;
|
|
734
|
+
book?: boolean | Prisma.CommentaryBookDefaultArgs<ExtArgs>;
|
|
735
|
+
commentary?: boolean | Prisma.CommentaryDefaultArgs<ExtArgs>;
|
|
736
|
+
};
|
|
737
|
+
export type $CommentaryChapterVersePayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
738
|
+
name: "CommentaryChapterVerse";
|
|
739
|
+
objects: {
|
|
740
|
+
chapter: Prisma.$CommentaryChapterPayload<ExtArgs>;
|
|
741
|
+
book: Prisma.$CommentaryBookPayload<ExtArgs>;
|
|
742
|
+
commentary: Prisma.$CommentaryPayload<ExtArgs>;
|
|
743
|
+
};
|
|
744
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
745
|
+
number: number;
|
|
746
|
+
chapterNumber: number;
|
|
747
|
+
bookId: string;
|
|
748
|
+
commentaryId: string;
|
|
749
|
+
text: string;
|
|
750
|
+
contentJson: string;
|
|
751
|
+
sha256: string | null;
|
|
752
|
+
}, ExtArgs["result"]["commentaryChapterVerse"]>;
|
|
753
|
+
composites: {};
|
|
754
|
+
};
|
|
755
|
+
export type CommentaryChapterVerseGetPayload<S extends boolean | null | undefined | CommentaryChapterVerseDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload, S>;
|
|
756
|
+
export type CommentaryChapterVerseCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<CommentaryChapterVerseFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
757
|
+
select?: CommentaryChapterVerseCountAggregateInputType | true;
|
|
758
|
+
};
|
|
759
|
+
export interface CommentaryChapterVerseDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
760
|
+
[K: symbol]: {
|
|
761
|
+
types: Prisma.TypeMap<ExtArgs>['model']['CommentaryChapterVerse'];
|
|
762
|
+
meta: {
|
|
763
|
+
name: 'CommentaryChapterVerse';
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
/**
|
|
767
|
+
* Find zero or one CommentaryChapterVerse that matches the filter.
|
|
768
|
+
* @param {CommentaryChapterVerseFindUniqueArgs} args - Arguments to find a CommentaryChapterVerse
|
|
769
|
+
* @example
|
|
770
|
+
* // Get one CommentaryChapterVerse
|
|
771
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.findUnique({
|
|
772
|
+
* where: {
|
|
773
|
+
* // ... provide filter here
|
|
774
|
+
* }
|
|
775
|
+
* })
|
|
776
|
+
*/
|
|
777
|
+
findUnique<T extends CommentaryChapterVerseFindUniqueArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseFindUniqueArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
778
|
+
/**
|
|
779
|
+
* Find one CommentaryChapterVerse that matches the filter or throw an error with `error.code='P2025'`
|
|
780
|
+
* if no matches were found.
|
|
781
|
+
* @param {CommentaryChapterVerseFindUniqueOrThrowArgs} args - Arguments to find a CommentaryChapterVerse
|
|
782
|
+
* @example
|
|
783
|
+
* // Get one CommentaryChapterVerse
|
|
784
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.findUniqueOrThrow({
|
|
785
|
+
* where: {
|
|
786
|
+
* // ... provide filter here
|
|
787
|
+
* }
|
|
788
|
+
* })
|
|
789
|
+
*/
|
|
790
|
+
findUniqueOrThrow<T extends CommentaryChapterVerseFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
791
|
+
/**
|
|
792
|
+
* Find the first CommentaryChapterVerse that matches the filter.
|
|
793
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
794
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
795
|
+
* @param {CommentaryChapterVerseFindFirstArgs} args - Arguments to find a CommentaryChapterVerse
|
|
796
|
+
* @example
|
|
797
|
+
* // Get one CommentaryChapterVerse
|
|
798
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.findFirst({
|
|
799
|
+
* where: {
|
|
800
|
+
* // ... provide filter here
|
|
801
|
+
* }
|
|
802
|
+
* })
|
|
803
|
+
*/
|
|
804
|
+
findFirst<T extends CommentaryChapterVerseFindFirstArgs>(args?: Prisma.SelectSubset<T, CommentaryChapterVerseFindFirstArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
805
|
+
/**
|
|
806
|
+
* Find the first CommentaryChapterVerse that matches the filter or
|
|
807
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
808
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
809
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
810
|
+
* @param {CommentaryChapterVerseFindFirstOrThrowArgs} args - Arguments to find a CommentaryChapterVerse
|
|
811
|
+
* @example
|
|
812
|
+
* // Get one CommentaryChapterVerse
|
|
813
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.findFirstOrThrow({
|
|
814
|
+
* where: {
|
|
815
|
+
* // ... provide filter here
|
|
816
|
+
* }
|
|
817
|
+
* })
|
|
818
|
+
*/
|
|
819
|
+
findFirstOrThrow<T extends CommentaryChapterVerseFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, CommentaryChapterVerseFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
820
|
+
/**
|
|
821
|
+
* Find zero or more CommentaryChapterVerses that matches the filter.
|
|
822
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
823
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
824
|
+
* @param {CommentaryChapterVerseFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
825
|
+
* @example
|
|
826
|
+
* // Get all CommentaryChapterVerses
|
|
827
|
+
* const commentaryChapterVerses = await prisma.commentaryChapterVerse.findMany()
|
|
828
|
+
*
|
|
829
|
+
* // Get first 10 CommentaryChapterVerses
|
|
830
|
+
* const commentaryChapterVerses = await prisma.commentaryChapterVerse.findMany({ take: 10 })
|
|
831
|
+
*
|
|
832
|
+
* // Only select the `number`
|
|
833
|
+
* const commentaryChapterVerseWithNumberOnly = await prisma.commentaryChapterVerse.findMany({ select: { number: true } })
|
|
834
|
+
*
|
|
835
|
+
*/
|
|
836
|
+
findMany<T extends CommentaryChapterVerseFindManyArgs>(args?: Prisma.SelectSubset<T, CommentaryChapterVerseFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
837
|
+
/**
|
|
838
|
+
* Create a CommentaryChapterVerse.
|
|
839
|
+
* @param {CommentaryChapterVerseCreateArgs} args - Arguments to create a CommentaryChapterVerse.
|
|
840
|
+
* @example
|
|
841
|
+
* // Create one CommentaryChapterVerse
|
|
842
|
+
* const CommentaryChapterVerse = await prisma.commentaryChapterVerse.create({
|
|
843
|
+
* data: {
|
|
844
|
+
* // ... data to create a CommentaryChapterVerse
|
|
845
|
+
* }
|
|
846
|
+
* })
|
|
847
|
+
*
|
|
848
|
+
*/
|
|
849
|
+
create<T extends CommentaryChapterVerseCreateArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseCreateArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
850
|
+
/**
|
|
851
|
+
* Create many CommentaryChapterVerses.
|
|
852
|
+
* @param {CommentaryChapterVerseCreateManyArgs} args - Arguments to create many CommentaryChapterVerses.
|
|
853
|
+
* @example
|
|
854
|
+
* // Create many CommentaryChapterVerses
|
|
855
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.createMany({
|
|
856
|
+
* data: [
|
|
857
|
+
* // ... provide data here
|
|
858
|
+
* ]
|
|
859
|
+
* })
|
|
860
|
+
*
|
|
861
|
+
*/
|
|
862
|
+
createMany<T extends CommentaryChapterVerseCreateManyArgs>(args?: Prisma.SelectSubset<T, CommentaryChapterVerseCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
863
|
+
/**
|
|
864
|
+
* Create many CommentaryChapterVerses and returns the data saved in the database.
|
|
865
|
+
* @param {CommentaryChapterVerseCreateManyAndReturnArgs} args - Arguments to create many CommentaryChapterVerses.
|
|
866
|
+
* @example
|
|
867
|
+
* // Create many CommentaryChapterVerses
|
|
868
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.createManyAndReturn({
|
|
869
|
+
* data: [
|
|
870
|
+
* // ... provide data here
|
|
871
|
+
* ]
|
|
872
|
+
* })
|
|
873
|
+
*
|
|
874
|
+
* // Create many CommentaryChapterVerses and only return the `number`
|
|
875
|
+
* const commentaryChapterVerseWithNumberOnly = await prisma.commentaryChapterVerse.createManyAndReturn({
|
|
876
|
+
* select: { number: true },
|
|
877
|
+
* data: [
|
|
878
|
+
* // ... provide data here
|
|
879
|
+
* ]
|
|
880
|
+
* })
|
|
881
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
882
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
883
|
+
*
|
|
884
|
+
*/
|
|
885
|
+
createManyAndReturn<T extends CommentaryChapterVerseCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, CommentaryChapterVerseCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
886
|
+
/**
|
|
887
|
+
* Delete a CommentaryChapterVerse.
|
|
888
|
+
* @param {CommentaryChapterVerseDeleteArgs} args - Arguments to delete one CommentaryChapterVerse.
|
|
889
|
+
* @example
|
|
890
|
+
* // Delete one CommentaryChapterVerse
|
|
891
|
+
* const CommentaryChapterVerse = await prisma.commentaryChapterVerse.delete({
|
|
892
|
+
* where: {
|
|
893
|
+
* // ... filter to delete one CommentaryChapterVerse
|
|
894
|
+
* }
|
|
895
|
+
* })
|
|
896
|
+
*
|
|
897
|
+
*/
|
|
898
|
+
delete<T extends CommentaryChapterVerseDeleteArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseDeleteArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
899
|
+
/**
|
|
900
|
+
* Update one CommentaryChapterVerse.
|
|
901
|
+
* @param {CommentaryChapterVerseUpdateArgs} args - Arguments to update one CommentaryChapterVerse.
|
|
902
|
+
* @example
|
|
903
|
+
* // Update one CommentaryChapterVerse
|
|
904
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.update({
|
|
905
|
+
* where: {
|
|
906
|
+
* // ... provide filter here
|
|
907
|
+
* },
|
|
908
|
+
* data: {
|
|
909
|
+
* // ... provide data here
|
|
910
|
+
* }
|
|
911
|
+
* })
|
|
912
|
+
*
|
|
913
|
+
*/
|
|
914
|
+
update<T extends CommentaryChapterVerseUpdateArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseUpdateArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
915
|
+
/**
|
|
916
|
+
* Delete zero or more CommentaryChapterVerses.
|
|
917
|
+
* @param {CommentaryChapterVerseDeleteManyArgs} args - Arguments to filter CommentaryChapterVerses to delete.
|
|
918
|
+
* @example
|
|
919
|
+
* // Delete a few CommentaryChapterVerses
|
|
920
|
+
* const { count } = await prisma.commentaryChapterVerse.deleteMany({
|
|
921
|
+
* where: {
|
|
922
|
+
* // ... provide filter here
|
|
923
|
+
* }
|
|
924
|
+
* })
|
|
925
|
+
*
|
|
926
|
+
*/
|
|
927
|
+
deleteMany<T extends CommentaryChapterVerseDeleteManyArgs>(args?: Prisma.SelectSubset<T, CommentaryChapterVerseDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
928
|
+
/**
|
|
929
|
+
* Update zero or more CommentaryChapterVerses.
|
|
930
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
931
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
932
|
+
* @param {CommentaryChapterVerseUpdateManyArgs} args - Arguments to update one or more rows.
|
|
933
|
+
* @example
|
|
934
|
+
* // Update many CommentaryChapterVerses
|
|
935
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.updateMany({
|
|
936
|
+
* where: {
|
|
937
|
+
* // ... provide filter here
|
|
938
|
+
* },
|
|
939
|
+
* data: {
|
|
940
|
+
* // ... provide data here
|
|
941
|
+
* }
|
|
942
|
+
* })
|
|
943
|
+
*
|
|
944
|
+
*/
|
|
945
|
+
updateMany<T extends CommentaryChapterVerseUpdateManyArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
946
|
+
/**
|
|
947
|
+
* Update zero or more CommentaryChapterVerses and returns the data updated in the database.
|
|
948
|
+
* @param {CommentaryChapterVerseUpdateManyAndReturnArgs} args - Arguments to update many CommentaryChapterVerses.
|
|
949
|
+
* @example
|
|
950
|
+
* // Update many CommentaryChapterVerses
|
|
951
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.updateManyAndReturn({
|
|
952
|
+
* where: {
|
|
953
|
+
* // ... provide filter here
|
|
954
|
+
* },
|
|
955
|
+
* data: [
|
|
956
|
+
* // ... provide data here
|
|
957
|
+
* ]
|
|
958
|
+
* })
|
|
959
|
+
*
|
|
960
|
+
* // Update zero or more CommentaryChapterVerses and only return the `number`
|
|
961
|
+
* const commentaryChapterVerseWithNumberOnly = await prisma.commentaryChapterVerse.updateManyAndReturn({
|
|
962
|
+
* select: { number: true },
|
|
963
|
+
* where: {
|
|
964
|
+
* // ... provide filter here
|
|
965
|
+
* },
|
|
966
|
+
* data: [
|
|
967
|
+
* // ... provide data here
|
|
968
|
+
* ]
|
|
969
|
+
* })
|
|
970
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
971
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
972
|
+
*
|
|
973
|
+
*/
|
|
974
|
+
updateManyAndReturn<T extends CommentaryChapterVerseUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
975
|
+
/**
|
|
976
|
+
* Create or update one CommentaryChapterVerse.
|
|
977
|
+
* @param {CommentaryChapterVerseUpsertArgs} args - Arguments to update or create a CommentaryChapterVerse.
|
|
978
|
+
* @example
|
|
979
|
+
* // Update or create a CommentaryChapterVerse
|
|
980
|
+
* const commentaryChapterVerse = await prisma.commentaryChapterVerse.upsert({
|
|
981
|
+
* create: {
|
|
982
|
+
* // ... data to create a CommentaryChapterVerse
|
|
983
|
+
* },
|
|
984
|
+
* update: {
|
|
985
|
+
* // ... in case it already exists, update
|
|
986
|
+
* },
|
|
987
|
+
* where: {
|
|
988
|
+
* // ... the filter for the CommentaryChapterVerse we want to update
|
|
989
|
+
* }
|
|
990
|
+
* })
|
|
991
|
+
*/
|
|
992
|
+
upsert<T extends CommentaryChapterVerseUpsertArgs>(args: Prisma.SelectSubset<T, CommentaryChapterVerseUpsertArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterVerseClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterVersePayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
993
|
+
/**
|
|
994
|
+
* Count the number of CommentaryChapterVerses.
|
|
995
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
996
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
997
|
+
* @param {CommentaryChapterVerseCountArgs} args - Arguments to filter CommentaryChapterVerses to count.
|
|
998
|
+
* @example
|
|
999
|
+
* // Count the number of CommentaryChapterVerses
|
|
1000
|
+
* const count = await prisma.commentaryChapterVerse.count({
|
|
1001
|
+
* where: {
|
|
1002
|
+
* // ... the filter for the CommentaryChapterVerses we want to count
|
|
1003
|
+
* }
|
|
1004
|
+
* })
|
|
1005
|
+
**/
|
|
1006
|
+
count<T extends CommentaryChapterVerseCountArgs>(args?: Prisma.Subset<T, CommentaryChapterVerseCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], CommentaryChapterVerseCountAggregateOutputType> : number>;
|
|
1007
|
+
/**
|
|
1008
|
+
* Allows you to perform aggregations operations on a CommentaryChapterVerse.
|
|
1009
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1010
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1011
|
+
* @param {CommentaryChapterVerseAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
1012
|
+
* @example
|
|
1013
|
+
* // Ordered by age ascending
|
|
1014
|
+
* // Where email contains prisma.io
|
|
1015
|
+
* // Limited to the 10 users
|
|
1016
|
+
* const aggregations = await prisma.user.aggregate({
|
|
1017
|
+
* _avg: {
|
|
1018
|
+
* age: true,
|
|
1019
|
+
* },
|
|
1020
|
+
* where: {
|
|
1021
|
+
* email: {
|
|
1022
|
+
* contains: "prisma.io",
|
|
1023
|
+
* },
|
|
1024
|
+
* },
|
|
1025
|
+
* orderBy: {
|
|
1026
|
+
* age: "asc",
|
|
1027
|
+
* },
|
|
1028
|
+
* take: 10,
|
|
1029
|
+
* })
|
|
1030
|
+
**/
|
|
1031
|
+
aggregate<T extends CommentaryChapterVerseAggregateArgs>(args: Prisma.Subset<T, CommentaryChapterVerseAggregateArgs>): Prisma.PrismaPromise<GetCommentaryChapterVerseAggregateType<T>>;
|
|
1032
|
+
/**
|
|
1033
|
+
* Group by CommentaryChapterVerse.
|
|
1034
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1035
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1036
|
+
* @param {CommentaryChapterVerseGroupByArgs} args - Group by arguments.
|
|
1037
|
+
* @example
|
|
1038
|
+
* // Group by city, order by createdAt, get count
|
|
1039
|
+
* const result = await prisma.user.groupBy({
|
|
1040
|
+
* by: ['city', 'createdAt'],
|
|
1041
|
+
* orderBy: {
|
|
1042
|
+
* createdAt: true
|
|
1043
|
+
* },
|
|
1044
|
+
* _count: {
|
|
1045
|
+
* _all: true
|
|
1046
|
+
* },
|
|
1047
|
+
* })
|
|
1048
|
+
*
|
|
1049
|
+
**/
|
|
1050
|
+
groupBy<T extends CommentaryChapterVerseGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
1051
|
+
orderBy: CommentaryChapterVerseGroupByArgs['orderBy'];
|
|
1052
|
+
} : {
|
|
1053
|
+
orderBy?: CommentaryChapterVerseGroupByArgs['orderBy'];
|
|
1054
|
+
}, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
|
|
1055
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
1056
|
+
Error,
|
|
1057
|
+
'Field ',
|
|
1058
|
+
P,
|
|
1059
|
+
` in "having" needs to be provided in "by"`
|
|
1060
|
+
];
|
|
1061
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
1062
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1063
|
+
}[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
1064
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1065
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
1066
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1067
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, CommentaryChapterVerseGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetCommentaryChapterVerseGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
1068
|
+
/**
|
|
1069
|
+
* Fields of the CommentaryChapterVerse model
|
|
1070
|
+
*/
|
|
1071
|
+
readonly fields: CommentaryChapterVerseFieldRefs;
|
|
1072
|
+
}
|
|
1073
|
+
/**
|
|
1074
|
+
* The delegate class that acts as a "Promise-like" for CommentaryChapterVerse.
|
|
1075
|
+
* Why is this prefixed with `Prisma__`?
|
|
1076
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
1077
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
1078
|
+
*/
|
|
1079
|
+
export interface Prisma__CommentaryChapterVerseClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1080
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1081
|
+
chapter<T extends Prisma.CommentaryChapterDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.CommentaryChapterDefaultArgs<ExtArgs>>): Prisma.Prisma__CommentaryChapterClient<runtime.Types.Result.GetResult<Prisma.$CommentaryChapterPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1082
|
+
book<T extends Prisma.CommentaryBookDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.CommentaryBookDefaultArgs<ExtArgs>>): Prisma.Prisma__CommentaryBookClient<runtime.Types.Result.GetResult<Prisma.$CommentaryBookPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1083
|
+
commentary<T extends Prisma.CommentaryDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.CommentaryDefaultArgs<ExtArgs>>): Prisma.Prisma__CommentaryClient<runtime.Types.Result.GetResult<Prisma.$CommentaryPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1084
|
+
/**
|
|
1085
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1086
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
1087
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1088
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
1089
|
+
*/
|
|
1090
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
1091
|
+
/**
|
|
1092
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
1093
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1094
|
+
* @returns A Promise for the completion of the callback.
|
|
1095
|
+
*/
|
|
1096
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
1097
|
+
/**
|
|
1098
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
1099
|
+
* resolved value cannot be modified from the callback.
|
|
1100
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
1101
|
+
* @returns A Promise for the completion of the callback.
|
|
1102
|
+
*/
|
|
1103
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
1104
|
+
}
|
|
1105
|
+
/**
|
|
1106
|
+
* Fields of the CommentaryChapterVerse model
|
|
1107
|
+
*/
|
|
1108
|
+
export interface CommentaryChapterVerseFieldRefs {
|
|
1109
|
+
readonly number: Prisma.FieldRef<"CommentaryChapterVerse", 'Int'>;
|
|
1110
|
+
readonly chapterNumber: Prisma.FieldRef<"CommentaryChapterVerse", 'Int'>;
|
|
1111
|
+
readonly bookId: Prisma.FieldRef<"CommentaryChapterVerse", 'String'>;
|
|
1112
|
+
readonly commentaryId: Prisma.FieldRef<"CommentaryChapterVerse", 'String'>;
|
|
1113
|
+
readonly text: Prisma.FieldRef<"CommentaryChapterVerse", 'String'>;
|
|
1114
|
+
readonly contentJson: Prisma.FieldRef<"CommentaryChapterVerse", 'String'>;
|
|
1115
|
+
readonly sha256: Prisma.FieldRef<"CommentaryChapterVerse", 'String'>;
|
|
1116
|
+
}
|
|
1117
|
+
/**
|
|
1118
|
+
* CommentaryChapterVerse findUnique
|
|
1119
|
+
*/
|
|
1120
|
+
export type CommentaryChapterVerseFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1121
|
+
/**
|
|
1122
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1123
|
+
*/
|
|
1124
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1125
|
+
/**
|
|
1126
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1127
|
+
*/
|
|
1128
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1129
|
+
/**
|
|
1130
|
+
* Choose, which related nodes to fetch as well
|
|
1131
|
+
*/
|
|
1132
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1133
|
+
/**
|
|
1134
|
+
* Filter, which CommentaryChapterVerse to fetch.
|
|
1135
|
+
*/
|
|
1136
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1137
|
+
};
|
|
1138
|
+
/**
|
|
1139
|
+
* CommentaryChapterVerse findUniqueOrThrow
|
|
1140
|
+
*/
|
|
1141
|
+
export type CommentaryChapterVerseFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1142
|
+
/**
|
|
1143
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1144
|
+
*/
|
|
1145
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1146
|
+
/**
|
|
1147
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1148
|
+
*/
|
|
1149
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1150
|
+
/**
|
|
1151
|
+
* Choose, which related nodes to fetch as well
|
|
1152
|
+
*/
|
|
1153
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1154
|
+
/**
|
|
1155
|
+
* Filter, which CommentaryChapterVerse to fetch.
|
|
1156
|
+
*/
|
|
1157
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1158
|
+
};
|
|
1159
|
+
/**
|
|
1160
|
+
* CommentaryChapterVerse findFirst
|
|
1161
|
+
*/
|
|
1162
|
+
export type CommentaryChapterVerseFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1163
|
+
/**
|
|
1164
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1165
|
+
*/
|
|
1166
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1167
|
+
/**
|
|
1168
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1169
|
+
*/
|
|
1170
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1171
|
+
/**
|
|
1172
|
+
* Choose, which related nodes to fetch as well
|
|
1173
|
+
*/
|
|
1174
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1175
|
+
/**
|
|
1176
|
+
* Filter, which CommentaryChapterVerse to fetch.
|
|
1177
|
+
*/
|
|
1178
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
1179
|
+
/**
|
|
1180
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1181
|
+
*
|
|
1182
|
+
* Determine the order of CommentaryChapterVerses to fetch.
|
|
1183
|
+
*/
|
|
1184
|
+
orderBy?: Prisma.CommentaryChapterVerseOrderByWithRelationInput | Prisma.CommentaryChapterVerseOrderByWithRelationInput[];
|
|
1185
|
+
/**
|
|
1186
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1187
|
+
*
|
|
1188
|
+
* Sets the position for searching for CommentaryChapterVerses.
|
|
1189
|
+
*/
|
|
1190
|
+
cursor?: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1191
|
+
/**
|
|
1192
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1193
|
+
*
|
|
1194
|
+
* Take `±n` CommentaryChapterVerses from the position of the cursor.
|
|
1195
|
+
*/
|
|
1196
|
+
take?: number;
|
|
1197
|
+
/**
|
|
1198
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1199
|
+
*
|
|
1200
|
+
* Skip the first `n` CommentaryChapterVerses.
|
|
1201
|
+
*/
|
|
1202
|
+
skip?: number;
|
|
1203
|
+
/**
|
|
1204
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1205
|
+
*
|
|
1206
|
+
* Filter by unique combinations of CommentaryChapterVerses.
|
|
1207
|
+
*/
|
|
1208
|
+
distinct?: Prisma.CommentaryChapterVerseScalarFieldEnum | Prisma.CommentaryChapterVerseScalarFieldEnum[];
|
|
1209
|
+
};
|
|
1210
|
+
/**
|
|
1211
|
+
* CommentaryChapterVerse findFirstOrThrow
|
|
1212
|
+
*/
|
|
1213
|
+
export type CommentaryChapterVerseFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1214
|
+
/**
|
|
1215
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1216
|
+
*/
|
|
1217
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1220
|
+
*/
|
|
1221
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1222
|
+
/**
|
|
1223
|
+
* Choose, which related nodes to fetch as well
|
|
1224
|
+
*/
|
|
1225
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1226
|
+
/**
|
|
1227
|
+
* Filter, which CommentaryChapterVerse to fetch.
|
|
1228
|
+
*/
|
|
1229
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
1230
|
+
/**
|
|
1231
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1232
|
+
*
|
|
1233
|
+
* Determine the order of CommentaryChapterVerses to fetch.
|
|
1234
|
+
*/
|
|
1235
|
+
orderBy?: Prisma.CommentaryChapterVerseOrderByWithRelationInput | Prisma.CommentaryChapterVerseOrderByWithRelationInput[];
|
|
1236
|
+
/**
|
|
1237
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1238
|
+
*
|
|
1239
|
+
* Sets the position for searching for CommentaryChapterVerses.
|
|
1240
|
+
*/
|
|
1241
|
+
cursor?: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1242
|
+
/**
|
|
1243
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1244
|
+
*
|
|
1245
|
+
* Take `±n` CommentaryChapterVerses from the position of the cursor.
|
|
1246
|
+
*/
|
|
1247
|
+
take?: number;
|
|
1248
|
+
/**
|
|
1249
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1250
|
+
*
|
|
1251
|
+
* Skip the first `n` CommentaryChapterVerses.
|
|
1252
|
+
*/
|
|
1253
|
+
skip?: number;
|
|
1254
|
+
/**
|
|
1255
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1256
|
+
*
|
|
1257
|
+
* Filter by unique combinations of CommentaryChapterVerses.
|
|
1258
|
+
*/
|
|
1259
|
+
distinct?: Prisma.CommentaryChapterVerseScalarFieldEnum | Prisma.CommentaryChapterVerseScalarFieldEnum[];
|
|
1260
|
+
};
|
|
1261
|
+
/**
|
|
1262
|
+
* CommentaryChapterVerse findMany
|
|
1263
|
+
*/
|
|
1264
|
+
export type CommentaryChapterVerseFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1265
|
+
/**
|
|
1266
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1267
|
+
*/
|
|
1268
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1269
|
+
/**
|
|
1270
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1271
|
+
*/
|
|
1272
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1273
|
+
/**
|
|
1274
|
+
* Choose, which related nodes to fetch as well
|
|
1275
|
+
*/
|
|
1276
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1277
|
+
/**
|
|
1278
|
+
* Filter, which CommentaryChapterVerses to fetch.
|
|
1279
|
+
*/
|
|
1280
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
1281
|
+
/**
|
|
1282
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1283
|
+
*
|
|
1284
|
+
* Determine the order of CommentaryChapterVerses to fetch.
|
|
1285
|
+
*/
|
|
1286
|
+
orderBy?: Prisma.CommentaryChapterVerseOrderByWithRelationInput | Prisma.CommentaryChapterVerseOrderByWithRelationInput[];
|
|
1287
|
+
/**
|
|
1288
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1289
|
+
*
|
|
1290
|
+
* Sets the position for listing CommentaryChapterVerses.
|
|
1291
|
+
*/
|
|
1292
|
+
cursor?: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1293
|
+
/**
|
|
1294
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1295
|
+
*
|
|
1296
|
+
* Take `±n` CommentaryChapterVerses from the position of the cursor.
|
|
1297
|
+
*/
|
|
1298
|
+
take?: number;
|
|
1299
|
+
/**
|
|
1300
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1301
|
+
*
|
|
1302
|
+
* Skip the first `n` CommentaryChapterVerses.
|
|
1303
|
+
*/
|
|
1304
|
+
skip?: number;
|
|
1305
|
+
/**
|
|
1306
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1307
|
+
*
|
|
1308
|
+
* Filter by unique combinations of CommentaryChapterVerses.
|
|
1309
|
+
*/
|
|
1310
|
+
distinct?: Prisma.CommentaryChapterVerseScalarFieldEnum | Prisma.CommentaryChapterVerseScalarFieldEnum[];
|
|
1311
|
+
};
|
|
1312
|
+
/**
|
|
1313
|
+
* CommentaryChapterVerse create
|
|
1314
|
+
*/
|
|
1315
|
+
export type CommentaryChapterVerseCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1316
|
+
/**
|
|
1317
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1318
|
+
*/
|
|
1319
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1320
|
+
/**
|
|
1321
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1322
|
+
*/
|
|
1323
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1324
|
+
/**
|
|
1325
|
+
* Choose, which related nodes to fetch as well
|
|
1326
|
+
*/
|
|
1327
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1328
|
+
/**
|
|
1329
|
+
* The data needed to create a CommentaryChapterVerse.
|
|
1330
|
+
*/
|
|
1331
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseCreateInput, Prisma.CommentaryChapterVerseUncheckedCreateInput>;
|
|
1332
|
+
};
|
|
1333
|
+
/**
|
|
1334
|
+
* CommentaryChapterVerse createMany
|
|
1335
|
+
*/
|
|
1336
|
+
export type CommentaryChapterVerseCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1337
|
+
/**
|
|
1338
|
+
* The data used to create many CommentaryChapterVerses.
|
|
1339
|
+
*/
|
|
1340
|
+
data: Prisma.CommentaryChapterVerseCreateManyInput | Prisma.CommentaryChapterVerseCreateManyInput[];
|
|
1341
|
+
};
|
|
1342
|
+
/**
|
|
1343
|
+
* CommentaryChapterVerse createManyAndReturn
|
|
1344
|
+
*/
|
|
1345
|
+
export type CommentaryChapterVerseCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1346
|
+
/**
|
|
1347
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1348
|
+
*/
|
|
1349
|
+
select?: Prisma.CommentaryChapterVerseSelectCreateManyAndReturn<ExtArgs> | null;
|
|
1350
|
+
/**
|
|
1351
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1352
|
+
*/
|
|
1353
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1354
|
+
/**
|
|
1355
|
+
* The data used to create many CommentaryChapterVerses.
|
|
1356
|
+
*/
|
|
1357
|
+
data: Prisma.CommentaryChapterVerseCreateManyInput | Prisma.CommentaryChapterVerseCreateManyInput[];
|
|
1358
|
+
/**
|
|
1359
|
+
* Choose, which related nodes to fetch as well
|
|
1360
|
+
*/
|
|
1361
|
+
include?: Prisma.CommentaryChapterVerseIncludeCreateManyAndReturn<ExtArgs> | null;
|
|
1362
|
+
};
|
|
1363
|
+
/**
|
|
1364
|
+
* CommentaryChapterVerse update
|
|
1365
|
+
*/
|
|
1366
|
+
export type CommentaryChapterVerseUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1367
|
+
/**
|
|
1368
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1369
|
+
*/
|
|
1370
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1371
|
+
/**
|
|
1372
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1373
|
+
*/
|
|
1374
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1375
|
+
/**
|
|
1376
|
+
* Choose, which related nodes to fetch as well
|
|
1377
|
+
*/
|
|
1378
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1379
|
+
/**
|
|
1380
|
+
* The data needed to update a CommentaryChapterVerse.
|
|
1381
|
+
*/
|
|
1382
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateInput, Prisma.CommentaryChapterVerseUncheckedUpdateInput>;
|
|
1383
|
+
/**
|
|
1384
|
+
* Choose, which CommentaryChapterVerse to update.
|
|
1385
|
+
*/
|
|
1386
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1387
|
+
};
|
|
1388
|
+
/**
|
|
1389
|
+
* CommentaryChapterVerse updateMany
|
|
1390
|
+
*/
|
|
1391
|
+
export type CommentaryChapterVerseUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1392
|
+
/**
|
|
1393
|
+
* The data used to update CommentaryChapterVerses.
|
|
1394
|
+
*/
|
|
1395
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateManyMutationInput, Prisma.CommentaryChapterVerseUncheckedUpdateManyInput>;
|
|
1396
|
+
/**
|
|
1397
|
+
* Filter which CommentaryChapterVerses to update
|
|
1398
|
+
*/
|
|
1399
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
1400
|
+
/**
|
|
1401
|
+
* Limit how many CommentaryChapterVerses to update.
|
|
1402
|
+
*/
|
|
1403
|
+
limit?: number;
|
|
1404
|
+
};
|
|
1405
|
+
/**
|
|
1406
|
+
* CommentaryChapterVerse updateManyAndReturn
|
|
1407
|
+
*/
|
|
1408
|
+
export type CommentaryChapterVerseUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1409
|
+
/**
|
|
1410
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1411
|
+
*/
|
|
1412
|
+
select?: Prisma.CommentaryChapterVerseSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
1413
|
+
/**
|
|
1414
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1415
|
+
*/
|
|
1416
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1417
|
+
/**
|
|
1418
|
+
* The data used to update CommentaryChapterVerses.
|
|
1419
|
+
*/
|
|
1420
|
+
data: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateManyMutationInput, Prisma.CommentaryChapterVerseUncheckedUpdateManyInput>;
|
|
1421
|
+
/**
|
|
1422
|
+
* Filter which CommentaryChapterVerses to update
|
|
1423
|
+
*/
|
|
1424
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
1425
|
+
/**
|
|
1426
|
+
* Limit how many CommentaryChapterVerses to update.
|
|
1427
|
+
*/
|
|
1428
|
+
limit?: number;
|
|
1429
|
+
/**
|
|
1430
|
+
* Choose, which related nodes to fetch as well
|
|
1431
|
+
*/
|
|
1432
|
+
include?: Prisma.CommentaryChapterVerseIncludeUpdateManyAndReturn<ExtArgs> | null;
|
|
1433
|
+
};
|
|
1434
|
+
/**
|
|
1435
|
+
* CommentaryChapterVerse upsert
|
|
1436
|
+
*/
|
|
1437
|
+
export type CommentaryChapterVerseUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1438
|
+
/**
|
|
1439
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1440
|
+
*/
|
|
1441
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1442
|
+
/**
|
|
1443
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1444
|
+
*/
|
|
1445
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1446
|
+
/**
|
|
1447
|
+
* Choose, which related nodes to fetch as well
|
|
1448
|
+
*/
|
|
1449
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1450
|
+
/**
|
|
1451
|
+
* The filter to search for the CommentaryChapterVerse to update in case it exists.
|
|
1452
|
+
*/
|
|
1453
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1454
|
+
/**
|
|
1455
|
+
* In case the CommentaryChapterVerse found by the `where` argument doesn't exist, create a new CommentaryChapterVerse with this data.
|
|
1456
|
+
*/
|
|
1457
|
+
create: Prisma.XOR<Prisma.CommentaryChapterVerseCreateInput, Prisma.CommentaryChapterVerseUncheckedCreateInput>;
|
|
1458
|
+
/**
|
|
1459
|
+
* In case the CommentaryChapterVerse was found with the provided `where` argument, update it with this data.
|
|
1460
|
+
*/
|
|
1461
|
+
update: Prisma.XOR<Prisma.CommentaryChapterVerseUpdateInput, Prisma.CommentaryChapterVerseUncheckedUpdateInput>;
|
|
1462
|
+
};
|
|
1463
|
+
/**
|
|
1464
|
+
* CommentaryChapterVerse delete
|
|
1465
|
+
*/
|
|
1466
|
+
export type CommentaryChapterVerseDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1467
|
+
/**
|
|
1468
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1469
|
+
*/
|
|
1470
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1471
|
+
/**
|
|
1472
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1473
|
+
*/
|
|
1474
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1475
|
+
/**
|
|
1476
|
+
* Choose, which related nodes to fetch as well
|
|
1477
|
+
*/
|
|
1478
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1479
|
+
/**
|
|
1480
|
+
* Filter which CommentaryChapterVerse to delete.
|
|
1481
|
+
*/
|
|
1482
|
+
where: Prisma.CommentaryChapterVerseWhereUniqueInput;
|
|
1483
|
+
};
|
|
1484
|
+
/**
|
|
1485
|
+
* CommentaryChapterVerse deleteMany
|
|
1486
|
+
*/
|
|
1487
|
+
export type CommentaryChapterVerseDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1488
|
+
/**
|
|
1489
|
+
* Filter which CommentaryChapterVerses to delete
|
|
1490
|
+
*/
|
|
1491
|
+
where?: Prisma.CommentaryChapterVerseWhereInput;
|
|
1492
|
+
/**
|
|
1493
|
+
* Limit how many CommentaryChapterVerses to delete.
|
|
1494
|
+
*/
|
|
1495
|
+
limit?: number;
|
|
1496
|
+
};
|
|
1497
|
+
/**
|
|
1498
|
+
* CommentaryChapterVerse without action
|
|
1499
|
+
*/
|
|
1500
|
+
export type CommentaryChapterVerseDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1501
|
+
/**
|
|
1502
|
+
* Select specific fields to fetch from the CommentaryChapterVerse
|
|
1503
|
+
*/
|
|
1504
|
+
select?: Prisma.CommentaryChapterVerseSelect<ExtArgs> | null;
|
|
1505
|
+
/**
|
|
1506
|
+
* Omit specific fields from the CommentaryChapterVerse
|
|
1507
|
+
*/
|
|
1508
|
+
omit?: Prisma.CommentaryChapterVerseOmit<ExtArgs> | null;
|
|
1509
|
+
/**
|
|
1510
|
+
* Choose, which related nodes to fetch as well
|
|
1511
|
+
*/
|
|
1512
|
+
include?: Prisma.CommentaryChapterVerseInclude<ExtArgs> | null;
|
|
1513
|
+
};
|
|
1514
|
+
//# sourceMappingURL=CommentaryChapterVerse.d.ts.map
|