forked from kin-labs/kinetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-schema.graphql
572 lines (513 loc) · 12.1 KB
/
api-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
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
input AdminAppCreateInput {
enableWebhooks: Boolean
index: Int!
logoUrl: String
name: String!
skipWalletCreation: Boolean
}
input AdminAppUpdateInput {
index: Int
logoUrl: String
maxEnvs: Int
name: String
}
input AdminClusterCreateInput {
endpointPrivate: String!
endpointPublic: String!
explorer: String
name: String!
type: ClusterType!
}
input AdminClusterUpdateInput {
endpointPrivate: String
endpointPublic: String
explorer: String
name: String
status: ClusterStatus
}
input AdminMintCreateInput {
address: String!
clusterId: String!
coinGeckoId: String
decimals: Int!
logoUrl: String
name: String!
symbol: String!
}
input AdminQueueLoadInput {
environment: String!
index: Int!
payload: JSON!
type: QueueType!
}
input AdminUserCreateInput {
avatarUrl: String
email: String!
name: String
password: String!
role: UserRole
username: String
}
input AdminUserUpdateInput {
avatarUrl: String
name: String
role: UserRole
}
type App {
createdAt: DateTime!
defaultEnvUrl: String
envs: [AppEnv!]
id: String!
index: Int!
logoUrl: String
maxEnvs: Int!
name: String
settingsUrl: String
updatedAt: DateTime!
users: [AppUser!]
}
type AppEnv {
app: App
cluster: Cluster
createdAt: DateTime!
endpoint: String
id: String!
ipsAllowed: [String!]
ipsBlocked: [String!]
key: String
mints: [AppMint!]
name: String
solanaTransactionMaxRetries: Int
solanaTransactionSkipPreflight: Boolean
uasAllowed: [String!]
uasBlocked: [String!]
updatedAt: DateTime!
wallets: [Wallet!]
webhookBalanceEnabled: Boolean
webhookBalanceThreshold: String
webhookBalanceUrl: String
webhookDebugging: Boolean
webhookEventEnabled: Boolean
webhookEventUrl: String
webhookSecret: String
webhookVerifyEnabled: Boolean
webhookVerifyUrl: String
}
type AppEnvStats {
transactionCount: AppEnvTransactionCount
}
type AppEnvTransactionCount {
Committed: Int
Confirmed: Int
Failed: Int
Finalized: Int
Processing: Int
}
type AppMint {
addMemo: Boolean
createdAt: DateTime!
id: String!
mint: Mint
order: Int
updatedAt: DateTime!
wallet: Wallet
}
type AppUser {
app: App
createdAt: DateTime!
id: String!
role: AppUserRole!
updatedAt: DateTime!
user: User
}
enum AppUserRole {
Member
Owner
}
type AuthToken {
token: String!
user: User!
}
type Cluster {
createdAt: DateTime
endpointPrivate: String
endpointPublic: String
envs: [AppEnv!]
explorer: String
id: String
mints: [Mint!]
name: String
status: ClusterStatus
type: ClusterType
updatedAt: DateTime
}
enum ClusterStatus {
Active
Inactive
}
enum ClusterType {
Custom
SolanaDevnet
SolanaMainnet
SolanaTestnet
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
"""
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
scalar JSON @specifiedBy(url: "http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf")
type Job {
attemptsMade: Int
data: JSON
failedReason: String
finishedOn: Int
id: String
name: String
opts: JSON
processedOn: Int
returnvalue: JSON
stacktrace: [String!]
timestamp: Int
}
enum JobStatus {
active
completed
delayed
failed
paused
waiting
}
type Migration {
key: String!
status: MigrationStatus!
version: String!
}
type MigrationStatus {
count: Int!
done: Boolean!
}
type Mint {
addMemo: Boolean
address: String
airdropAmount: Int
airdropMax: Int
airdropPublicKey: String
coinGeckoId: String
createdAt: DateTime
decimals: Int
default: Boolean
enabled: Boolean
id: String
logoUrl: String
name: String
order: Int
symbol: String
type: MintType
updatedAt: DateTime
}
enum MintType {
SplToken
}
type Mutation {
adminCreateApp(input: AdminAppCreateInput!): App
adminCreateCluster(input: AdminClusterCreateInput!): Cluster
adminCreateUser(input: AdminUserCreateInput!): User
adminDeleteApp(appId: String!): App
adminDeleteAppEnv(appEnvId: String!, appId: String!): AppEnv
adminDeleteCluster(clusterId: String!): Cluster
adminDeleteMint(mintId: String!): Mint
adminDeleteUser(userId: String!): User
adminDeleteWallet(walletId: String!): Wallet
adminMigrate(key: String!): MigrationStatus
adminMintCreate(input: AdminMintCreateInput!): Cluster
adminMintImportWallet(mintId: String!, secret: String!): Mint
adminQueueClean(status: JobStatus, type: QueueType!): Boolean
adminQueueDeleteJob(jobId: String!, type: QueueType!): Boolean
adminQueueLoad(input: AdminQueueLoadInput!): Queue
adminQueuePause(type: QueueType!): Boolean
adminQueueResume(type: QueueType!): Boolean
adminUpdateApp(appId: String!, input: AdminAppUpdateInput!): App
adminUpdateCluster(clusterId: String!, input: AdminClusterUpdateInput!): Cluster
adminUpdateUser(input: AdminUserUpdateInput!, userId: String!): User
login(input: UserLoginInput!): AuthToken
logout: Boolean
userAppEnvAddAllowedIp(appEnvId: String!, ip: String!): AppEnv
userAppEnvAddAllowedUa(appEnvId: String!, ua: String!): AppEnv
userAppEnvAddBlockedIp(appEnvId: String!, ip: String!): AppEnv
userAppEnvAddBlockedUa(appEnvId: String!, ua: String!): AppEnv
userAppEnvMintDisable(appEnvId: String!, appId: String!, mintId: String!): AppEnv
userAppEnvMintEnable(appEnvId: String!, appId: String!, mintId: String!): AppEnv
userAppEnvMintSetWallet(appEnvId: String!, appId: String!, mintId: String!, walletId: String!): AppEnv
userAppEnvPurgeTransactions(appEnvId: String!, status: TransactionStatus): AppEnv
userAppEnvRemoveAllowedIp(appEnvId: String!, ip: String!): AppEnv
userAppEnvRemoveAllowedUa(appEnvId: String!, ua: String!): AppEnv
userAppEnvRemoveBlockedIp(appEnvId: String!, ip: String!): AppEnv
userAppEnvRemoveBlockedUa(appEnvId: String!, ua: String!): AppEnv
userAppEnvWalletAdd(appEnvId: String!, appId: String!, walletId: String!): AppEnv
userAppEnvWalletRemove(appEnvId: String!, appId: String!, walletId: String!): AppEnv
userAppUserAdd(appId: String!, input: UserAppUserAddInput!): App
userAppUserRemove(appId: String!, input: UserAppUserRemoveInput!): App
userAppUserUpdateRole(appId: String!, input: UserAppUserUpdateRoleInput!): App
userCreateAppEnv(appId: String!, clusterId: String!, input: UserAppEnvCreateInput!): AppEnv
userDeleteAppEnv(appEnvId: String!, appId: String!): AppEnv
userDeleteWallet(appEnvId: String!, walletId: String!): Wallet
userGenerateWallet(appEnvId: String!): Wallet
userImportWallet(appEnvId: String!, secret: String!): Wallet
userUpdateApp(appId: String!, input: UserAppUpdateInput!): App
userUpdateAppEnv(appEnvId: String!, appId: String!, input: UserAppEnvUpdateInput!): AppEnv
userUpdateAppMint(appId: String!, appMintId: String!, input: UserAppMintUpdateInput!): AppMint
}
type Query {
adminApp(appId: String!): App
adminApps: [App!]
adminCluster(clusterId: String!): Cluster
adminClusters: [Cluster!]
adminMigrations: [Migration!]
adminQueue(type: QueueType!): Queue
adminQueueJobs(statuses: [JobStatus!]!, type: QueueType!): [Job!]
adminQueues: [Queue!]
adminUser(userId: String!): User
adminUsers: [User!]
adminWallet(walletId: String!): Wallet
adminWallets: [Wallet!]
me: User
uptime: Float!
userApp(appId: String!): App
userAppEnv(appEnvId: String!, appId: String!): AppEnv
userAppEnvStats(appEnvId: String!): AppEnvStats
userAppRole(appId: String!): AppUserRole
userApps: [App!]
userCluster(clusterId: String!): Cluster
userClusters: [Cluster!]
userSearchUsers(input: UserSearchUserInput!): [User!]
userTransaction(appEnvId: String!, appId: String!, transactionId: String!): Transaction
userTransactionCounter(appEnvId: String!, appId: String!, input: UserTransactionListInput): TransactionCounter
userTransactions(appEnvId: String!, appId: String!, input: UserTransactionListInput): [Transaction!]
userWallet(appEnvId: String!, walletId: String!): Wallet
userWalletAirdrop(amount: Float!, appEnvId: String!, walletId: String!): WalletAirdropResponse
userWalletBalance(appEnvId: String!, walletId: String!): String
userWallets(appEnvId: String!): [Wallet!]
webConfig: WebConfig!
}
type Queue {
count: QueueCount
info: JSON
isPaused: Boolean
name: String!
type: QueueType!
}
type QueueCount {
active: Int
completed: Int
delayed: Int
failed: Int
paused: Int
waiting: Int
}
enum QueueType {
CloseAccount
}
type Transaction {
amount: String
createdAt: DateTime
decimals: Int
destination: String
errors: [TransactionError!]
explorerUrl: String
feePayer: String
id: String
ip: String
mint: String
processingDuration: Int
reference: String
signature: String
solanaCommitted: DateTime
solanaCommittedDuration: Int
solanaFinalized: DateTime
solanaFinalizedDuration: Int
solanaStart: DateTime
solanaTransaction: JSON
source: String
status: TransactionStatus!
totalDuration: Int
tx: String
ua: String
updatedAt: DateTime
webhookEventDuration: Int
webhookEventEnd: DateTime
webhookEventIncoming: Webhook
webhookEventOutgoing: Webhook
webhookEventStart: DateTime
webhookVerifyDuration: Int
webhookVerifyEnd: DateTime
webhookVerifyIncoming: Webhook
webhookVerifyOutgoing: Webhook
webhookVerifyStart: DateTime
}
type TransactionCounter {
limit: Float
page: Float
pageCount: Float
total: Float
}
type TransactionError {
id: String
instruction: Int
logs: [String!]
message: String
type: TransactionErrorType!
}
enum TransactionErrorType {
BadNonce
InvalidAccount
SomeError
Timeout
Unknown
WebhookFailed
}
enum TransactionStatus {
Committed
Confirmed
Failed
Finalized
Processing
}
type User {
apps: [AppUser!]
avatarUrl: String
createdAt: DateTime!
email: String
emails: [UserEmail!]
id: String!
identities: [UserIdentity!]
name: String
role: UserRole
updatedAt: DateTime!
username: String!
}
input UserAppEnvCreateInput {
name: String!
}
input UserAppEnvUpdateInput {
solanaTransactionMaxRetries: Int
solanaTransactionSkipPreflight: Boolean
webhookBalanceEnabled: Boolean
webhookBalanceThreshold: String
webhookBalanceUrl: String
webhookDebugging: Boolean
webhookEventEnabled: Boolean
webhookEventUrl: String
webhookSecret: String
webhookVerifyEnabled: Boolean
webhookVerifyUrl: String
}
input UserAppMintUpdateInput {
addMemo: Boolean
}
input UserAppUpdateInput {
logoUrl: String
name: String
}
input UserAppUserAddInput {
role: AppUserRole!
userId: String!
}
input UserAppUserRemoveInput {
userId: String!
}
input UserAppUserUpdateRoleInput {
role: AppUserRole!
userId: String!
}
type UserEmail {
createdAt: DateTime!
email: String!
id: String!
updatedAt: DateTime!
}
type UserIdentity {
createdAt: DateTime!
externalId: String!
id: String!
profile: JSON!
type: UserIdentityType
updatedAt: DateTime!
}
enum UserIdentityType {
Discord
GitHub
Google
}
input UserLoginInput {
password: String!
username: String!
}
enum UserRole {
Admin
User
}
input UserSearchUserInput {
query: String
}
input UserTransactionListInput {
destination: String
ip: String
limit: Float
page: Float
reference: String
signature: String
source: String
status: [TransactionStatus!]
ua: String
}
type Wallet {
appEnvs: [AppEnv!]
appMints: [AppMint!]
createdAt: DateTime
id: String!
owner: User
publicKey: String
type: WalletType
updatedAt: DateTime
}
type WalletAirdropResponse {
signature: String
}
enum WalletType {
Generated
Imported
Provisioned
}
type WebConfig {
discordEnabled: Boolean!
githubEnabled: Boolean!
googleEnabled: Boolean!
passwordEnabled: Boolean!
}
type Webhook {
createdAt: DateTime!
direction: WebhookDirection!
headers: JSON
id: String!
payload: JSON
responseError: String
responsePayload: JSON
responseStatus: Int
type: WebhookType!
updatedAt: DateTime!
}
enum WebhookDirection {
Incoming
Outgoing
}
enum WebhookType {
Balance
Event
Verify
}