@helloao/cli 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +138 -136
- package/dist/cjs/cli.cjs +8049 -12681
- package/dist/cjs/index.cjs +7628 -12571
- package/dist/esm/cli.js +5699 -0
- package/dist/esm/cli.js.map +7 -0
- package/dist/esm/index.js +1972 -6262
- package/dist/esm/index.js.map +4 -4
- package/dist/types/actions.d.ts +71 -0
- package/dist/types/db.d.ts +12 -8
- package/dist/types/ebible.d.ts +1 -1
- package/dist/types/files.d.ts +12 -1
- package/dist/types/openapi.d.ts +2 -0
- package/dist/types/prisma-gen/browser.d.ts +110 -0
- package/dist/types/prisma-gen/client.d.ts +129 -0
- package/dist/types/prisma-gen/commonInputTypes.d.ts +378 -0
- package/dist/types/prisma-gen/enums.d.ts +2 -0
- package/dist/types/prisma-gen/internal/class.d.ts +353 -0
- package/dist/types/prisma-gen/internal/prismaNamespace.d.ts +2273 -0
- package/dist/types/prisma-gen/internal/prismaNamespaceBrowser.d.ts +294 -0
- package/dist/types/prisma-gen/models/Book.d.ts +2197 -0
- package/dist/types/prisma-gen/models/Chapter.d.ts +1934 -0
- package/dist/types/prisma-gen/models/ChapterAudioTiming.d.ts +1414 -0
- package/dist/types/prisma-gen/models/ChapterAudioUrl.d.ts +1414 -0
- package/dist/types/prisma-gen/models/ChapterFootnote.d.ts +1642 -0
- package/dist/types/prisma-gen/models/ChapterVerse.d.ts +1653 -0
- package/dist/types/prisma-gen/models/ChapterWords.d.ts +1366 -0
- package/dist/types/prisma-gen/models/Commentary.d.ts +1711 -0
- package/dist/types/prisma-gen/models/CommentaryBook.d.ts +1622 -0
- package/dist/types/prisma-gen/models/CommentaryChapter.d.ts +1487 -0
- package/dist/types/prisma-gen/models/CommentaryChapterVerse.d.ts +1514 -0
- package/dist/types/prisma-gen/models/CommentaryProfile.d.ts +1451 -0
- package/dist/types/prisma-gen/models/Dataset.d.ts +1667 -0
- package/dist/types/prisma-gen/models/DatasetBook.d.ts +1565 -0
- package/dist/types/prisma-gen/models/DatasetChapter.d.ts +1553 -0
- package/dist/types/prisma-gen/models/DatasetChapterVerse.d.ts +1600 -0
- package/dist/types/prisma-gen/models/DatasetReference.d.ts +1789 -0
- package/dist/types/prisma-gen/models/EBibleSource.d.ts +1686 -0
- package/dist/types/prisma-gen/models/InputFile.d.ts +1039 -0
- package/dist/types/prisma-gen/models/InputFileWarning.d.ts +946 -0
- package/dist/types/prisma-gen/models/Translation.d.ts +2238 -0
- package/dist/types/prisma-gen/models.d.ts +23 -0
- package/dist/types/s3.d.ts +2 -0
- package/dist/types/uploads.d.ts +7 -1
- package/migrations/20260217200934_add_license_notice/migration.sql +5 -0
- package/migrations/20260703000000_add_chapter_audio_timing/migration.sql +13 -0
- package/migrations/20260809000000_add_chapter_words/migration.sql +12 -0
- package/package.json +23 -17
- package/schema.prisma +43 -2
- package/prisma-gen/client.d.ts +0 -1
- package/prisma-gen/client.js +0 -4
- package/prisma-gen/default.d.ts +0 -1
- package/prisma-gen/default.js +0 -1
- package/prisma-gen/edge.d.ts +0 -1
- package/prisma-gen/edge.js +0 -401
- package/prisma-gen/index-browser.js +0 -395
- package/prisma-gen/index.d.ts +0 -33919
- package/prisma-gen/index.js +0 -424
- package/prisma-gen/runtime/edge-esm.js +0 -31
- package/prisma-gen/runtime/edge.js +0 -31
- package/prisma-gen/runtime/index-browser.d.ts +0 -365
- package/prisma-gen/runtime/index-browser.js +0 -13
- package/prisma-gen/runtime/library.d.ts +0 -3403
- package/prisma-gen/runtime/library.js +0 -143
- package/prisma-gen/runtime/react-native.js +0 -80
- package/prisma-gen/runtime/wasm.js +0 -32
- package/prisma-gen/wasm.d.ts +0 -1
- package/prisma-gen/wasm.js +0 -395
|
@@ -0,0 +1,1414 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../internal/prismaNamespace";
|
|
3
|
+
/**
|
|
4
|
+
* Model ChapterAudioTiming
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export type ChapterAudioTimingModel = runtime.Types.Result.DefaultSelection<Prisma.$ChapterAudioTimingPayload>;
|
|
8
|
+
export type AggregateChapterAudioTiming = {
|
|
9
|
+
_count: ChapterAudioTimingCountAggregateOutputType | null;
|
|
10
|
+
_avg: ChapterAudioTimingAvgAggregateOutputType | null;
|
|
11
|
+
_sum: ChapterAudioTimingSumAggregateOutputType | null;
|
|
12
|
+
_min: ChapterAudioTimingMinAggregateOutputType | null;
|
|
13
|
+
_max: ChapterAudioTimingMaxAggregateOutputType | null;
|
|
14
|
+
};
|
|
15
|
+
export type ChapterAudioTimingAvgAggregateOutputType = {
|
|
16
|
+
number: number | null;
|
|
17
|
+
};
|
|
18
|
+
export type ChapterAudioTimingSumAggregateOutputType = {
|
|
19
|
+
number: number | null;
|
|
20
|
+
};
|
|
21
|
+
export type ChapterAudioTimingMinAggregateOutputType = {
|
|
22
|
+
number: number | null;
|
|
23
|
+
bookId: string | null;
|
|
24
|
+
translationId: string | null;
|
|
25
|
+
reader: string | null;
|
|
26
|
+
timingsJson: string | null;
|
|
27
|
+
};
|
|
28
|
+
export type ChapterAudioTimingMaxAggregateOutputType = {
|
|
29
|
+
number: number | null;
|
|
30
|
+
bookId: string | null;
|
|
31
|
+
translationId: string | null;
|
|
32
|
+
reader: string | null;
|
|
33
|
+
timingsJson: string | null;
|
|
34
|
+
};
|
|
35
|
+
export type ChapterAudioTimingCountAggregateOutputType = {
|
|
36
|
+
number: number;
|
|
37
|
+
bookId: number;
|
|
38
|
+
translationId: number;
|
|
39
|
+
reader: number;
|
|
40
|
+
timingsJson: number;
|
|
41
|
+
_all: number;
|
|
42
|
+
};
|
|
43
|
+
export type ChapterAudioTimingAvgAggregateInputType = {
|
|
44
|
+
number?: true;
|
|
45
|
+
};
|
|
46
|
+
export type ChapterAudioTimingSumAggregateInputType = {
|
|
47
|
+
number?: true;
|
|
48
|
+
};
|
|
49
|
+
export type ChapterAudioTimingMinAggregateInputType = {
|
|
50
|
+
number?: true;
|
|
51
|
+
bookId?: true;
|
|
52
|
+
translationId?: true;
|
|
53
|
+
reader?: true;
|
|
54
|
+
timingsJson?: true;
|
|
55
|
+
};
|
|
56
|
+
export type ChapterAudioTimingMaxAggregateInputType = {
|
|
57
|
+
number?: true;
|
|
58
|
+
bookId?: true;
|
|
59
|
+
translationId?: true;
|
|
60
|
+
reader?: true;
|
|
61
|
+
timingsJson?: true;
|
|
62
|
+
};
|
|
63
|
+
export type ChapterAudioTimingCountAggregateInputType = {
|
|
64
|
+
number?: true;
|
|
65
|
+
bookId?: true;
|
|
66
|
+
translationId?: true;
|
|
67
|
+
reader?: true;
|
|
68
|
+
timingsJson?: true;
|
|
69
|
+
_all?: true;
|
|
70
|
+
};
|
|
71
|
+
export type ChapterAudioTimingAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
72
|
+
/**
|
|
73
|
+
* Filter which ChapterAudioTiming to aggregate.
|
|
74
|
+
*/
|
|
75
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
76
|
+
/**
|
|
77
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
78
|
+
*
|
|
79
|
+
* Determine the order of ChapterAudioTimings to fetch.
|
|
80
|
+
*/
|
|
81
|
+
orderBy?: Prisma.ChapterAudioTimingOrderByWithRelationInput | Prisma.ChapterAudioTimingOrderByWithRelationInput[];
|
|
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.ChapterAudioTimingWhereUniqueInput;
|
|
88
|
+
/**
|
|
89
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90
|
+
*
|
|
91
|
+
* Take `±n` ChapterAudioTimings 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` ChapterAudioTimings.
|
|
98
|
+
*/
|
|
99
|
+
skip?: number;
|
|
100
|
+
/**
|
|
101
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
102
|
+
*
|
|
103
|
+
* Count returned ChapterAudioTimings
|
|
104
|
+
**/
|
|
105
|
+
_count?: true | ChapterAudioTimingCountAggregateInputType;
|
|
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?: ChapterAudioTimingAvgAggregateInputType;
|
|
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?: ChapterAudioTimingSumAggregateInputType;
|
|
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?: ChapterAudioTimingMinAggregateInputType;
|
|
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?: ChapterAudioTimingMaxAggregateInputType;
|
|
130
|
+
};
|
|
131
|
+
export type GetChapterAudioTimingAggregateType<T extends ChapterAudioTimingAggregateArgs> = {
|
|
132
|
+
[P in keyof T & keyof AggregateChapterAudioTiming]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateChapterAudioTiming[P]> : Prisma.GetScalarType<T[P], AggregateChapterAudioTiming[P]>;
|
|
133
|
+
};
|
|
134
|
+
export type ChapterAudioTimingGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
135
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
136
|
+
orderBy?: Prisma.ChapterAudioTimingOrderByWithAggregationInput | Prisma.ChapterAudioTimingOrderByWithAggregationInput[];
|
|
137
|
+
by: Prisma.ChapterAudioTimingScalarFieldEnum[] | Prisma.ChapterAudioTimingScalarFieldEnum;
|
|
138
|
+
having?: Prisma.ChapterAudioTimingScalarWhereWithAggregatesInput;
|
|
139
|
+
take?: number;
|
|
140
|
+
skip?: number;
|
|
141
|
+
_count?: ChapterAudioTimingCountAggregateInputType | true;
|
|
142
|
+
_avg?: ChapterAudioTimingAvgAggregateInputType;
|
|
143
|
+
_sum?: ChapterAudioTimingSumAggregateInputType;
|
|
144
|
+
_min?: ChapterAudioTimingMinAggregateInputType;
|
|
145
|
+
_max?: ChapterAudioTimingMaxAggregateInputType;
|
|
146
|
+
};
|
|
147
|
+
export type ChapterAudioTimingGroupByOutputType = {
|
|
148
|
+
number: number;
|
|
149
|
+
bookId: string;
|
|
150
|
+
translationId: string;
|
|
151
|
+
reader: string;
|
|
152
|
+
timingsJson: string;
|
|
153
|
+
_count: ChapterAudioTimingCountAggregateOutputType | null;
|
|
154
|
+
_avg: ChapterAudioTimingAvgAggregateOutputType | null;
|
|
155
|
+
_sum: ChapterAudioTimingSumAggregateOutputType | null;
|
|
156
|
+
_min: ChapterAudioTimingMinAggregateOutputType | null;
|
|
157
|
+
_max: ChapterAudioTimingMaxAggregateOutputType | null;
|
|
158
|
+
};
|
|
159
|
+
export type GetChapterAudioTimingGroupByPayload<T extends ChapterAudioTimingGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<ChapterAudioTimingGroupByOutputType, T['by']> & {
|
|
160
|
+
[P in ((keyof T) & (keyof ChapterAudioTimingGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], ChapterAudioTimingGroupByOutputType[P]> : Prisma.GetScalarType<T[P], ChapterAudioTimingGroupByOutputType[P]>;
|
|
161
|
+
}>>;
|
|
162
|
+
export type ChapterAudioTimingWhereInput = {
|
|
163
|
+
AND?: Prisma.ChapterAudioTimingWhereInput | Prisma.ChapterAudioTimingWhereInput[];
|
|
164
|
+
OR?: Prisma.ChapterAudioTimingWhereInput[];
|
|
165
|
+
NOT?: Prisma.ChapterAudioTimingWhereInput | Prisma.ChapterAudioTimingWhereInput[];
|
|
166
|
+
number?: Prisma.IntFilter<"ChapterAudioTiming"> | number;
|
|
167
|
+
bookId?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
168
|
+
translationId?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
169
|
+
reader?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
170
|
+
timingsJson?: Prisma.StringFilter<"ChapterAudioTiming"> | 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 ChapterAudioTimingOrderByWithRelationInput = {
|
|
176
|
+
number?: Prisma.SortOrder;
|
|
177
|
+
bookId?: Prisma.SortOrder;
|
|
178
|
+
translationId?: Prisma.SortOrder;
|
|
179
|
+
reader?: Prisma.SortOrder;
|
|
180
|
+
timingsJson?: Prisma.SortOrder;
|
|
181
|
+
book?: Prisma.BookOrderByWithRelationInput;
|
|
182
|
+
translation?: Prisma.TranslationOrderByWithRelationInput;
|
|
183
|
+
chapter?: Prisma.ChapterOrderByWithRelationInput;
|
|
184
|
+
};
|
|
185
|
+
export type ChapterAudioTimingWhereUniqueInput = Prisma.AtLeast<{
|
|
186
|
+
translationId_bookId_number_reader?: Prisma.ChapterAudioTimingTranslationIdBookIdNumberReaderCompoundUniqueInput;
|
|
187
|
+
AND?: Prisma.ChapterAudioTimingWhereInput | Prisma.ChapterAudioTimingWhereInput[];
|
|
188
|
+
OR?: Prisma.ChapterAudioTimingWhereInput[];
|
|
189
|
+
NOT?: Prisma.ChapterAudioTimingWhereInput | Prisma.ChapterAudioTimingWhereInput[];
|
|
190
|
+
number?: Prisma.IntFilter<"ChapterAudioTiming"> | number;
|
|
191
|
+
bookId?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
192
|
+
translationId?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
193
|
+
reader?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
194
|
+
timingsJson?: Prisma.StringFilter<"ChapterAudioTiming"> | 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 ChapterAudioTimingOrderByWithAggregationInput = {
|
|
200
|
+
number?: Prisma.SortOrder;
|
|
201
|
+
bookId?: Prisma.SortOrder;
|
|
202
|
+
translationId?: Prisma.SortOrder;
|
|
203
|
+
reader?: Prisma.SortOrder;
|
|
204
|
+
timingsJson?: Prisma.SortOrder;
|
|
205
|
+
_count?: Prisma.ChapterAudioTimingCountOrderByAggregateInput;
|
|
206
|
+
_avg?: Prisma.ChapterAudioTimingAvgOrderByAggregateInput;
|
|
207
|
+
_max?: Prisma.ChapterAudioTimingMaxOrderByAggregateInput;
|
|
208
|
+
_min?: Prisma.ChapterAudioTimingMinOrderByAggregateInput;
|
|
209
|
+
_sum?: Prisma.ChapterAudioTimingSumOrderByAggregateInput;
|
|
210
|
+
};
|
|
211
|
+
export type ChapterAudioTimingScalarWhereWithAggregatesInput = {
|
|
212
|
+
AND?: Prisma.ChapterAudioTimingScalarWhereWithAggregatesInput | Prisma.ChapterAudioTimingScalarWhereWithAggregatesInput[];
|
|
213
|
+
OR?: Prisma.ChapterAudioTimingScalarWhereWithAggregatesInput[];
|
|
214
|
+
NOT?: Prisma.ChapterAudioTimingScalarWhereWithAggregatesInput | Prisma.ChapterAudioTimingScalarWhereWithAggregatesInput[];
|
|
215
|
+
number?: Prisma.IntWithAggregatesFilter<"ChapterAudioTiming"> | number;
|
|
216
|
+
bookId?: Prisma.StringWithAggregatesFilter<"ChapterAudioTiming"> | string;
|
|
217
|
+
translationId?: Prisma.StringWithAggregatesFilter<"ChapterAudioTiming"> | string;
|
|
218
|
+
reader?: Prisma.StringWithAggregatesFilter<"ChapterAudioTiming"> | string;
|
|
219
|
+
timingsJson?: Prisma.StringWithAggregatesFilter<"ChapterAudioTiming"> | string;
|
|
220
|
+
};
|
|
221
|
+
export type ChapterAudioTimingCreateInput = {
|
|
222
|
+
reader: string;
|
|
223
|
+
timingsJson: string;
|
|
224
|
+
book: Prisma.BookCreateNestedOneWithoutAudioTimingsInput;
|
|
225
|
+
translation: Prisma.TranslationCreateNestedOneWithoutAudioTimingsInput;
|
|
226
|
+
chapter: Prisma.ChapterCreateNestedOneWithoutAudioTimingsInput;
|
|
227
|
+
};
|
|
228
|
+
export type ChapterAudioTimingUncheckedCreateInput = {
|
|
229
|
+
number: number;
|
|
230
|
+
bookId: string;
|
|
231
|
+
translationId: string;
|
|
232
|
+
reader: string;
|
|
233
|
+
timingsJson: string;
|
|
234
|
+
};
|
|
235
|
+
export type ChapterAudioTimingUpdateInput = {
|
|
236
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
237
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
238
|
+
book?: Prisma.BookUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
239
|
+
translation?: Prisma.TranslationUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
240
|
+
chapter?: Prisma.ChapterUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
241
|
+
};
|
|
242
|
+
export type ChapterAudioTimingUncheckedUpdateInput = {
|
|
243
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
244
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
245
|
+
translationId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
246
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
247
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
248
|
+
};
|
|
249
|
+
export type ChapterAudioTimingCreateManyInput = {
|
|
250
|
+
number: number;
|
|
251
|
+
bookId: string;
|
|
252
|
+
translationId: string;
|
|
253
|
+
reader: string;
|
|
254
|
+
timingsJson: string;
|
|
255
|
+
};
|
|
256
|
+
export type ChapterAudioTimingUpdateManyMutationInput = {
|
|
257
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
258
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
259
|
+
};
|
|
260
|
+
export type ChapterAudioTimingUncheckedUpdateManyInput = {
|
|
261
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
262
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
263
|
+
translationId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
264
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
265
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
266
|
+
};
|
|
267
|
+
export type ChapterAudioTimingListRelationFilter = {
|
|
268
|
+
every?: Prisma.ChapterAudioTimingWhereInput;
|
|
269
|
+
some?: Prisma.ChapterAudioTimingWhereInput;
|
|
270
|
+
none?: Prisma.ChapterAudioTimingWhereInput;
|
|
271
|
+
};
|
|
272
|
+
export type ChapterAudioTimingOrderByRelationAggregateInput = {
|
|
273
|
+
_count?: Prisma.SortOrder;
|
|
274
|
+
};
|
|
275
|
+
export type ChapterAudioTimingTranslationIdBookIdNumberReaderCompoundUniqueInput = {
|
|
276
|
+
translationId: string;
|
|
277
|
+
bookId: string;
|
|
278
|
+
number: number;
|
|
279
|
+
reader: string;
|
|
280
|
+
};
|
|
281
|
+
export type ChapterAudioTimingCountOrderByAggregateInput = {
|
|
282
|
+
number?: Prisma.SortOrder;
|
|
283
|
+
bookId?: Prisma.SortOrder;
|
|
284
|
+
translationId?: Prisma.SortOrder;
|
|
285
|
+
reader?: Prisma.SortOrder;
|
|
286
|
+
timingsJson?: Prisma.SortOrder;
|
|
287
|
+
};
|
|
288
|
+
export type ChapterAudioTimingAvgOrderByAggregateInput = {
|
|
289
|
+
number?: Prisma.SortOrder;
|
|
290
|
+
};
|
|
291
|
+
export type ChapterAudioTimingMaxOrderByAggregateInput = {
|
|
292
|
+
number?: Prisma.SortOrder;
|
|
293
|
+
bookId?: Prisma.SortOrder;
|
|
294
|
+
translationId?: Prisma.SortOrder;
|
|
295
|
+
reader?: Prisma.SortOrder;
|
|
296
|
+
timingsJson?: Prisma.SortOrder;
|
|
297
|
+
};
|
|
298
|
+
export type ChapterAudioTimingMinOrderByAggregateInput = {
|
|
299
|
+
number?: Prisma.SortOrder;
|
|
300
|
+
bookId?: Prisma.SortOrder;
|
|
301
|
+
translationId?: Prisma.SortOrder;
|
|
302
|
+
reader?: Prisma.SortOrder;
|
|
303
|
+
timingsJson?: Prisma.SortOrder;
|
|
304
|
+
};
|
|
305
|
+
export type ChapterAudioTimingSumOrderByAggregateInput = {
|
|
306
|
+
number?: Prisma.SortOrder;
|
|
307
|
+
};
|
|
308
|
+
export type ChapterAudioTimingCreateNestedManyWithoutTranslationInput = {
|
|
309
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput> | Prisma.ChapterAudioTimingCreateWithoutTranslationInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput[];
|
|
310
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput[];
|
|
311
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyTranslationInputEnvelope;
|
|
312
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
313
|
+
};
|
|
314
|
+
export type ChapterAudioTimingUncheckedCreateNestedManyWithoutTranslationInput = {
|
|
315
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput> | Prisma.ChapterAudioTimingCreateWithoutTranslationInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput[];
|
|
316
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput[];
|
|
317
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyTranslationInputEnvelope;
|
|
318
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
319
|
+
};
|
|
320
|
+
export type ChapterAudioTimingUpdateManyWithoutTranslationNestedInput = {
|
|
321
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput> | Prisma.ChapterAudioTimingCreateWithoutTranslationInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput[];
|
|
322
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput[];
|
|
323
|
+
upsert?: Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutTranslationInput | Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutTranslationInput[];
|
|
324
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyTranslationInputEnvelope;
|
|
325
|
+
set?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
326
|
+
disconnect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
327
|
+
delete?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
328
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
329
|
+
update?: Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutTranslationInput | Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutTranslationInput[];
|
|
330
|
+
updateMany?: Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutTranslationInput | Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutTranslationInput[];
|
|
331
|
+
deleteMany?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
332
|
+
};
|
|
333
|
+
export type ChapterAudioTimingUncheckedUpdateManyWithoutTranslationNestedInput = {
|
|
334
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput> | Prisma.ChapterAudioTimingCreateWithoutTranslationInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput[];
|
|
335
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutTranslationInput[];
|
|
336
|
+
upsert?: Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutTranslationInput | Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutTranslationInput[];
|
|
337
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyTranslationInputEnvelope;
|
|
338
|
+
set?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
339
|
+
disconnect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
340
|
+
delete?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
341
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
342
|
+
update?: Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutTranslationInput | Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutTranslationInput[];
|
|
343
|
+
updateMany?: Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutTranslationInput | Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutTranslationInput[];
|
|
344
|
+
deleteMany?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
345
|
+
};
|
|
346
|
+
export type ChapterAudioTimingCreateNestedManyWithoutBookInput = {
|
|
347
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput> | Prisma.ChapterAudioTimingCreateWithoutBookInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput[];
|
|
348
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput[];
|
|
349
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyBookInputEnvelope;
|
|
350
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
351
|
+
};
|
|
352
|
+
export type ChapterAudioTimingUncheckedCreateNestedManyWithoutBookInput = {
|
|
353
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput> | Prisma.ChapterAudioTimingCreateWithoutBookInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput[];
|
|
354
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput[];
|
|
355
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyBookInputEnvelope;
|
|
356
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
357
|
+
};
|
|
358
|
+
export type ChapterAudioTimingUpdateManyWithoutBookNestedInput = {
|
|
359
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput> | Prisma.ChapterAudioTimingCreateWithoutBookInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput[];
|
|
360
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput[];
|
|
361
|
+
upsert?: Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutBookInput | Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutBookInput[];
|
|
362
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyBookInputEnvelope;
|
|
363
|
+
set?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
364
|
+
disconnect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
365
|
+
delete?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
366
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
367
|
+
update?: Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutBookInput | Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutBookInput[];
|
|
368
|
+
updateMany?: Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutBookInput | Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutBookInput[];
|
|
369
|
+
deleteMany?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
370
|
+
};
|
|
371
|
+
export type ChapterAudioTimingUncheckedUpdateManyWithoutBookNestedInput = {
|
|
372
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput> | Prisma.ChapterAudioTimingCreateWithoutBookInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput[];
|
|
373
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutBookInput[];
|
|
374
|
+
upsert?: Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutBookInput | Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutBookInput[];
|
|
375
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyBookInputEnvelope;
|
|
376
|
+
set?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
377
|
+
disconnect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
378
|
+
delete?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
379
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
380
|
+
update?: Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutBookInput | Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutBookInput[];
|
|
381
|
+
updateMany?: Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutBookInput | Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutBookInput[];
|
|
382
|
+
deleteMany?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
383
|
+
};
|
|
384
|
+
export type ChapterAudioTimingCreateNestedManyWithoutChapterInput = {
|
|
385
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput> | Prisma.ChapterAudioTimingCreateWithoutChapterInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput[];
|
|
386
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput[];
|
|
387
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyChapterInputEnvelope;
|
|
388
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
389
|
+
};
|
|
390
|
+
export type ChapterAudioTimingUncheckedCreateNestedManyWithoutChapterInput = {
|
|
391
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput> | Prisma.ChapterAudioTimingCreateWithoutChapterInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput[];
|
|
392
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput[];
|
|
393
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyChapterInputEnvelope;
|
|
394
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
395
|
+
};
|
|
396
|
+
export type ChapterAudioTimingUpdateManyWithoutChapterNestedInput = {
|
|
397
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput> | Prisma.ChapterAudioTimingCreateWithoutChapterInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput[];
|
|
398
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput[];
|
|
399
|
+
upsert?: Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutChapterInput | Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutChapterInput[];
|
|
400
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyChapterInputEnvelope;
|
|
401
|
+
set?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
402
|
+
disconnect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
403
|
+
delete?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
404
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
405
|
+
update?: Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutChapterInput | Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutChapterInput[];
|
|
406
|
+
updateMany?: Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutChapterInput | Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutChapterInput[];
|
|
407
|
+
deleteMany?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
408
|
+
};
|
|
409
|
+
export type ChapterAudioTimingUncheckedUpdateManyWithoutChapterNestedInput = {
|
|
410
|
+
create?: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput> | Prisma.ChapterAudioTimingCreateWithoutChapterInput[] | Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput[];
|
|
411
|
+
connectOrCreate?: Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput | Prisma.ChapterAudioTimingCreateOrConnectWithoutChapterInput[];
|
|
412
|
+
upsert?: Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutChapterInput | Prisma.ChapterAudioTimingUpsertWithWhereUniqueWithoutChapterInput[];
|
|
413
|
+
createMany?: Prisma.ChapterAudioTimingCreateManyChapterInputEnvelope;
|
|
414
|
+
set?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
415
|
+
disconnect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
416
|
+
delete?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
417
|
+
connect?: Prisma.ChapterAudioTimingWhereUniqueInput | Prisma.ChapterAudioTimingWhereUniqueInput[];
|
|
418
|
+
update?: Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutChapterInput | Prisma.ChapterAudioTimingUpdateWithWhereUniqueWithoutChapterInput[];
|
|
419
|
+
updateMany?: Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutChapterInput | Prisma.ChapterAudioTimingUpdateManyWithWhereWithoutChapterInput[];
|
|
420
|
+
deleteMany?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
421
|
+
};
|
|
422
|
+
export type ChapterAudioTimingCreateWithoutTranslationInput = {
|
|
423
|
+
reader: string;
|
|
424
|
+
timingsJson: string;
|
|
425
|
+
book: Prisma.BookCreateNestedOneWithoutAudioTimingsInput;
|
|
426
|
+
chapter: Prisma.ChapterCreateNestedOneWithoutAudioTimingsInput;
|
|
427
|
+
};
|
|
428
|
+
export type ChapterAudioTimingUncheckedCreateWithoutTranslationInput = {
|
|
429
|
+
number: number;
|
|
430
|
+
bookId: string;
|
|
431
|
+
reader: string;
|
|
432
|
+
timingsJson: string;
|
|
433
|
+
};
|
|
434
|
+
export type ChapterAudioTimingCreateOrConnectWithoutTranslationInput = {
|
|
435
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
436
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput>;
|
|
437
|
+
};
|
|
438
|
+
export type ChapterAudioTimingCreateManyTranslationInputEnvelope = {
|
|
439
|
+
data: Prisma.ChapterAudioTimingCreateManyTranslationInput | Prisma.ChapterAudioTimingCreateManyTranslationInput[];
|
|
440
|
+
};
|
|
441
|
+
export type ChapterAudioTimingUpsertWithWhereUniqueWithoutTranslationInput = {
|
|
442
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
443
|
+
update: Prisma.XOR<Prisma.ChapterAudioTimingUpdateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedUpdateWithoutTranslationInput>;
|
|
444
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutTranslationInput>;
|
|
445
|
+
};
|
|
446
|
+
export type ChapterAudioTimingUpdateWithWhereUniqueWithoutTranslationInput = {
|
|
447
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
448
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateWithoutTranslationInput, Prisma.ChapterAudioTimingUncheckedUpdateWithoutTranslationInput>;
|
|
449
|
+
};
|
|
450
|
+
export type ChapterAudioTimingUpdateManyWithWhereWithoutTranslationInput = {
|
|
451
|
+
where: Prisma.ChapterAudioTimingScalarWhereInput;
|
|
452
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateManyMutationInput, Prisma.ChapterAudioTimingUncheckedUpdateManyWithoutTranslationInput>;
|
|
453
|
+
};
|
|
454
|
+
export type ChapterAudioTimingScalarWhereInput = {
|
|
455
|
+
AND?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
456
|
+
OR?: Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
457
|
+
NOT?: Prisma.ChapterAudioTimingScalarWhereInput | Prisma.ChapterAudioTimingScalarWhereInput[];
|
|
458
|
+
number?: Prisma.IntFilter<"ChapterAudioTiming"> | number;
|
|
459
|
+
bookId?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
460
|
+
translationId?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
461
|
+
reader?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
462
|
+
timingsJson?: Prisma.StringFilter<"ChapterAudioTiming"> | string;
|
|
463
|
+
};
|
|
464
|
+
export type ChapterAudioTimingCreateWithoutBookInput = {
|
|
465
|
+
reader: string;
|
|
466
|
+
timingsJson: string;
|
|
467
|
+
translation: Prisma.TranslationCreateNestedOneWithoutAudioTimingsInput;
|
|
468
|
+
chapter: Prisma.ChapterCreateNestedOneWithoutAudioTimingsInput;
|
|
469
|
+
};
|
|
470
|
+
export type ChapterAudioTimingUncheckedCreateWithoutBookInput = {
|
|
471
|
+
number: number;
|
|
472
|
+
reader: string;
|
|
473
|
+
timingsJson: string;
|
|
474
|
+
};
|
|
475
|
+
export type ChapterAudioTimingCreateOrConnectWithoutBookInput = {
|
|
476
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
477
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput>;
|
|
478
|
+
};
|
|
479
|
+
export type ChapterAudioTimingCreateManyBookInputEnvelope = {
|
|
480
|
+
data: Prisma.ChapterAudioTimingCreateManyBookInput | Prisma.ChapterAudioTimingCreateManyBookInput[];
|
|
481
|
+
};
|
|
482
|
+
export type ChapterAudioTimingUpsertWithWhereUniqueWithoutBookInput = {
|
|
483
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
484
|
+
update: Prisma.XOR<Prisma.ChapterAudioTimingUpdateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedUpdateWithoutBookInput>;
|
|
485
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutBookInput>;
|
|
486
|
+
};
|
|
487
|
+
export type ChapterAudioTimingUpdateWithWhereUniqueWithoutBookInput = {
|
|
488
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
489
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateWithoutBookInput, Prisma.ChapterAudioTimingUncheckedUpdateWithoutBookInput>;
|
|
490
|
+
};
|
|
491
|
+
export type ChapterAudioTimingUpdateManyWithWhereWithoutBookInput = {
|
|
492
|
+
where: Prisma.ChapterAudioTimingScalarWhereInput;
|
|
493
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateManyMutationInput, Prisma.ChapterAudioTimingUncheckedUpdateManyWithoutBookInput>;
|
|
494
|
+
};
|
|
495
|
+
export type ChapterAudioTimingCreateWithoutChapterInput = {
|
|
496
|
+
reader: string;
|
|
497
|
+
timingsJson: string;
|
|
498
|
+
book: Prisma.BookCreateNestedOneWithoutAudioTimingsInput;
|
|
499
|
+
translation: Prisma.TranslationCreateNestedOneWithoutAudioTimingsInput;
|
|
500
|
+
};
|
|
501
|
+
export type ChapterAudioTimingUncheckedCreateWithoutChapterInput = {
|
|
502
|
+
reader: string;
|
|
503
|
+
timingsJson: string;
|
|
504
|
+
};
|
|
505
|
+
export type ChapterAudioTimingCreateOrConnectWithoutChapterInput = {
|
|
506
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
507
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput>;
|
|
508
|
+
};
|
|
509
|
+
export type ChapterAudioTimingCreateManyChapterInputEnvelope = {
|
|
510
|
+
data: Prisma.ChapterAudioTimingCreateManyChapterInput | Prisma.ChapterAudioTimingCreateManyChapterInput[];
|
|
511
|
+
};
|
|
512
|
+
export type ChapterAudioTimingUpsertWithWhereUniqueWithoutChapterInput = {
|
|
513
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
514
|
+
update: Prisma.XOR<Prisma.ChapterAudioTimingUpdateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedUpdateWithoutChapterInput>;
|
|
515
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedCreateWithoutChapterInput>;
|
|
516
|
+
};
|
|
517
|
+
export type ChapterAudioTimingUpdateWithWhereUniqueWithoutChapterInput = {
|
|
518
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
519
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateWithoutChapterInput, Prisma.ChapterAudioTimingUncheckedUpdateWithoutChapterInput>;
|
|
520
|
+
};
|
|
521
|
+
export type ChapterAudioTimingUpdateManyWithWhereWithoutChapterInput = {
|
|
522
|
+
where: Prisma.ChapterAudioTimingScalarWhereInput;
|
|
523
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateManyMutationInput, Prisma.ChapterAudioTimingUncheckedUpdateManyWithoutChapterInput>;
|
|
524
|
+
};
|
|
525
|
+
export type ChapterAudioTimingCreateManyTranslationInput = {
|
|
526
|
+
number: number;
|
|
527
|
+
bookId: string;
|
|
528
|
+
reader: string;
|
|
529
|
+
timingsJson: string;
|
|
530
|
+
};
|
|
531
|
+
export type ChapterAudioTimingUpdateWithoutTranslationInput = {
|
|
532
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
533
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
534
|
+
book?: Prisma.BookUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
535
|
+
chapter?: Prisma.ChapterUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
536
|
+
};
|
|
537
|
+
export type ChapterAudioTimingUncheckedUpdateWithoutTranslationInput = {
|
|
538
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
539
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
540
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
541
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
542
|
+
};
|
|
543
|
+
export type ChapterAudioTimingUncheckedUpdateManyWithoutTranslationInput = {
|
|
544
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
545
|
+
bookId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
546
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
547
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
548
|
+
};
|
|
549
|
+
export type ChapterAudioTimingCreateManyBookInput = {
|
|
550
|
+
number: number;
|
|
551
|
+
reader: string;
|
|
552
|
+
timingsJson: string;
|
|
553
|
+
};
|
|
554
|
+
export type ChapterAudioTimingUpdateWithoutBookInput = {
|
|
555
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
556
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
557
|
+
translation?: Prisma.TranslationUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
558
|
+
chapter?: Prisma.ChapterUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
559
|
+
};
|
|
560
|
+
export type ChapterAudioTimingUncheckedUpdateWithoutBookInput = {
|
|
561
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
562
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
563
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
564
|
+
};
|
|
565
|
+
export type ChapterAudioTimingUncheckedUpdateManyWithoutBookInput = {
|
|
566
|
+
number?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
567
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
568
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
569
|
+
};
|
|
570
|
+
export type ChapterAudioTimingCreateManyChapterInput = {
|
|
571
|
+
reader: string;
|
|
572
|
+
timingsJson: string;
|
|
573
|
+
};
|
|
574
|
+
export type ChapterAudioTimingUpdateWithoutChapterInput = {
|
|
575
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
576
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
577
|
+
book?: Prisma.BookUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
578
|
+
translation?: Prisma.TranslationUpdateOneRequiredWithoutAudioTimingsNestedInput;
|
|
579
|
+
};
|
|
580
|
+
export type ChapterAudioTimingUncheckedUpdateWithoutChapterInput = {
|
|
581
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
582
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
583
|
+
};
|
|
584
|
+
export type ChapterAudioTimingUncheckedUpdateManyWithoutChapterInput = {
|
|
585
|
+
reader?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
586
|
+
timingsJson?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
587
|
+
};
|
|
588
|
+
export type ChapterAudioTimingSelect<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
|
+
timingsJson?: boolean;
|
|
594
|
+
book?: boolean | Prisma.BookDefaultArgs<ExtArgs>;
|
|
595
|
+
translation?: boolean | Prisma.TranslationDefaultArgs<ExtArgs>;
|
|
596
|
+
chapter?: boolean | Prisma.ChapterDefaultArgs<ExtArgs>;
|
|
597
|
+
}, ExtArgs["result"]["chapterAudioTiming"]>;
|
|
598
|
+
export type ChapterAudioTimingSelectCreateManyAndReturn<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
|
+
timingsJson?: boolean;
|
|
604
|
+
book?: boolean | Prisma.BookDefaultArgs<ExtArgs>;
|
|
605
|
+
translation?: boolean | Prisma.TranslationDefaultArgs<ExtArgs>;
|
|
606
|
+
chapter?: boolean | Prisma.ChapterDefaultArgs<ExtArgs>;
|
|
607
|
+
}, ExtArgs["result"]["chapterAudioTiming"]>;
|
|
608
|
+
export type ChapterAudioTimingSelectUpdateManyAndReturn<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
|
+
timingsJson?: boolean;
|
|
614
|
+
book?: boolean | Prisma.BookDefaultArgs<ExtArgs>;
|
|
615
|
+
translation?: boolean | Prisma.TranslationDefaultArgs<ExtArgs>;
|
|
616
|
+
chapter?: boolean | Prisma.ChapterDefaultArgs<ExtArgs>;
|
|
617
|
+
}, ExtArgs["result"]["chapterAudioTiming"]>;
|
|
618
|
+
export type ChapterAudioTimingSelectScalar = {
|
|
619
|
+
number?: boolean;
|
|
620
|
+
bookId?: boolean;
|
|
621
|
+
translationId?: boolean;
|
|
622
|
+
reader?: boolean;
|
|
623
|
+
timingsJson?: boolean;
|
|
624
|
+
};
|
|
625
|
+
export type ChapterAudioTimingOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"number" | "bookId" | "translationId" | "reader" | "timingsJson", ExtArgs["result"]["chapterAudioTiming"]>;
|
|
626
|
+
export type ChapterAudioTimingInclude<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 ChapterAudioTimingIncludeCreateManyAndReturn<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 ChapterAudioTimingIncludeUpdateManyAndReturn<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 $ChapterAudioTimingPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
642
|
+
name: "ChapterAudioTiming";
|
|
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
|
+
timingsJson: string;
|
|
654
|
+
}, ExtArgs["result"]["chapterAudioTiming"]>;
|
|
655
|
+
composites: {};
|
|
656
|
+
};
|
|
657
|
+
export type ChapterAudioTimingGetPayload<S extends boolean | null | undefined | ChapterAudioTimingDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload, S>;
|
|
658
|
+
export type ChapterAudioTimingCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<ChapterAudioTimingFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
659
|
+
select?: ChapterAudioTimingCountAggregateInputType | true;
|
|
660
|
+
};
|
|
661
|
+
export interface ChapterAudioTimingDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
662
|
+
[K: symbol]: {
|
|
663
|
+
types: Prisma.TypeMap<ExtArgs>['model']['ChapterAudioTiming'];
|
|
664
|
+
meta: {
|
|
665
|
+
name: 'ChapterAudioTiming';
|
|
666
|
+
};
|
|
667
|
+
};
|
|
668
|
+
/**
|
|
669
|
+
* Find zero or one ChapterAudioTiming that matches the filter.
|
|
670
|
+
* @param {ChapterAudioTimingFindUniqueArgs} args - Arguments to find a ChapterAudioTiming
|
|
671
|
+
* @example
|
|
672
|
+
* // Get one ChapterAudioTiming
|
|
673
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.findUnique({
|
|
674
|
+
* where: {
|
|
675
|
+
* // ... provide filter here
|
|
676
|
+
* }
|
|
677
|
+
* })
|
|
678
|
+
*/
|
|
679
|
+
findUnique<T extends ChapterAudioTimingFindUniqueArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingFindUniqueArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
680
|
+
/**
|
|
681
|
+
* Find one ChapterAudioTiming that matches the filter or throw an error with `error.code='P2025'`
|
|
682
|
+
* if no matches were found.
|
|
683
|
+
* @param {ChapterAudioTimingFindUniqueOrThrowArgs} args - Arguments to find a ChapterAudioTiming
|
|
684
|
+
* @example
|
|
685
|
+
* // Get one ChapterAudioTiming
|
|
686
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.findUniqueOrThrow({
|
|
687
|
+
* where: {
|
|
688
|
+
* // ... provide filter here
|
|
689
|
+
* }
|
|
690
|
+
* })
|
|
691
|
+
*/
|
|
692
|
+
findUniqueOrThrow<T extends ChapterAudioTimingFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
693
|
+
/**
|
|
694
|
+
* Find the first ChapterAudioTiming 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 {ChapterAudioTimingFindFirstArgs} args - Arguments to find a ChapterAudioTiming
|
|
698
|
+
* @example
|
|
699
|
+
* // Get one ChapterAudioTiming
|
|
700
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.findFirst({
|
|
701
|
+
* where: {
|
|
702
|
+
* // ... provide filter here
|
|
703
|
+
* }
|
|
704
|
+
* })
|
|
705
|
+
*/
|
|
706
|
+
findFirst<T extends ChapterAudioTimingFindFirstArgs>(args?: Prisma.SelectSubset<T, ChapterAudioTimingFindFirstArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
707
|
+
/**
|
|
708
|
+
* Find the first ChapterAudioTiming 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 {ChapterAudioTimingFindFirstOrThrowArgs} args - Arguments to find a ChapterAudioTiming
|
|
713
|
+
* @example
|
|
714
|
+
* // Get one ChapterAudioTiming
|
|
715
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.findFirstOrThrow({
|
|
716
|
+
* where: {
|
|
717
|
+
* // ... provide filter here
|
|
718
|
+
* }
|
|
719
|
+
* })
|
|
720
|
+
*/
|
|
721
|
+
findFirstOrThrow<T extends ChapterAudioTimingFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, ChapterAudioTimingFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
722
|
+
/**
|
|
723
|
+
* Find zero or more ChapterAudioTimings 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 {ChapterAudioTimingFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
727
|
+
* @example
|
|
728
|
+
* // Get all ChapterAudioTimings
|
|
729
|
+
* const chapterAudioTimings = await prisma.chapterAudioTiming.findMany()
|
|
730
|
+
*
|
|
731
|
+
* // Get first 10 ChapterAudioTimings
|
|
732
|
+
* const chapterAudioTimings = await prisma.chapterAudioTiming.findMany({ take: 10 })
|
|
733
|
+
*
|
|
734
|
+
* // Only select the `number`
|
|
735
|
+
* const chapterAudioTimingWithNumberOnly = await prisma.chapterAudioTiming.findMany({ select: { number: true } })
|
|
736
|
+
*
|
|
737
|
+
*/
|
|
738
|
+
findMany<T extends ChapterAudioTimingFindManyArgs>(args?: Prisma.SelectSubset<T, ChapterAudioTimingFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
739
|
+
/**
|
|
740
|
+
* Create a ChapterAudioTiming.
|
|
741
|
+
* @param {ChapterAudioTimingCreateArgs} args - Arguments to create a ChapterAudioTiming.
|
|
742
|
+
* @example
|
|
743
|
+
* // Create one ChapterAudioTiming
|
|
744
|
+
* const ChapterAudioTiming = await prisma.chapterAudioTiming.create({
|
|
745
|
+
* data: {
|
|
746
|
+
* // ... data to create a ChapterAudioTiming
|
|
747
|
+
* }
|
|
748
|
+
* })
|
|
749
|
+
*
|
|
750
|
+
*/
|
|
751
|
+
create<T extends ChapterAudioTimingCreateArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingCreateArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
752
|
+
/**
|
|
753
|
+
* Create many ChapterAudioTimings.
|
|
754
|
+
* @param {ChapterAudioTimingCreateManyArgs} args - Arguments to create many ChapterAudioTimings.
|
|
755
|
+
* @example
|
|
756
|
+
* // Create many ChapterAudioTimings
|
|
757
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.createMany({
|
|
758
|
+
* data: [
|
|
759
|
+
* // ... provide data here
|
|
760
|
+
* ]
|
|
761
|
+
* })
|
|
762
|
+
*
|
|
763
|
+
*/
|
|
764
|
+
createMany<T extends ChapterAudioTimingCreateManyArgs>(args?: Prisma.SelectSubset<T, ChapterAudioTimingCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
765
|
+
/**
|
|
766
|
+
* Create many ChapterAudioTimings and returns the data saved in the database.
|
|
767
|
+
* @param {ChapterAudioTimingCreateManyAndReturnArgs} args - Arguments to create many ChapterAudioTimings.
|
|
768
|
+
* @example
|
|
769
|
+
* // Create many ChapterAudioTimings
|
|
770
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.createManyAndReturn({
|
|
771
|
+
* data: [
|
|
772
|
+
* // ... provide data here
|
|
773
|
+
* ]
|
|
774
|
+
* })
|
|
775
|
+
*
|
|
776
|
+
* // Create many ChapterAudioTimings and only return the `number`
|
|
777
|
+
* const chapterAudioTimingWithNumberOnly = await prisma.chapterAudioTiming.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 ChapterAudioTimingCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, ChapterAudioTimingCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
788
|
+
/**
|
|
789
|
+
* Delete a ChapterAudioTiming.
|
|
790
|
+
* @param {ChapterAudioTimingDeleteArgs} args - Arguments to delete one ChapterAudioTiming.
|
|
791
|
+
* @example
|
|
792
|
+
* // Delete one ChapterAudioTiming
|
|
793
|
+
* const ChapterAudioTiming = await prisma.chapterAudioTiming.delete({
|
|
794
|
+
* where: {
|
|
795
|
+
* // ... filter to delete one ChapterAudioTiming
|
|
796
|
+
* }
|
|
797
|
+
* })
|
|
798
|
+
*
|
|
799
|
+
*/
|
|
800
|
+
delete<T extends ChapterAudioTimingDeleteArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingDeleteArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
801
|
+
/**
|
|
802
|
+
* Update one ChapterAudioTiming.
|
|
803
|
+
* @param {ChapterAudioTimingUpdateArgs} args - Arguments to update one ChapterAudioTiming.
|
|
804
|
+
* @example
|
|
805
|
+
* // Update one ChapterAudioTiming
|
|
806
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.update({
|
|
807
|
+
* where: {
|
|
808
|
+
* // ... provide filter here
|
|
809
|
+
* },
|
|
810
|
+
* data: {
|
|
811
|
+
* // ... provide data here
|
|
812
|
+
* }
|
|
813
|
+
* })
|
|
814
|
+
*
|
|
815
|
+
*/
|
|
816
|
+
update<T extends ChapterAudioTimingUpdateArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingUpdateArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
817
|
+
/**
|
|
818
|
+
* Delete zero or more ChapterAudioTimings.
|
|
819
|
+
* @param {ChapterAudioTimingDeleteManyArgs} args - Arguments to filter ChapterAudioTimings to delete.
|
|
820
|
+
* @example
|
|
821
|
+
* // Delete a few ChapterAudioTimings
|
|
822
|
+
* const { count } = await prisma.chapterAudioTiming.deleteMany({
|
|
823
|
+
* where: {
|
|
824
|
+
* // ... provide filter here
|
|
825
|
+
* }
|
|
826
|
+
* })
|
|
827
|
+
*
|
|
828
|
+
*/
|
|
829
|
+
deleteMany<T extends ChapterAudioTimingDeleteManyArgs>(args?: Prisma.SelectSubset<T, ChapterAudioTimingDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
830
|
+
/**
|
|
831
|
+
* Update zero or more ChapterAudioTimings.
|
|
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 {ChapterAudioTimingUpdateManyArgs} args - Arguments to update one or more rows.
|
|
835
|
+
* @example
|
|
836
|
+
* // Update many ChapterAudioTimings
|
|
837
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.updateMany({
|
|
838
|
+
* where: {
|
|
839
|
+
* // ... provide filter here
|
|
840
|
+
* },
|
|
841
|
+
* data: {
|
|
842
|
+
* // ... provide data here
|
|
843
|
+
* }
|
|
844
|
+
* })
|
|
845
|
+
*
|
|
846
|
+
*/
|
|
847
|
+
updateMany<T extends ChapterAudioTimingUpdateManyArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
848
|
+
/**
|
|
849
|
+
* Update zero or more ChapterAudioTimings and returns the data updated in the database.
|
|
850
|
+
* @param {ChapterAudioTimingUpdateManyAndReturnArgs} args - Arguments to update many ChapterAudioTimings.
|
|
851
|
+
* @example
|
|
852
|
+
* // Update many ChapterAudioTimings
|
|
853
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.updateManyAndReturn({
|
|
854
|
+
* where: {
|
|
855
|
+
* // ... provide filter here
|
|
856
|
+
* },
|
|
857
|
+
* data: [
|
|
858
|
+
* // ... provide data here
|
|
859
|
+
* ]
|
|
860
|
+
* })
|
|
861
|
+
*
|
|
862
|
+
* // Update zero or more ChapterAudioTimings and only return the `number`
|
|
863
|
+
* const chapterAudioTimingWithNumberOnly = await prisma.chapterAudioTiming.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 ChapterAudioTimingUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
877
|
+
/**
|
|
878
|
+
* Create or update one ChapterAudioTiming.
|
|
879
|
+
* @param {ChapterAudioTimingUpsertArgs} args - Arguments to update or create a ChapterAudioTiming.
|
|
880
|
+
* @example
|
|
881
|
+
* // Update or create a ChapterAudioTiming
|
|
882
|
+
* const chapterAudioTiming = await prisma.chapterAudioTiming.upsert({
|
|
883
|
+
* create: {
|
|
884
|
+
* // ... data to create a ChapterAudioTiming
|
|
885
|
+
* },
|
|
886
|
+
* update: {
|
|
887
|
+
* // ... in case it already exists, update
|
|
888
|
+
* },
|
|
889
|
+
* where: {
|
|
890
|
+
* // ... the filter for the ChapterAudioTiming we want to update
|
|
891
|
+
* }
|
|
892
|
+
* })
|
|
893
|
+
*/
|
|
894
|
+
upsert<T extends ChapterAudioTimingUpsertArgs>(args: Prisma.SelectSubset<T, ChapterAudioTimingUpsertArgs<ExtArgs>>): Prisma.Prisma__ChapterAudioTimingClient<runtime.Types.Result.GetResult<Prisma.$ChapterAudioTimingPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
895
|
+
/**
|
|
896
|
+
* Count the number of ChapterAudioTimings.
|
|
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 {ChapterAudioTimingCountArgs} args - Arguments to filter ChapterAudioTimings to count.
|
|
900
|
+
* @example
|
|
901
|
+
* // Count the number of ChapterAudioTimings
|
|
902
|
+
* const count = await prisma.chapterAudioTiming.count({
|
|
903
|
+
* where: {
|
|
904
|
+
* // ... the filter for the ChapterAudioTimings we want to count
|
|
905
|
+
* }
|
|
906
|
+
* })
|
|
907
|
+
**/
|
|
908
|
+
count<T extends ChapterAudioTimingCountArgs>(args?: Prisma.Subset<T, ChapterAudioTimingCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], ChapterAudioTimingCountAggregateOutputType> : number>;
|
|
909
|
+
/**
|
|
910
|
+
* Allows you to perform aggregations operations on a ChapterAudioTiming.
|
|
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 {ChapterAudioTimingAggregateArgs} 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 ChapterAudioTimingAggregateArgs>(args: Prisma.Subset<T, ChapterAudioTimingAggregateArgs>): Prisma.PrismaPromise<GetChapterAudioTimingAggregateType<T>>;
|
|
934
|
+
/**
|
|
935
|
+
* Group by ChapterAudioTiming.
|
|
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 {ChapterAudioTimingGroupByArgs} 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 ChapterAudioTimingGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
953
|
+
orderBy: ChapterAudioTimingGroupByArgs['orderBy'];
|
|
954
|
+
} : {
|
|
955
|
+
orderBy?: ChapterAudioTimingGroupByArgs['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, ChapterAudioTimingGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetChapterAudioTimingGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
970
|
+
/**
|
|
971
|
+
* Fields of the ChapterAudioTiming model
|
|
972
|
+
*/
|
|
973
|
+
readonly fields: ChapterAudioTimingFieldRefs;
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
* The delegate class that acts as a "Promise-like" for ChapterAudioTiming.
|
|
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__ChapterAudioTimingClient<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 ChapterAudioTiming model
|
|
1009
|
+
*/
|
|
1010
|
+
export interface ChapterAudioTimingFieldRefs {
|
|
1011
|
+
readonly number: Prisma.FieldRef<"ChapterAudioTiming", 'Int'>;
|
|
1012
|
+
readonly bookId: Prisma.FieldRef<"ChapterAudioTiming", 'String'>;
|
|
1013
|
+
readonly translationId: Prisma.FieldRef<"ChapterAudioTiming", 'String'>;
|
|
1014
|
+
readonly reader: Prisma.FieldRef<"ChapterAudioTiming", 'String'>;
|
|
1015
|
+
readonly timingsJson: Prisma.FieldRef<"ChapterAudioTiming", 'String'>;
|
|
1016
|
+
}
|
|
1017
|
+
/**
|
|
1018
|
+
* ChapterAudioTiming findUnique
|
|
1019
|
+
*/
|
|
1020
|
+
export type ChapterAudioTimingFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1021
|
+
/**
|
|
1022
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1023
|
+
*/
|
|
1024
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1025
|
+
/**
|
|
1026
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1027
|
+
*/
|
|
1028
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1029
|
+
/**
|
|
1030
|
+
* Choose, which related nodes to fetch as well
|
|
1031
|
+
*/
|
|
1032
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1033
|
+
/**
|
|
1034
|
+
* Filter, which ChapterAudioTiming to fetch.
|
|
1035
|
+
*/
|
|
1036
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1037
|
+
};
|
|
1038
|
+
/**
|
|
1039
|
+
* ChapterAudioTiming findUniqueOrThrow
|
|
1040
|
+
*/
|
|
1041
|
+
export type ChapterAudioTimingFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1042
|
+
/**
|
|
1043
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1044
|
+
*/
|
|
1045
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1046
|
+
/**
|
|
1047
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1048
|
+
*/
|
|
1049
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1050
|
+
/**
|
|
1051
|
+
* Choose, which related nodes to fetch as well
|
|
1052
|
+
*/
|
|
1053
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1054
|
+
/**
|
|
1055
|
+
* Filter, which ChapterAudioTiming to fetch.
|
|
1056
|
+
*/
|
|
1057
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1058
|
+
};
|
|
1059
|
+
/**
|
|
1060
|
+
* ChapterAudioTiming findFirst
|
|
1061
|
+
*/
|
|
1062
|
+
export type ChapterAudioTimingFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1063
|
+
/**
|
|
1064
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1065
|
+
*/
|
|
1066
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1067
|
+
/**
|
|
1068
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1069
|
+
*/
|
|
1070
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1071
|
+
/**
|
|
1072
|
+
* Choose, which related nodes to fetch as well
|
|
1073
|
+
*/
|
|
1074
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1075
|
+
/**
|
|
1076
|
+
* Filter, which ChapterAudioTiming to fetch.
|
|
1077
|
+
*/
|
|
1078
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
1079
|
+
/**
|
|
1080
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1081
|
+
*
|
|
1082
|
+
* Determine the order of ChapterAudioTimings to fetch.
|
|
1083
|
+
*/
|
|
1084
|
+
orderBy?: Prisma.ChapterAudioTimingOrderByWithRelationInput | Prisma.ChapterAudioTimingOrderByWithRelationInput[];
|
|
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 ChapterAudioTimings.
|
|
1089
|
+
*/
|
|
1090
|
+
cursor?: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1091
|
+
/**
|
|
1092
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1093
|
+
*
|
|
1094
|
+
* Take `±n` ChapterAudioTimings 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` ChapterAudioTimings.
|
|
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 ChapterAudioTimings.
|
|
1107
|
+
*/
|
|
1108
|
+
distinct?: Prisma.ChapterAudioTimingScalarFieldEnum | Prisma.ChapterAudioTimingScalarFieldEnum[];
|
|
1109
|
+
};
|
|
1110
|
+
/**
|
|
1111
|
+
* ChapterAudioTiming findFirstOrThrow
|
|
1112
|
+
*/
|
|
1113
|
+
export type ChapterAudioTimingFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1114
|
+
/**
|
|
1115
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1116
|
+
*/
|
|
1117
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1118
|
+
/**
|
|
1119
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1120
|
+
*/
|
|
1121
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1122
|
+
/**
|
|
1123
|
+
* Choose, which related nodes to fetch as well
|
|
1124
|
+
*/
|
|
1125
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1126
|
+
/**
|
|
1127
|
+
* Filter, which ChapterAudioTiming to fetch.
|
|
1128
|
+
*/
|
|
1129
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
1130
|
+
/**
|
|
1131
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1132
|
+
*
|
|
1133
|
+
* Determine the order of ChapterAudioTimings to fetch.
|
|
1134
|
+
*/
|
|
1135
|
+
orderBy?: Prisma.ChapterAudioTimingOrderByWithRelationInput | Prisma.ChapterAudioTimingOrderByWithRelationInput[];
|
|
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 ChapterAudioTimings.
|
|
1140
|
+
*/
|
|
1141
|
+
cursor?: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1142
|
+
/**
|
|
1143
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1144
|
+
*
|
|
1145
|
+
* Take `±n` ChapterAudioTimings 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` ChapterAudioTimings.
|
|
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 ChapterAudioTimings.
|
|
1158
|
+
*/
|
|
1159
|
+
distinct?: Prisma.ChapterAudioTimingScalarFieldEnum | Prisma.ChapterAudioTimingScalarFieldEnum[];
|
|
1160
|
+
};
|
|
1161
|
+
/**
|
|
1162
|
+
* ChapterAudioTiming findMany
|
|
1163
|
+
*/
|
|
1164
|
+
export type ChapterAudioTimingFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1165
|
+
/**
|
|
1166
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1167
|
+
*/
|
|
1168
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1169
|
+
/**
|
|
1170
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1171
|
+
*/
|
|
1172
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1173
|
+
/**
|
|
1174
|
+
* Choose, which related nodes to fetch as well
|
|
1175
|
+
*/
|
|
1176
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1177
|
+
/**
|
|
1178
|
+
* Filter, which ChapterAudioTimings to fetch.
|
|
1179
|
+
*/
|
|
1180
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
1181
|
+
/**
|
|
1182
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1183
|
+
*
|
|
1184
|
+
* Determine the order of ChapterAudioTimings to fetch.
|
|
1185
|
+
*/
|
|
1186
|
+
orderBy?: Prisma.ChapterAudioTimingOrderByWithRelationInput | Prisma.ChapterAudioTimingOrderByWithRelationInput[];
|
|
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 ChapterAudioTimings.
|
|
1191
|
+
*/
|
|
1192
|
+
cursor?: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1193
|
+
/**
|
|
1194
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1195
|
+
*
|
|
1196
|
+
* Take `±n` ChapterAudioTimings 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` ChapterAudioTimings.
|
|
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 ChapterAudioTimings.
|
|
1209
|
+
*/
|
|
1210
|
+
distinct?: Prisma.ChapterAudioTimingScalarFieldEnum | Prisma.ChapterAudioTimingScalarFieldEnum[];
|
|
1211
|
+
};
|
|
1212
|
+
/**
|
|
1213
|
+
* ChapterAudioTiming create
|
|
1214
|
+
*/
|
|
1215
|
+
export type ChapterAudioTimingCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1216
|
+
/**
|
|
1217
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1218
|
+
*/
|
|
1219
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1220
|
+
/**
|
|
1221
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1222
|
+
*/
|
|
1223
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1224
|
+
/**
|
|
1225
|
+
* Choose, which related nodes to fetch as well
|
|
1226
|
+
*/
|
|
1227
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1228
|
+
/**
|
|
1229
|
+
* The data needed to create a ChapterAudioTiming.
|
|
1230
|
+
*/
|
|
1231
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingCreateInput, Prisma.ChapterAudioTimingUncheckedCreateInput>;
|
|
1232
|
+
};
|
|
1233
|
+
/**
|
|
1234
|
+
* ChapterAudioTiming createMany
|
|
1235
|
+
*/
|
|
1236
|
+
export type ChapterAudioTimingCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1237
|
+
/**
|
|
1238
|
+
* The data used to create many ChapterAudioTimings.
|
|
1239
|
+
*/
|
|
1240
|
+
data: Prisma.ChapterAudioTimingCreateManyInput | Prisma.ChapterAudioTimingCreateManyInput[];
|
|
1241
|
+
};
|
|
1242
|
+
/**
|
|
1243
|
+
* ChapterAudioTiming createManyAndReturn
|
|
1244
|
+
*/
|
|
1245
|
+
export type ChapterAudioTimingCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1246
|
+
/**
|
|
1247
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1248
|
+
*/
|
|
1249
|
+
select?: Prisma.ChapterAudioTimingSelectCreateManyAndReturn<ExtArgs> | null;
|
|
1250
|
+
/**
|
|
1251
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1252
|
+
*/
|
|
1253
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1254
|
+
/**
|
|
1255
|
+
* The data used to create many ChapterAudioTimings.
|
|
1256
|
+
*/
|
|
1257
|
+
data: Prisma.ChapterAudioTimingCreateManyInput | Prisma.ChapterAudioTimingCreateManyInput[];
|
|
1258
|
+
/**
|
|
1259
|
+
* Choose, which related nodes to fetch as well
|
|
1260
|
+
*/
|
|
1261
|
+
include?: Prisma.ChapterAudioTimingIncludeCreateManyAndReturn<ExtArgs> | null;
|
|
1262
|
+
};
|
|
1263
|
+
/**
|
|
1264
|
+
* ChapterAudioTiming update
|
|
1265
|
+
*/
|
|
1266
|
+
export type ChapterAudioTimingUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1267
|
+
/**
|
|
1268
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1269
|
+
*/
|
|
1270
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1271
|
+
/**
|
|
1272
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1273
|
+
*/
|
|
1274
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1275
|
+
/**
|
|
1276
|
+
* Choose, which related nodes to fetch as well
|
|
1277
|
+
*/
|
|
1278
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1279
|
+
/**
|
|
1280
|
+
* The data needed to update a ChapterAudioTiming.
|
|
1281
|
+
*/
|
|
1282
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateInput, Prisma.ChapterAudioTimingUncheckedUpdateInput>;
|
|
1283
|
+
/**
|
|
1284
|
+
* Choose, which ChapterAudioTiming to update.
|
|
1285
|
+
*/
|
|
1286
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1287
|
+
};
|
|
1288
|
+
/**
|
|
1289
|
+
* ChapterAudioTiming updateMany
|
|
1290
|
+
*/
|
|
1291
|
+
export type ChapterAudioTimingUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1292
|
+
/**
|
|
1293
|
+
* The data used to update ChapterAudioTimings.
|
|
1294
|
+
*/
|
|
1295
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateManyMutationInput, Prisma.ChapterAudioTimingUncheckedUpdateManyInput>;
|
|
1296
|
+
/**
|
|
1297
|
+
* Filter which ChapterAudioTimings to update
|
|
1298
|
+
*/
|
|
1299
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
1300
|
+
/**
|
|
1301
|
+
* Limit how many ChapterAudioTimings to update.
|
|
1302
|
+
*/
|
|
1303
|
+
limit?: number;
|
|
1304
|
+
};
|
|
1305
|
+
/**
|
|
1306
|
+
* ChapterAudioTiming updateManyAndReturn
|
|
1307
|
+
*/
|
|
1308
|
+
export type ChapterAudioTimingUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1309
|
+
/**
|
|
1310
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1311
|
+
*/
|
|
1312
|
+
select?: Prisma.ChapterAudioTimingSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1315
|
+
*/
|
|
1316
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1317
|
+
/**
|
|
1318
|
+
* The data used to update ChapterAudioTimings.
|
|
1319
|
+
*/
|
|
1320
|
+
data: Prisma.XOR<Prisma.ChapterAudioTimingUpdateManyMutationInput, Prisma.ChapterAudioTimingUncheckedUpdateManyInput>;
|
|
1321
|
+
/**
|
|
1322
|
+
* Filter which ChapterAudioTimings to update
|
|
1323
|
+
*/
|
|
1324
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
1325
|
+
/**
|
|
1326
|
+
* Limit how many ChapterAudioTimings to update.
|
|
1327
|
+
*/
|
|
1328
|
+
limit?: number;
|
|
1329
|
+
/**
|
|
1330
|
+
* Choose, which related nodes to fetch as well
|
|
1331
|
+
*/
|
|
1332
|
+
include?: Prisma.ChapterAudioTimingIncludeUpdateManyAndReturn<ExtArgs> | null;
|
|
1333
|
+
};
|
|
1334
|
+
/**
|
|
1335
|
+
* ChapterAudioTiming upsert
|
|
1336
|
+
*/
|
|
1337
|
+
export type ChapterAudioTimingUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1338
|
+
/**
|
|
1339
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1340
|
+
*/
|
|
1341
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1342
|
+
/**
|
|
1343
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1344
|
+
*/
|
|
1345
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1346
|
+
/**
|
|
1347
|
+
* Choose, which related nodes to fetch as well
|
|
1348
|
+
*/
|
|
1349
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1350
|
+
/**
|
|
1351
|
+
* The filter to search for the ChapterAudioTiming to update in case it exists.
|
|
1352
|
+
*/
|
|
1353
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1354
|
+
/**
|
|
1355
|
+
* In case the ChapterAudioTiming found by the `where` argument doesn't exist, create a new ChapterAudioTiming with this data.
|
|
1356
|
+
*/
|
|
1357
|
+
create: Prisma.XOR<Prisma.ChapterAudioTimingCreateInput, Prisma.ChapterAudioTimingUncheckedCreateInput>;
|
|
1358
|
+
/**
|
|
1359
|
+
* In case the ChapterAudioTiming was found with the provided `where` argument, update it with this data.
|
|
1360
|
+
*/
|
|
1361
|
+
update: Prisma.XOR<Prisma.ChapterAudioTimingUpdateInput, Prisma.ChapterAudioTimingUncheckedUpdateInput>;
|
|
1362
|
+
};
|
|
1363
|
+
/**
|
|
1364
|
+
* ChapterAudioTiming delete
|
|
1365
|
+
*/
|
|
1366
|
+
export type ChapterAudioTimingDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1367
|
+
/**
|
|
1368
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1369
|
+
*/
|
|
1370
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1371
|
+
/**
|
|
1372
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1373
|
+
*/
|
|
1374
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1375
|
+
/**
|
|
1376
|
+
* Choose, which related nodes to fetch as well
|
|
1377
|
+
*/
|
|
1378
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1379
|
+
/**
|
|
1380
|
+
* Filter which ChapterAudioTiming to delete.
|
|
1381
|
+
*/
|
|
1382
|
+
where: Prisma.ChapterAudioTimingWhereUniqueInput;
|
|
1383
|
+
};
|
|
1384
|
+
/**
|
|
1385
|
+
* ChapterAudioTiming deleteMany
|
|
1386
|
+
*/
|
|
1387
|
+
export type ChapterAudioTimingDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1388
|
+
/**
|
|
1389
|
+
* Filter which ChapterAudioTimings to delete
|
|
1390
|
+
*/
|
|
1391
|
+
where?: Prisma.ChapterAudioTimingWhereInput;
|
|
1392
|
+
/**
|
|
1393
|
+
* Limit how many ChapterAudioTimings to delete.
|
|
1394
|
+
*/
|
|
1395
|
+
limit?: number;
|
|
1396
|
+
};
|
|
1397
|
+
/**
|
|
1398
|
+
* ChapterAudioTiming without action
|
|
1399
|
+
*/
|
|
1400
|
+
export type ChapterAudioTimingDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1401
|
+
/**
|
|
1402
|
+
* Select specific fields to fetch from the ChapterAudioTiming
|
|
1403
|
+
*/
|
|
1404
|
+
select?: Prisma.ChapterAudioTimingSelect<ExtArgs> | null;
|
|
1405
|
+
/**
|
|
1406
|
+
* Omit specific fields from the ChapterAudioTiming
|
|
1407
|
+
*/
|
|
1408
|
+
omit?: Prisma.ChapterAudioTimingOmit<ExtArgs> | null;
|
|
1409
|
+
/**
|
|
1410
|
+
* Choose, which related nodes to fetch as well
|
|
1411
|
+
*/
|
|
1412
|
+
include?: Prisma.ChapterAudioTimingInclude<ExtArgs> | null;
|
|
1413
|
+
};
|
|
1414
|
+
//# sourceMappingURL=ChapterAudioTiming.d.ts.map
|