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