@helloao/cli 0.0.9 → 0.0.10
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/dist/cjs/cli.cjs +2704 -357
- package/dist/types/actions.d.ts +17 -0
- package/dist/types/db.d.ts +49 -6
- package/dist/types/downloads.d.ts +1 -1
- package/dist/types/files.d.ts +11 -0
- package/dist/types/uploads.d.ts +9 -0
- package/migrations/20241113173937_add_commentaries/migration.sql +56 -0
- package/node_modules/@zip.js/.ignored_zip.js +0 -0
- package/package.json +4 -2
- package/prisma-gen/edge.js +48 -3
- package/prisma-gen/index-browser.js +45 -0
- package/prisma-gen/index.d.ts +8781 -2147
- package/prisma-gen/index.js +48 -3
- package/prisma-gen/wasm.js +45 -0
- package/schema.prisma +81 -0
|
@@ -128,6 +128,17 @@ exports.Prisma.TranslationScalarFieldEnum = {
|
|
|
128
128
|
sha256: 'sha256'
|
|
129
129
|
};
|
|
130
130
|
|
|
131
|
+
exports.Prisma.CommentaryScalarFieldEnum = {
|
|
132
|
+
id: 'id',
|
|
133
|
+
name: 'name',
|
|
134
|
+
website: 'website',
|
|
135
|
+
licenseUrl: 'licenseUrl',
|
|
136
|
+
englishName: 'englishName',
|
|
137
|
+
language: 'language',
|
|
138
|
+
textDirection: 'textDirection',
|
|
139
|
+
sha256: 'sha256'
|
|
140
|
+
};
|
|
141
|
+
|
|
131
142
|
exports.Prisma.InputFileScalarFieldEnum = {
|
|
132
143
|
translationId: 'translationId',
|
|
133
144
|
name: 'name',
|
|
@@ -147,6 +158,17 @@ exports.Prisma.BookScalarFieldEnum = {
|
|
|
147
158
|
sha256: 'sha256'
|
|
148
159
|
};
|
|
149
160
|
|
|
161
|
+
exports.Prisma.CommentaryBookScalarFieldEnum = {
|
|
162
|
+
id: 'id',
|
|
163
|
+
commentaryId: 'commentaryId',
|
|
164
|
+
name: 'name',
|
|
165
|
+
commonName: 'commonName',
|
|
166
|
+
introduction: 'introduction',
|
|
167
|
+
order: 'order',
|
|
168
|
+
numberOfChapters: 'numberOfChapters',
|
|
169
|
+
sha256: 'sha256'
|
|
170
|
+
};
|
|
171
|
+
|
|
150
172
|
exports.Prisma.ChapterScalarFieldEnum = {
|
|
151
173
|
number: 'number',
|
|
152
174
|
bookId: 'bookId',
|
|
@@ -155,6 +177,15 @@ exports.Prisma.ChapterScalarFieldEnum = {
|
|
|
155
177
|
sha256: 'sha256'
|
|
156
178
|
};
|
|
157
179
|
|
|
180
|
+
exports.Prisma.CommentaryChapterScalarFieldEnum = {
|
|
181
|
+
number: 'number',
|
|
182
|
+
bookId: 'bookId',
|
|
183
|
+
commentaryId: 'commentaryId',
|
|
184
|
+
introduction: 'introduction',
|
|
185
|
+
json: 'json',
|
|
186
|
+
sha256: 'sha256'
|
|
187
|
+
};
|
|
188
|
+
|
|
158
189
|
exports.Prisma.ChapterAudioUrlScalarFieldEnum = {
|
|
159
190
|
number: 'number',
|
|
160
191
|
bookId: 'bookId',
|
|
@@ -173,6 +204,16 @@ exports.Prisma.ChapterVerseScalarFieldEnum = {
|
|
|
173
204
|
sha256: 'sha256'
|
|
174
205
|
};
|
|
175
206
|
|
|
207
|
+
exports.Prisma.CommentaryChapterVerseScalarFieldEnum = {
|
|
208
|
+
number: 'number',
|
|
209
|
+
chapterNumber: 'chapterNumber',
|
|
210
|
+
bookId: 'bookId',
|
|
211
|
+
commentaryId: 'commentaryId',
|
|
212
|
+
text: 'text',
|
|
213
|
+
contentJson: 'contentJson',
|
|
214
|
+
sha256: 'sha256'
|
|
215
|
+
};
|
|
216
|
+
|
|
176
217
|
exports.Prisma.ChapterFootnoteScalarFieldEnum = {
|
|
177
218
|
id: 'id',
|
|
178
219
|
chapterNumber: 'chapterNumber',
|
|
@@ -196,11 +237,15 @@ exports.Prisma.NullsOrder = {
|
|
|
196
237
|
|
|
197
238
|
exports.Prisma.ModelName = {
|
|
198
239
|
Translation: 'Translation',
|
|
240
|
+
Commentary: 'Commentary',
|
|
199
241
|
InputFile: 'InputFile',
|
|
200
242
|
Book: 'Book',
|
|
243
|
+
CommentaryBook: 'CommentaryBook',
|
|
201
244
|
Chapter: 'Chapter',
|
|
245
|
+
CommentaryChapter: 'CommentaryChapter',
|
|
202
246
|
ChapterAudioUrl: 'ChapterAudioUrl',
|
|
203
247
|
ChapterVerse: 'ChapterVerse',
|
|
248
|
+
CommentaryChapterVerse: 'CommentaryChapterVerse',
|
|
204
249
|
ChapterFootnote: 'ChapterFootnote'
|
|
205
250
|
};
|
|
206
251
|
|