@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,294 @@
|
|
|
1
|
+
import * as runtime from "@prisma/client/runtime/index-browser";
|
|
2
|
+
export type * from '../models';
|
|
3
|
+
export type * from './prismaNamespace';
|
|
4
|
+
export declare const Decimal: typeof runtime.Decimal;
|
|
5
|
+
export declare const NullTypes: {
|
|
6
|
+
DbNull: (new (secret: never) => typeof runtime.DbNull);
|
|
7
|
+
JsonNull: (new (secret: never) => typeof runtime.JsonNull);
|
|
8
|
+
AnyNull: (new (secret: never) => typeof runtime.AnyNull);
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
|
12
|
+
*
|
|
13
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
14
|
+
*/
|
|
15
|
+
export declare const DbNull: import("@prisma/client/runtime/client").DbNullClass;
|
|
16
|
+
/**
|
|
17
|
+
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
|
18
|
+
*
|
|
19
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
20
|
+
*/
|
|
21
|
+
export declare const JsonNull: import("@prisma/client/runtime/client").JsonNullClass;
|
|
22
|
+
/**
|
|
23
|
+
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
|
24
|
+
*
|
|
25
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
26
|
+
*/
|
|
27
|
+
export declare const AnyNull: import("@prisma/client/runtime/client").AnyNullClass;
|
|
28
|
+
export declare const ModelName: {
|
|
29
|
+
readonly Translation: "Translation";
|
|
30
|
+
readonly Commentary: "Commentary";
|
|
31
|
+
readonly EBibleSource: "EBibleSource";
|
|
32
|
+
readonly InputFile: "InputFile";
|
|
33
|
+
readonly InputFileWarning: "InputFileWarning";
|
|
34
|
+
readonly Book: "Book";
|
|
35
|
+
readonly CommentaryBook: "CommentaryBook";
|
|
36
|
+
readonly CommentaryProfile: "CommentaryProfile";
|
|
37
|
+
readonly Chapter: "Chapter";
|
|
38
|
+
readonly CommentaryChapter: "CommentaryChapter";
|
|
39
|
+
readonly ChapterAudioUrl: "ChapterAudioUrl";
|
|
40
|
+
readonly ChapterAudioTiming: "ChapterAudioTiming";
|
|
41
|
+
readonly ChapterWords: "ChapterWords";
|
|
42
|
+
readonly ChapterVerse: "ChapterVerse";
|
|
43
|
+
readonly CommentaryChapterVerse: "CommentaryChapterVerse";
|
|
44
|
+
readonly ChapterFootnote: "ChapterFootnote";
|
|
45
|
+
readonly Dataset: "Dataset";
|
|
46
|
+
readonly DatasetBook: "DatasetBook";
|
|
47
|
+
readonly DatasetChapter: "DatasetChapter";
|
|
48
|
+
readonly DatasetChapterVerse: "DatasetChapterVerse";
|
|
49
|
+
readonly DatasetReference: "DatasetReference";
|
|
50
|
+
};
|
|
51
|
+
export type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
52
|
+
export declare const TransactionIsolationLevel: {
|
|
53
|
+
readonly Serializable: "Serializable";
|
|
54
|
+
};
|
|
55
|
+
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
|
|
56
|
+
export declare const TranslationScalarFieldEnum: {
|
|
57
|
+
readonly id: "id";
|
|
58
|
+
readonly name: "name";
|
|
59
|
+
readonly website: "website";
|
|
60
|
+
readonly licenseUrl: "licenseUrl";
|
|
61
|
+
readonly licenseNotes: "licenseNotes";
|
|
62
|
+
readonly licenseNotice: "licenseNotice";
|
|
63
|
+
readonly shortName: "shortName";
|
|
64
|
+
readonly englishName: "englishName";
|
|
65
|
+
readonly language: "language";
|
|
66
|
+
readonly textDirection: "textDirection";
|
|
67
|
+
readonly sha256: "sha256";
|
|
68
|
+
};
|
|
69
|
+
export type TranslationScalarFieldEnum = (typeof TranslationScalarFieldEnum)[keyof typeof TranslationScalarFieldEnum];
|
|
70
|
+
export declare const CommentaryScalarFieldEnum: {
|
|
71
|
+
readonly id: "id";
|
|
72
|
+
readonly name: "name";
|
|
73
|
+
readonly website: "website";
|
|
74
|
+
readonly licenseUrl: "licenseUrl";
|
|
75
|
+
readonly licenseNotes: "licenseNotes";
|
|
76
|
+
readonly licenseNotice: "licenseNotice";
|
|
77
|
+
readonly englishName: "englishName";
|
|
78
|
+
readonly language: "language";
|
|
79
|
+
readonly textDirection: "textDirection";
|
|
80
|
+
readonly sha256: "sha256";
|
|
81
|
+
};
|
|
82
|
+
export type CommentaryScalarFieldEnum = (typeof CommentaryScalarFieldEnum)[keyof typeof CommentaryScalarFieldEnum];
|
|
83
|
+
export declare const EBibleSourceScalarFieldEnum: {
|
|
84
|
+
readonly id: "id";
|
|
85
|
+
readonly usfmZipUrl: "usfmZipUrl";
|
|
86
|
+
readonly usfmZipEtag: "usfmZipEtag";
|
|
87
|
+
readonly languageCode: "languageCode";
|
|
88
|
+
readonly title: "title";
|
|
89
|
+
readonly shortTitle: "shortTitle";
|
|
90
|
+
readonly textDirection: "textDirection";
|
|
91
|
+
readonly redistributable: "redistributable";
|
|
92
|
+
readonly description: "description";
|
|
93
|
+
readonly copyright: "copyright";
|
|
94
|
+
readonly FCBHID: "FCBHID";
|
|
95
|
+
readonly updateDate: "updateDate";
|
|
96
|
+
readonly sourceDate: "sourceDate";
|
|
97
|
+
readonly oldTestamentBooks: "oldTestamentBooks";
|
|
98
|
+
readonly oldTestamentChapters: "oldTestamentChapters";
|
|
99
|
+
readonly oldTestamentVerses: "oldTestamentVerses";
|
|
100
|
+
readonly newTestamentBooks: "newTestamentBooks";
|
|
101
|
+
readonly newTestamentChapters: "newTestamentChapters";
|
|
102
|
+
readonly newTestamentVerses: "newTestamentVerses";
|
|
103
|
+
readonly apocryphaBooks: "apocryphaBooks";
|
|
104
|
+
readonly apocryphaChapters: "apocryphaChapters";
|
|
105
|
+
readonly apocryphaVerses: "apocryphaVerses";
|
|
106
|
+
readonly translationId: "translationId";
|
|
107
|
+
readonly usfmDownloadDate: "usfmDownloadDate";
|
|
108
|
+
readonly usfmDownloadPath: "usfmDownloadPath";
|
|
109
|
+
readonly sha256: "sha256";
|
|
110
|
+
};
|
|
111
|
+
export type EBibleSourceScalarFieldEnum = (typeof EBibleSourceScalarFieldEnum)[keyof typeof EBibleSourceScalarFieldEnum];
|
|
112
|
+
export declare const InputFileScalarFieldEnum: {
|
|
113
|
+
readonly translationId: "translationId";
|
|
114
|
+
readonly name: "name";
|
|
115
|
+
readonly format: "format";
|
|
116
|
+
readonly sha256: "sha256";
|
|
117
|
+
readonly sizeInBytes: "sizeInBytes";
|
|
118
|
+
};
|
|
119
|
+
export type InputFileScalarFieldEnum = (typeof InputFileScalarFieldEnum)[keyof typeof InputFileScalarFieldEnum];
|
|
120
|
+
export declare const InputFileWarningScalarFieldEnum: {
|
|
121
|
+
readonly name: "name";
|
|
122
|
+
readonly type: "type";
|
|
123
|
+
readonly message: "message";
|
|
124
|
+
};
|
|
125
|
+
export type InputFileWarningScalarFieldEnum = (typeof InputFileWarningScalarFieldEnum)[keyof typeof InputFileWarningScalarFieldEnum];
|
|
126
|
+
export declare const BookScalarFieldEnum: {
|
|
127
|
+
readonly id: "id";
|
|
128
|
+
readonly translationId: "translationId";
|
|
129
|
+
readonly name: "name";
|
|
130
|
+
readonly commonName: "commonName";
|
|
131
|
+
readonly title: "title";
|
|
132
|
+
readonly order: "order";
|
|
133
|
+
readonly numberOfChapters: "numberOfChapters";
|
|
134
|
+
readonly isApocryphal: "isApocryphal";
|
|
135
|
+
readonly sha256: "sha256";
|
|
136
|
+
};
|
|
137
|
+
export type BookScalarFieldEnum = (typeof BookScalarFieldEnum)[keyof typeof BookScalarFieldEnum];
|
|
138
|
+
export declare const CommentaryBookScalarFieldEnum: {
|
|
139
|
+
readonly id: "id";
|
|
140
|
+
readonly commentaryId: "commentaryId";
|
|
141
|
+
readonly name: "name";
|
|
142
|
+
readonly commonName: "commonName";
|
|
143
|
+
readonly introduction: "introduction";
|
|
144
|
+
readonly introductionSummary: "introductionSummary";
|
|
145
|
+
readonly order: "order";
|
|
146
|
+
readonly numberOfChapters: "numberOfChapters";
|
|
147
|
+
readonly sha256: "sha256";
|
|
148
|
+
};
|
|
149
|
+
export type CommentaryBookScalarFieldEnum = (typeof CommentaryBookScalarFieldEnum)[keyof typeof CommentaryBookScalarFieldEnum];
|
|
150
|
+
export declare const CommentaryProfileScalarFieldEnum: {
|
|
151
|
+
readonly id: "id";
|
|
152
|
+
readonly commentaryId: "commentaryId";
|
|
153
|
+
readonly subject: "subject";
|
|
154
|
+
readonly content: "content";
|
|
155
|
+
readonly referenceBook: "referenceBook";
|
|
156
|
+
readonly referenceChapter: "referenceChapter";
|
|
157
|
+
readonly referenceVerse: "referenceVerse";
|
|
158
|
+
readonly referenceEndChapter: "referenceEndChapter";
|
|
159
|
+
readonly referenceEndVerse: "referenceEndVerse";
|
|
160
|
+
readonly json: "json";
|
|
161
|
+
readonly sha256: "sha256";
|
|
162
|
+
};
|
|
163
|
+
export type CommentaryProfileScalarFieldEnum = (typeof CommentaryProfileScalarFieldEnum)[keyof typeof CommentaryProfileScalarFieldEnum];
|
|
164
|
+
export declare const ChapterScalarFieldEnum: {
|
|
165
|
+
readonly number: "number";
|
|
166
|
+
readonly bookId: "bookId";
|
|
167
|
+
readonly translationId: "translationId";
|
|
168
|
+
readonly json: "json";
|
|
169
|
+
readonly sha256: "sha256";
|
|
170
|
+
};
|
|
171
|
+
export type ChapterScalarFieldEnum = (typeof ChapterScalarFieldEnum)[keyof typeof ChapterScalarFieldEnum];
|
|
172
|
+
export declare const CommentaryChapterScalarFieldEnum: {
|
|
173
|
+
readonly number: "number";
|
|
174
|
+
readonly bookId: "bookId";
|
|
175
|
+
readonly commentaryId: "commentaryId";
|
|
176
|
+
readonly introduction: "introduction";
|
|
177
|
+
readonly json: "json";
|
|
178
|
+
readonly sha256: "sha256";
|
|
179
|
+
};
|
|
180
|
+
export type CommentaryChapterScalarFieldEnum = (typeof CommentaryChapterScalarFieldEnum)[keyof typeof CommentaryChapterScalarFieldEnum];
|
|
181
|
+
export declare const ChapterAudioUrlScalarFieldEnum: {
|
|
182
|
+
readonly number: "number";
|
|
183
|
+
readonly bookId: "bookId";
|
|
184
|
+
readonly translationId: "translationId";
|
|
185
|
+
readonly reader: "reader";
|
|
186
|
+
readonly url: "url";
|
|
187
|
+
};
|
|
188
|
+
export type ChapterAudioUrlScalarFieldEnum = (typeof ChapterAudioUrlScalarFieldEnum)[keyof typeof ChapterAudioUrlScalarFieldEnum];
|
|
189
|
+
export declare const ChapterAudioTimingScalarFieldEnum: {
|
|
190
|
+
readonly number: "number";
|
|
191
|
+
readonly bookId: "bookId";
|
|
192
|
+
readonly translationId: "translationId";
|
|
193
|
+
readonly reader: "reader";
|
|
194
|
+
readonly timingsJson: "timingsJson";
|
|
195
|
+
};
|
|
196
|
+
export type ChapterAudioTimingScalarFieldEnum = (typeof ChapterAudioTimingScalarFieldEnum)[keyof typeof ChapterAudioTimingScalarFieldEnum];
|
|
197
|
+
export declare const ChapterWordsScalarFieldEnum: {
|
|
198
|
+
readonly number: "number";
|
|
199
|
+
readonly bookId: "bookId";
|
|
200
|
+
readonly translationId: "translationId";
|
|
201
|
+
readonly wordsJson: "wordsJson";
|
|
202
|
+
};
|
|
203
|
+
export type ChapterWordsScalarFieldEnum = (typeof ChapterWordsScalarFieldEnum)[keyof typeof ChapterWordsScalarFieldEnum];
|
|
204
|
+
export declare const ChapterVerseScalarFieldEnum: {
|
|
205
|
+
readonly number: "number";
|
|
206
|
+
readonly chapterNumber: "chapterNumber";
|
|
207
|
+
readonly bookId: "bookId";
|
|
208
|
+
readonly translationId: "translationId";
|
|
209
|
+
readonly text: "text";
|
|
210
|
+
readonly contentJson: "contentJson";
|
|
211
|
+
readonly sha256: "sha256";
|
|
212
|
+
};
|
|
213
|
+
export type ChapterVerseScalarFieldEnum = (typeof ChapterVerseScalarFieldEnum)[keyof typeof ChapterVerseScalarFieldEnum];
|
|
214
|
+
export declare const CommentaryChapterVerseScalarFieldEnum: {
|
|
215
|
+
readonly number: "number";
|
|
216
|
+
readonly chapterNumber: "chapterNumber";
|
|
217
|
+
readonly bookId: "bookId";
|
|
218
|
+
readonly commentaryId: "commentaryId";
|
|
219
|
+
readonly text: "text";
|
|
220
|
+
readonly contentJson: "contentJson";
|
|
221
|
+
readonly sha256: "sha256";
|
|
222
|
+
};
|
|
223
|
+
export type CommentaryChapterVerseScalarFieldEnum = (typeof CommentaryChapterVerseScalarFieldEnum)[keyof typeof CommentaryChapterVerseScalarFieldEnum];
|
|
224
|
+
export declare const ChapterFootnoteScalarFieldEnum: {
|
|
225
|
+
readonly id: "id";
|
|
226
|
+
readonly chapterNumber: "chapterNumber";
|
|
227
|
+
readonly bookId: "bookId";
|
|
228
|
+
readonly translationId: "translationId";
|
|
229
|
+
readonly text: "text";
|
|
230
|
+
readonly sha256: "sha256";
|
|
231
|
+
readonly verseNumber: "verseNumber";
|
|
232
|
+
};
|
|
233
|
+
export type ChapterFootnoteScalarFieldEnum = (typeof ChapterFootnoteScalarFieldEnum)[keyof typeof ChapterFootnoteScalarFieldEnum];
|
|
234
|
+
export declare const DatasetScalarFieldEnum: {
|
|
235
|
+
readonly id: "id";
|
|
236
|
+
readonly name: "name";
|
|
237
|
+
readonly website: "website";
|
|
238
|
+
readonly licenseUrl: "licenseUrl";
|
|
239
|
+
readonly licenseNotes: "licenseNotes";
|
|
240
|
+
readonly englishName: "englishName";
|
|
241
|
+
readonly language: "language";
|
|
242
|
+
readonly textDirection: "textDirection";
|
|
243
|
+
readonly sha256: "sha256";
|
|
244
|
+
};
|
|
245
|
+
export type DatasetScalarFieldEnum = (typeof DatasetScalarFieldEnum)[keyof typeof DatasetScalarFieldEnum];
|
|
246
|
+
export declare const DatasetBookScalarFieldEnum: {
|
|
247
|
+
readonly id: "id";
|
|
248
|
+
readonly datasetId: "datasetId";
|
|
249
|
+
readonly order: "order";
|
|
250
|
+
readonly numberOfChapters: "numberOfChapters";
|
|
251
|
+
readonly sha256: "sha256";
|
|
252
|
+
};
|
|
253
|
+
export type DatasetBookScalarFieldEnum = (typeof DatasetBookScalarFieldEnum)[keyof typeof DatasetBookScalarFieldEnum];
|
|
254
|
+
export declare const DatasetChapterScalarFieldEnum: {
|
|
255
|
+
readonly number: "number";
|
|
256
|
+
readonly bookId: "bookId";
|
|
257
|
+
readonly datasetId: "datasetId";
|
|
258
|
+
readonly json: "json";
|
|
259
|
+
readonly sha256: "sha256";
|
|
260
|
+
};
|
|
261
|
+
export type DatasetChapterScalarFieldEnum = (typeof DatasetChapterScalarFieldEnum)[keyof typeof DatasetChapterScalarFieldEnum];
|
|
262
|
+
export declare const DatasetChapterVerseScalarFieldEnum: {
|
|
263
|
+
readonly number: "number";
|
|
264
|
+
readonly chapterNumber: "chapterNumber";
|
|
265
|
+
readonly bookId: "bookId";
|
|
266
|
+
readonly datasetId: "datasetId";
|
|
267
|
+
readonly contentJson: "contentJson";
|
|
268
|
+
readonly sha256: "sha256";
|
|
269
|
+
};
|
|
270
|
+
export type DatasetChapterVerseScalarFieldEnum = (typeof DatasetChapterVerseScalarFieldEnum)[keyof typeof DatasetChapterVerseScalarFieldEnum];
|
|
271
|
+
export declare const DatasetReferenceScalarFieldEnum: {
|
|
272
|
+
readonly id: "id";
|
|
273
|
+
readonly datasetId: "datasetId";
|
|
274
|
+
readonly bookId: "bookId";
|
|
275
|
+
readonly chapterNumber: "chapterNumber";
|
|
276
|
+
readonly verseNumber: "verseNumber";
|
|
277
|
+
readonly referenceBookId: "referenceBookId";
|
|
278
|
+
readonly referenceChapter: "referenceChapter";
|
|
279
|
+
readonly referenceVerse: "referenceVerse";
|
|
280
|
+
readonly endVerseNumber: "endVerseNumber";
|
|
281
|
+
readonly score: "score";
|
|
282
|
+
};
|
|
283
|
+
export type DatasetReferenceScalarFieldEnum = (typeof DatasetReferenceScalarFieldEnum)[keyof typeof DatasetReferenceScalarFieldEnum];
|
|
284
|
+
export declare const SortOrder: {
|
|
285
|
+
readonly asc: "asc";
|
|
286
|
+
readonly desc: "desc";
|
|
287
|
+
};
|
|
288
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
289
|
+
export declare const NullsOrder: {
|
|
290
|
+
readonly first: "first";
|
|
291
|
+
readonly last: "last";
|
|
292
|
+
};
|
|
293
|
+
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
294
|
+
//# sourceMappingURL=prismaNamespaceBrowser.d.ts.map
|