-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
698 lines (612 loc) · 13.4 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
schema {
query: QueryRoot
mutation: Mutation
}
"""
Indicates that an Input Object is a OneOf Input Object (and thus requires
exactly one of its field be provided)
"""
directive @oneOf on INPUT_OBJECT
type BasicGroup {
defaultSettings: Int!
description: String
groupType: BasicGroupKind!
name: String!
options: [BasicOptionItem!]!
priority: Int!
}
enum BasicGroupKind {
IMC
MULTI
SINGLE
}
type BasicOptionItem {
description: String
imagePath: String
name: String!
}
scalar BatchList
"""
Implement the DateTime<Utc> scalar
The input/output is a string in RFC3339 format.
"""
scalar DateTime
enum DownloadKind {
INSTALL
UPDATE
}
type ExtraFile {
path: String!
size: Int!
}
type ExtraFileArchive {
files: [ExtraFile!]!
hash: String!
id: UUID!
name: String!
sizeCompressed: Int!
}
scalar FileList
scalar FileSwaps
input FilterInfo {
nsfl: Boolean!
nsfw: Boolean!
paid: Boolean!
}
type FullUser {
email: String!
emailVerified: Boolean!
hashes: [String!]!
id: UUID!
installQueue: [Version!]!
isPatreonCreator: Boolean!
level: UserLevel!
maxUploadSize: Int!
patreonConnected: Boolean!
patreonTiers(force: Boolean!): [Tier!]
profile: Profile!
subscriber: Boolean!
tasks: [Task!]!
templates: [Template!]!
tokenId: Int!
tokens: [Token!]!
totpEnabled: Boolean!
usedStorage: Int!
usedVanityUrls: Int!
username: String!
vanityUrl: String
vanityUrls: Int!
verificationLevel: VerificationLevel!
webhook: Webhook
}
type Group implements GroupInterface {
defaultSettings: Int!
description: String
groupType: GroupType!
name: String!
options: [OptionItem!]!
originalIndex: Int!
priority: Int!
version: Int
}
type GroupContainer {
imc: [GroupImc!]!
standard: [Group!]!
}
type GroupImc implements GroupInterface {
allVariants: Boolean!
defaultEntry: JSON!
defaultSettings: Int!
description: String
groupType: GroupType!
identifier: JSON!
name: String!
options: [OptionItemImc!]!
originalIndex: Int!
priority: Int!
version: Int
}
interface GroupInterface {
defaultSettings: Int!
description: String
groupType: GroupType!
name: String!
originalIndex: Int!
priority: Int!
version: Int
}
type GroupManipulations {
name: String
options: [OptionManipulations!]!
}
enum GroupType {
IMC
MULTI
SINGLE
}
type Image {
displayOrder: Int!
dominantColours(limit: Int = null): [Int!]
hash: String!
id: Int!
thumbhash: Thumbhash
}
enum InstallQueueUpdate {
ADD
REMOVE
}
scalar InstallerImageList
type InstallerImages {
baseUri: String!
images: InstallerImageList!
}
"""A scalar that can represent any JSON value."""
scalar JSON
"""A scalar that can represent any JSON Object value."""
scalar JSONObject
type LoginResponse {
id: UUID!
token: String!
username: String!
}
type Migration {
currentStatus: MigrationStatus
date: DateTime!
defaultStatus: MigrationStatus!
description: String!
id: Int!
name: String!
}
enum MigrationStatus {
OPT_IN
OPT_OUT
}
type Mutation {
copyExtraFiles(from: UUID!, to: UUID!): Int!
createPackage(package: PackageInput!): Package!
createPatreonDownloadKey(packageId: UUID!): String
createTemplate(input: TemplateInput!): UUID!
createVariant(input: VariantInput!): Variant!
deleteAllTokens(except: Int): Int!
deleteExtraFile(id: UUID!): Int!
deleteImages(ids: [Int!]!): Int!
deletePackage(id: UUID!, reason: String = null): Int!
deleteTemplate(id: UUID!): Int!
deleteToken(id: Int!): Int!
deleteUser: Int!
deleteVariant(id: UUID!): Int!
deleteVersion(id: UUID!): Int!
dismissReport(id: UUID!, reason: String!): Int!
login(password: String!, totpCode: String, username: String!): LoginResponse!
logout: Int!
register(email: String!, password: String!, token: String!, username: String!): RegisterResponse!
reorderImages(ordering: JSONObject!): Int!
report(packageId: UUID!, report: JSON!, token: String!): Int!
requestVerification(description: String!, name: String!): Int!
resendEmailVerification(token: String!): Int!
setMigrationPreference(migrationId: Int!, preference: MigrationStatus!): Int!
updateInstallQueue(updates: [UpdateInstallQueueInput!]!): Int!
updatePackage(id: UUID!, update: UpdatePackageInput!): Int!
updateProfile(update: UpdateProfileInput!): Int!
updateTemplate(id: UUID!, update: UpdateTemplateInput!): Int!
updateTotpSettings(change: JSON!): JSON!
updateUser(update: UpdateUserInput!): Int!
updateUserWebhook(webhook: WebhookInput): Int!
updateVariant(id: UUID!, input: UpdateVariantInput!): Int!
updateVariantDisplayOrders(packageId: UUID!, variantIdsInOrder: [UUID!]!): Int!
updateVerificationRequest(accepted: Boolean!, requesterId: UUID!): Int!
updateVersion(id: UUID!, input: UpdateVersionInput!): Int!
}
type NeededFiles {
baseUri: String!
files: FileList!
manipulations: [GroupManipulations!]!
modHash: String
}
interface OptionInterface {
description: String
name: String!
}
type OptionItem implements OptionInterface {
description: String
fileSwaps: FileSwaps!
gamePaths: [String!]!
imagePath: String
isDefault: Boolean!
manipulations: [JSON!]!
name: String!
priority: Int!
}
type OptionItemImc implements OptionInterface {
attributeMask: Int
description: String
isDisableSubMod: Boolean
name: String!
}
type OptionItemSimple {
fileSwaps: FileSwaps!
gamePaths: [String!]!
imagePath: String
isDefault: Boolean!
manipulations: [JSON!]!
version: Int
}
type OptionManipulations {
manipulations: [JSON!]!
name: String
}
scalar Options
enum Order {
CREATED_AT
DOWNLOADED_AT
DOWNLOADS
DOWNLOADS_AVERAGE
DOWNLOADS_LAST_MONTH
SIMILARITY
UPDATED_AT
}
type Package {
auditLog: [PackageAuditLogEntry!]!
createdAt: DateTime!
description: String!
downloads: Int!
id: UUID!
images: [Image!]!
name: String!
nsfw: RestrictedInfo!
patreon: Boolean!
patreonTiers: [String!]!
permissions: String
rawVanityUrl: String
tagline: String!
tags: [Tag!]!
updatedAt: DateTime!
user: User!
userId: UUID!
userIsEntitled: Boolean!
vanityUrl: String
variants: [Variant!]!
visibility: PackageVisibility!
webhook: Webhook
}
type PackageAuditLogEntry {
explanation: String!
reason: String!
timestamp: DateTime!
}
input PackageInput {
description: String!
name: String!
patreon: Boolean! = false
patreonTiers: [String!]! = []
permissions: String
tagline: String!
tags: [String!]!
visibility: PackageVisibility!
webhook: WebhookInput = null
}
enum PackageVisibility {
DRAFT
"""Hidden by a moderator."""
HIDDEN
PRIVATE
PUBLIC
UNLISTED
}
type PaginatedPackages {
packages: [Package!]!
pageInfo: SimplePageInfo!
}
type Profile {
accent: String
avatarId: String
description: String
links: JSON!
shape: String!
thumbhash: Thumbhash
}
type QueryRoot {
categoryTags: [Tag!]!
checkVanityUrl(kind: VanityUrlKind!, slug: String!): UUID
convertVariantId(id: Int!): UUID
convertVersionId(id: Int!): UUID
featuredPackages(count: Int!, filterInfo: FilterInfo, page: Int!): PaginatedPackages!
getVersion(id: UUID!): Version
me: FullUser
migrations: [Migration!]!
moderatorPackages(count: Int!, page: Int!, visibility: PackageVisibility!): PaginatedPackages!
package(id: UUID!): Package
packages(count: Int!, filterInfo: FilterInfo, page: Int!): PaginatedPackages!
recentlyDownloadedPackages(count: Int!, filterInfo: FilterInfo, page: Int!): RecentPackages!
recentlyUpdatedPackages(count: Int!, filterInfo: FilterInfo, page: Int!): RecentPackages!
reports: [StoredReport!]!
reportsDismissed: [StoredReport!]!
searchAffects(query: String!): [String!]!
searchTags(query: String!): [TagSearchResult!]!
searchVersions(amount: Int! = 9, filterInfo: FilterInfo, info: SearchRequest!, page: Int): SearchResult!
task(id: UUID!): Task
template(id: UUID!): Template
user(id: UUID!): User
userModerationView(id: UUID!): UserModerationView
variant(id: UUID!): Variant
variants(ids: [UUID!]!): [Variant!]!
verificationRequests: [VerificationRequest!]!
verificationRequestsDismissed: [VerificationRequest!]!
}
type RecentPackage {
package: Package!
timestamp: DateTime!
}
type RecentPackages {
packages: [RecentPackage!]!
pageInfo: SimplePageInfo!
}
type RegisterResponse {
id: UUID!
token: String!
username: String!
}
type RestrictedInfo {
nsfl: Boolean!
nsfw: Boolean!
}
enum SearchDirection {
ASCENDING
DESCENDING
}
input SearchRequest {
affects: [String!]! = []
author: String = null
direction: SearchDirection! = DESCENDING
excludeTags: [String!]! = []
includeTags: [String!]! = []
name: String = null
order: Order!
subscriber: SubscriberStatus! = ALL
}
type SearchResult {
pageInfo: SimplePageInfo!
versions: [Version!]!
}
type SimplePageInfo {
next: Boolean!
prev: Boolean!
total: Int!
}
type StoredReport {
createdAt: DateTime
dismissalReason: String
dismisser: User
dismisserId: UUID
id: UUID!
package: Package
packageId: UUID!
report: JSON!
reporter: User
reporterId: UUID
}
enum SubscriberStatus {
ALL
NON_SUBSCRIBER
SUBSCRIBER
}
type Tag {
category: Boolean!
slug: String!
}
type TagSearchResult {
category: Boolean!
packages: Int!
slug: String!
}
type Task {
createdAt: DateTime!
id: UUID!
kind: String!
output: JSON!
retries: Int!
scheduledFor: DateTime!
status: TaskStatus!
updatedAt: DateTime!
}
enum TaskStatus {
FAILURE
QUEUED
RUNNING
SUCCESS
}
type Template {
description: String
id: UUID!
modName: String
patreon: Boolean!
patreonTiers: [String!]!
permissions: String
tagline: String
tags: [String!]!
templateName: String!
variables: [String!]!
visibility: PackageVisibility!
}
input TemplateInput {
description: String
modName: String
patreon: Boolean!
patreonTiers: [String!]!
permissions: String
tagline: String
tags: [String!]!
templateName: String!
variables: [String!]!
visibility: PackageVisibility!
}
type Thumbhash {
hash: String!
height: Int!
width: Int!
}
type Tier {
amountUsdCents: Int!
id: String!
published: Boolean!
title: String!
updatedAt: DateTime!
}
type Token {
city: String
continent: String
country: String
id: Int!
updatedAt: DateTime!
userAgent: String
}
"""
A UUID is a unique 128-bit number, stored as 16 octets. UUIDs are parsed as
Strings within GraphQL. UUIDs are used to assign unique identifiers to
entities without requiring a central allocating authority.
# References
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier)
* [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122)
"""
scalar UUID
input UpdateInstallQueueInput {
action: InstallQueueUpdate!
versionId: UUID!
}
input UpdatePackageInput {
addTags: [String!]! = []
description: String
name: String
patreon: Boolean
patreonTiers: [String!]
permissions: JSON!
reason: String = null
removeTags: [String!]! = []
tagline: String
vanityUrl: JSON!
visibility: PackageVisibility
webhook: JSON! = "{\"kind\":\"ignore\"}"
}
input UpdateProfileInput {
accent: JSON!
description: JSON!
links: JSON
shape: String
vanityUrl: JSON!
}
input UpdateTemplateInput {
description: JSON!
modName: JSON!
patreon: Boolean
patreonTiers: [String!]
permissions: JSON!
tagline: JSON!
tags: [String!]
templateName: String
variables: [String!]
visibility: PackageVisibility
}
input UpdateUserInput {
email: String
newPassword: String
password: String!
username: String
}
input UpdateVariantInput {
name: String = null
}
input UpdateVersionInput {
changelog: JSON! = "{\"kind\":\"ignore\"}"
dependencies: JSON = null
variant: UUID = null
version: String = null
}
type User {
id: UUID!
packages(count: Int!, filterInfo: FilterInfo, page: Int!): PaginatedPackages!
patreonPledgeUrl: String
patreonTiers: [Tier!]
profile: Profile!
subscriber: Boolean!
username: String!
vanityUrl: String
}
enum UserLevel {
ADMIN
MODERATOR
USER
}
type UserModerationView {
email: String!
id: UUID!
subscriber: Boolean!
username: String!
vanityUrl: String
}
enum VanityUrlKind {
MOD
USER
}
type Variant {
displayOrder: Int!
id: UUID!
name: String!
package: Package!
packageId: UUID!
versions(limit: Int): [Version!]!
}
input VariantInput {
name: String!
packageId: UUID!
}
enum VerificationLevel {
DENIED
IN_PROGRESS
UNVERIFIED
VERIFIED
}
type VerificationRequest {
accepted: Boolean
createdAt: DateTime!
responses: JSON!
reviewer: User
reviewerId: UUID
user: UserModerationView
userId: UUID!
}
type Version {
affects: [String!]!
basicGroups: [BasicGroup!]!
batched: Boolean!
batches: BatchList!
changelog: String
createdAt: DateTime!
defaultOption: OptionItemSimple
dependencies: JSON!
downloadSize: Int!
downloads: Int!
extraFiles: [ExtraFileArchive!]!
fullDependencies: JSON!
gamePaths: [String!]!
groups: GroupContainer!
id: UUID!
installSize: Int!
installerImages: InstallerImages!
neededFiles(download: Boolean = null, downloadKey: String = null, downloadKind: DownloadKind = null, full: Boolean, options: Options): NeededFiles!
updatedAt: DateTime!
variant: Variant!
variantId: UUID!
version: String!
}
type Webhook {
createdAt: DateTime!
id: Int!
nsfwImages: Boolean!
packageId: UUID
url: String!
userId: UUID
}
input WebhookInput {
nsfwImages: Boolean!
url: String!
}