@abtnode/schema 1.8.38 → 1.8.40
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/lib/index.js +904 -846
- package/lib/schema.graphqls +1048 -990
- package/package.json +2 -2
package/lib/schema.graphqls
CHANGED
|
@@ -12,1711 +12,1769 @@ scalar Int64
|
|
|
12
12
|
scalar Uint32
|
|
13
13
|
|
|
14
14
|
input BlockletControllerInput {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
id: String
|
|
16
|
+
nftId: String
|
|
17
|
+
nftOwner: String
|
|
18
|
+
expireDate: Uint32
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
input BlockletQueryInput {
|
|
22
|
-
|
|
22
|
+
controller: BlockletControllerInput
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
input BlockletServiceInput {
|
|
26
|
+
name: String
|
|
27
|
+
description: String
|
|
28
|
+
version: String
|
|
29
|
+
config: String
|
|
30
|
+
schema: String
|
|
23
31
|
}
|
|
24
32
|
|
|
25
33
|
input BlockletStoreInput {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
+
name: String
|
|
35
|
+
description: String
|
|
36
|
+
url: String
|
|
37
|
+
logoUrl: String
|
|
38
|
+
maintainer: String
|
|
39
|
+
cdnUrl: String
|
|
40
|
+
protected: Boolean
|
|
41
|
+
id: String
|
|
34
42
|
}
|
|
35
43
|
|
|
36
44
|
input ConfigEntryInput {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
key: String
|
|
46
|
+
value: String
|
|
47
|
+
required: Boolean
|
|
48
|
+
description: String
|
|
49
|
+
validation: String
|
|
50
|
+
secure: Boolean
|
|
51
|
+
custom: Boolean
|
|
52
|
+
shared: Boolean
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
input ConfigNavigationInput {
|
|
56
|
+
id: String
|
|
57
|
+
title: String
|
|
58
|
+
link: String
|
|
59
|
+
icon: String
|
|
60
|
+
section: String
|
|
61
|
+
component: String
|
|
62
|
+
parent: String
|
|
63
|
+
role: String
|
|
64
|
+
visible: Boolean
|
|
65
|
+
from: String
|
|
45
66
|
}
|
|
46
67
|
|
|
47
68
|
input HashFileInput {
|
|
48
|
-
|
|
49
|
-
|
|
69
|
+
file: String
|
|
70
|
+
hash: String
|
|
50
71
|
}
|
|
51
72
|
|
|
52
73
|
input IssuerInput {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
74
|
+
id: String
|
|
75
|
+
name: String
|
|
76
|
+
pk: String
|
|
56
77
|
}
|
|
57
78
|
|
|
58
79
|
input NodeInfoInput {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
80
|
+
name: String
|
|
81
|
+
description: String
|
|
82
|
+
autoUpgrade: Boolean
|
|
83
|
+
enableWelcomePage: Boolean
|
|
84
|
+
registerUrl: String
|
|
85
|
+
webWalletUrl: String
|
|
86
|
+
blockletRegistryList: [BlockletStoreInput!]
|
|
87
|
+
diskAlertThreshold: Uint32
|
|
67
88
|
}
|
|
68
89
|
|
|
69
90
|
input PagingInput {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
91
|
+
total: Uint32
|
|
92
|
+
pageSize: Uint32
|
|
93
|
+
pageCount: Uint32
|
|
94
|
+
page: Uint32
|
|
74
95
|
}
|
|
75
96
|
|
|
76
97
|
input PassportInput {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
98
|
+
id: String
|
|
99
|
+
name: String
|
|
100
|
+
title: String
|
|
101
|
+
issuer: IssuerInput
|
|
102
|
+
type: [String!]
|
|
103
|
+
issuanceDate: String
|
|
104
|
+
expirationDate: String
|
|
105
|
+
status: String
|
|
106
|
+
role: String
|
|
86
107
|
}
|
|
87
108
|
|
|
88
109
|
input PermissionInput {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
110
|
+
name: String
|
|
111
|
+
description: String
|
|
112
|
+
isProtected: Boolean
|
|
92
113
|
}
|
|
93
114
|
|
|
94
115
|
input RequestAddDomainAliasInput {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
116
|
+
id: String
|
|
117
|
+
domainAlias: String
|
|
118
|
+
force: Boolean
|
|
119
|
+
teamDid: String
|
|
99
120
|
}
|
|
100
121
|
|
|
101
122
|
input RequestAddLetsEncryptCertInput {
|
|
102
|
-
|
|
123
|
+
domain: String
|
|
103
124
|
}
|
|
104
125
|
|
|
105
126
|
input RequestAddNginxHttpsCertInput {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
127
|
+
name: String
|
|
128
|
+
privateKey: String
|
|
129
|
+
certificate: String
|
|
109
130
|
}
|
|
110
131
|
|
|
111
132
|
input RequestAddRoutingRuleInput {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
133
|
+
id: String
|
|
134
|
+
rule: RoutingRuleInput
|
|
135
|
+
teamDid: String
|
|
115
136
|
}
|
|
116
137
|
|
|
117
138
|
input RequestAddRoutingSiteInput {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
139
|
+
domain: String
|
|
140
|
+
type: String
|
|
141
|
+
rules: [RoutingRuleInput!]
|
|
121
142
|
}
|
|
122
143
|
|
|
123
144
|
input RequestBlockletInput {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
145
|
+
did: String
|
|
146
|
+
storeUrl: String
|
|
147
|
+
attachRuntimeInfo: Boolean
|
|
127
148
|
}
|
|
128
149
|
|
|
129
150
|
input RequestBlockletBundleInput {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
151
|
+
did: String
|
|
152
|
+
name: String
|
|
153
|
+
serverlessNftId: String
|
|
133
154
|
}
|
|
134
155
|
|
|
135
156
|
input RequestBlockletDiffInput {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
157
|
+
did: String
|
|
158
|
+
hashFiles: [HashFileInput!]
|
|
159
|
+
rootDid: String
|
|
139
160
|
}
|
|
140
161
|
|
|
141
162
|
input RequestBlockletMetaFromUrlInput {
|
|
142
|
-
|
|
143
|
-
|
|
163
|
+
url: String
|
|
164
|
+
checkPrice: Boolean
|
|
144
165
|
}
|
|
145
166
|
|
|
146
167
|
input RequestChangeBlockletStoreInput {
|
|
147
|
-
|
|
148
|
-
|
|
168
|
+
teamDid: String
|
|
169
|
+
url: String
|
|
149
170
|
}
|
|
150
171
|
|
|
151
172
|
input RequestCheckDomainsInput {
|
|
152
|
-
|
|
153
|
-
|
|
173
|
+
domains: [String!]
|
|
174
|
+
did: String
|
|
154
175
|
}
|
|
155
176
|
|
|
156
177
|
input RequestConfigBlockletInput {
|
|
157
|
-
|
|
158
|
-
|
|
178
|
+
did: [String!]
|
|
179
|
+
configs: [ConfigEntryInput!]
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
input RequestConfigNavigationsInput {
|
|
183
|
+
did: String
|
|
184
|
+
navigations: [ConfigNavigationInput!]
|
|
159
185
|
}
|
|
160
186
|
|
|
161
187
|
input RequestConfigPassportIssuanceInput {
|
|
162
|
-
|
|
163
|
-
|
|
188
|
+
teamDid: String
|
|
189
|
+
enable: Boolean
|
|
164
190
|
}
|
|
165
191
|
|
|
166
192
|
input RequestConfigPublicToStoreInput {
|
|
167
|
-
|
|
168
|
-
|
|
193
|
+
did: String
|
|
194
|
+
publicToStore: Boolean
|
|
169
195
|
}
|
|
170
196
|
|
|
171
197
|
input RequestConfigTrustedPassportsInput {
|
|
172
|
-
|
|
173
|
-
|
|
198
|
+
teamDid: String
|
|
199
|
+
trustedPassports: [TrustedPassportInput!]
|
|
174
200
|
}
|
|
175
201
|
|
|
176
202
|
input RequestCreateAccessKeyInput {
|
|
177
|
-
|
|
178
|
-
|
|
203
|
+
remark: String
|
|
204
|
+
passport: String
|
|
179
205
|
}
|
|
180
206
|
|
|
181
207
|
input RequestCreateInvitationInput {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
208
|
+
teamDid: String
|
|
209
|
+
role: String
|
|
210
|
+
remark: String
|
|
185
211
|
}
|
|
186
212
|
|
|
187
213
|
input RequestCreatePassportIssuanceInput {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
214
|
+
teamDid: String
|
|
215
|
+
ownerDid: String
|
|
216
|
+
name: String
|
|
191
217
|
}
|
|
192
218
|
|
|
193
219
|
input RequestCreatePermissionInput {
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
220
|
+
teamDid: String
|
|
221
|
+
name: String
|
|
222
|
+
description: String
|
|
197
223
|
}
|
|
198
224
|
|
|
199
225
|
input RequestCreateRoleInput {
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
226
|
+
teamDid: String
|
|
227
|
+
name: String
|
|
228
|
+
title: String
|
|
229
|
+
description: String
|
|
230
|
+
childName: String
|
|
231
|
+
permissions: [String!]
|
|
206
232
|
}
|
|
207
233
|
|
|
208
234
|
input RequestCreateTransferNodeInvitationInput {
|
|
209
|
-
|
|
210
|
-
|
|
235
|
+
teamDid: String
|
|
236
|
+
remark: String
|
|
211
237
|
}
|
|
212
238
|
|
|
213
239
|
input RequestCreateWebHookInput {
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
240
|
+
type: SenderType
|
|
241
|
+
title: String
|
|
242
|
+
description: String
|
|
243
|
+
params: [WebHookParamInput!]
|
|
218
244
|
}
|
|
219
245
|
|
|
220
246
|
input RequestDeleteAccessKeyInput {
|
|
221
|
-
|
|
247
|
+
accessKeyId: String
|
|
222
248
|
}
|
|
223
249
|
|
|
224
250
|
input RequestDeleteBlockletInput {
|
|
225
|
-
|
|
226
|
-
|
|
251
|
+
did: String
|
|
252
|
+
keepData: Boolean
|
|
227
253
|
}
|
|
228
254
|
|
|
229
255
|
input RequestDeleteComponentInput {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
256
|
+
did: String
|
|
257
|
+
rootDid: String
|
|
258
|
+
keepData: Boolean
|
|
233
259
|
}
|
|
234
260
|
|
|
235
261
|
input RequestDeleteDomainAliasInput {
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
262
|
+
id: String
|
|
263
|
+
domainAlias: String
|
|
264
|
+
teamDid: String
|
|
239
265
|
}
|
|
240
266
|
|
|
241
267
|
input RequestDeleteNginxHttpsCertInput {
|
|
242
|
-
|
|
268
|
+
id: String
|
|
243
269
|
}
|
|
244
270
|
|
|
245
271
|
input RequestDeletePermissionInput {
|
|
246
|
-
|
|
247
|
-
|
|
272
|
+
teamDid: String
|
|
273
|
+
name: String
|
|
248
274
|
}
|
|
249
275
|
|
|
250
276
|
input RequestDeleteRoleInput {
|
|
251
|
-
|
|
252
|
-
|
|
277
|
+
teamDid: String
|
|
278
|
+
name: String
|
|
253
279
|
}
|
|
254
280
|
|
|
255
281
|
input RequestDeleteRoutingRuleInput {
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
282
|
+
id: String
|
|
283
|
+
ruleId: String
|
|
284
|
+
teamDid: String
|
|
259
285
|
}
|
|
260
286
|
|
|
261
287
|
input RequestDeleteRoutingSiteInput {
|
|
262
|
-
|
|
288
|
+
id: String
|
|
263
289
|
}
|
|
264
290
|
|
|
265
291
|
input RequestDeleteTeamSessionInput {
|
|
266
|
-
|
|
267
|
-
|
|
292
|
+
teamDid: String
|
|
293
|
+
sessionId: String
|
|
268
294
|
}
|
|
269
295
|
|
|
270
296
|
input RequestDeleteWebHookInput {
|
|
271
|
-
|
|
297
|
+
id: String
|
|
272
298
|
}
|
|
273
299
|
|
|
274
300
|
input RequestEndSessionInput {
|
|
275
|
-
|
|
301
|
+
id: String
|
|
276
302
|
}
|
|
277
303
|
|
|
278
304
|
input RequestFindCertificateByDomainInput {
|
|
279
|
-
|
|
305
|
+
domain: String
|
|
280
306
|
}
|
|
281
307
|
|
|
282
308
|
input RequestGatewayInput {
|
|
283
|
-
|
|
309
|
+
requestLimit: RequestLimitInput
|
|
284
310
|
}
|
|
285
311
|
|
|
286
312
|
input RequestGetAuditLogsInput {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
313
|
+
paging: PagingInput
|
|
314
|
+
scope: String
|
|
315
|
+
category: String
|
|
290
316
|
}
|
|
291
317
|
|
|
292
318
|
input RequestGetBlockletsInput {
|
|
293
|
-
|
|
294
|
-
|
|
319
|
+
useCache: Boolean
|
|
320
|
+
query: BlockletQueryInput
|
|
295
321
|
}
|
|
296
322
|
|
|
297
323
|
input RequestGetNotificationsInput {
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
324
|
+
receiver: String
|
|
325
|
+
sender: String
|
|
326
|
+
read: Boolean
|
|
327
|
+
paging: PagingInput
|
|
302
328
|
}
|
|
303
329
|
|
|
304
330
|
input RequestGetPassportIssuancesInput {
|
|
305
|
-
|
|
306
|
-
|
|
331
|
+
teamDid: String
|
|
332
|
+
ownerDid: String
|
|
307
333
|
}
|
|
308
334
|
|
|
309
335
|
input RequestGetRoutingSitesInput {
|
|
310
|
-
|
|
336
|
+
snapshotHash: String
|
|
311
337
|
}
|
|
312
338
|
|
|
313
339
|
input RequestGetRoutingSnapshotsInput {
|
|
314
|
-
|
|
340
|
+
limit: Int32
|
|
315
341
|
}
|
|
316
342
|
|
|
317
343
|
input RequestGetSessionInput {
|
|
318
|
-
|
|
344
|
+
id: String
|
|
319
345
|
}
|
|
320
346
|
|
|
321
347
|
input RequestGetSnapshotSitesInput {
|
|
322
|
-
|
|
348
|
+
hash: String
|
|
323
349
|
}
|
|
324
350
|
|
|
325
351
|
input RequestGrantPermissionForRoleInput {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
352
|
+
teamDid: String
|
|
353
|
+
roleName: String
|
|
354
|
+
grantName: String
|
|
329
355
|
}
|
|
330
356
|
|
|
331
357
|
input RequestHasPermissionInput {
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
358
|
+
teamDid: String
|
|
359
|
+
role: String
|
|
360
|
+
permission: String
|
|
335
361
|
}
|
|
336
362
|
|
|
337
363
|
input RequestInstallComponentInput {
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
364
|
+
rootDid: String
|
|
365
|
+
mountPoint: String
|
|
366
|
+
url: String
|
|
367
|
+
file: Upload
|
|
368
|
+
did: String
|
|
369
|
+
diffVersion: String
|
|
370
|
+
deleteSet: [String!]
|
|
371
|
+
name: String
|
|
372
|
+
title: String
|
|
373
|
+
configs: [ConfigEntryInput!]
|
|
374
|
+
downloadTokenList: [DownloadTokenInput!]
|
|
375
|
+
skipNavigation: Boolean
|
|
350
376
|
}
|
|
351
377
|
|
|
352
378
|
input RequestInstallFromVcInput {
|
|
353
|
-
|
|
354
|
-
|
|
379
|
+
challenge: String
|
|
380
|
+
vcPresentation: Any
|
|
355
381
|
}
|
|
356
382
|
|
|
357
383
|
input RequestIssuePassportToUserInput {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
384
|
+
teamDid: String
|
|
385
|
+
userDid: String
|
|
386
|
+
role: String
|
|
361
387
|
}
|
|
362
388
|
|
|
363
389
|
input RequestLatestBlockletVersionInput {
|
|
364
|
-
|
|
365
|
-
|
|
390
|
+
did: String
|
|
391
|
+
version: String
|
|
366
392
|
}
|
|
367
393
|
|
|
368
394
|
input RequestLimitInput {
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
395
|
+
enabled: Boolean
|
|
396
|
+
rate: Uint32
|
|
397
|
+
ipHeader: String
|
|
372
398
|
}
|
|
373
399
|
|
|
374
400
|
input RequestNodeRoutingInput {
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
401
|
+
provider: String
|
|
402
|
+
snapshotHash: String
|
|
403
|
+
forceRepopulate: Boolean
|
|
378
404
|
}
|
|
379
405
|
|
|
380
406
|
input RequestReadNotificationsInput {
|
|
381
|
-
|
|
407
|
+
id: String
|
|
382
408
|
}
|
|
383
409
|
|
|
384
410
|
input RequestResetNodeInput {
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
411
|
+
owner: Boolean
|
|
412
|
+
blocklets: Boolean
|
|
413
|
+
webhooks: Boolean
|
|
414
|
+
certificates: Boolean
|
|
415
|
+
accessKeys: Boolean
|
|
416
|
+
blockletExtras: Boolean
|
|
417
|
+
routingRules: Boolean
|
|
418
|
+
users: Boolean
|
|
419
|
+
invitations: Boolean
|
|
394
420
|
}
|
|
395
421
|
|
|
396
422
|
input RequestRevokePermissionFromRoleInput {
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
423
|
+
teamDid: String
|
|
424
|
+
roleName: String
|
|
425
|
+
grantName: String
|
|
400
426
|
}
|
|
401
427
|
|
|
402
428
|
input RequestRevokeUserPassportInput {
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
429
|
+
teamDid: String
|
|
430
|
+
userDid: String
|
|
431
|
+
passportId: String
|
|
406
432
|
}
|
|
407
433
|
|
|
408
434
|
input RequestSendMsgInput {
|
|
409
|
-
|
|
410
|
-
|
|
435
|
+
webhookId: String
|
|
436
|
+
message: String
|
|
411
437
|
}
|
|
412
438
|
|
|
413
439
|
input RequestStartSessionInput {
|
|
414
|
-
|
|
440
|
+
data: String
|
|
415
441
|
}
|
|
416
442
|
|
|
417
443
|
input RequestTakeRoutingSnapshotInput {
|
|
418
|
-
|
|
419
|
-
|
|
444
|
+
dryRun: Boolean
|
|
445
|
+
message: String
|
|
420
446
|
}
|
|
421
447
|
|
|
422
448
|
input RequestTeamPermissionInput {
|
|
423
|
-
|
|
424
|
-
|
|
449
|
+
teamDid: String
|
|
450
|
+
permission: PermissionInput
|
|
425
451
|
}
|
|
426
452
|
|
|
427
453
|
input RequestTeamRoleInput {
|
|
428
|
-
|
|
429
|
-
|
|
454
|
+
teamDid: String
|
|
455
|
+
role: RoleInput
|
|
430
456
|
}
|
|
431
457
|
|
|
432
458
|
input RequestTeamUserInput {
|
|
433
|
-
|
|
434
|
-
|
|
459
|
+
teamDid: String
|
|
460
|
+
user: UserInfoInput
|
|
435
461
|
}
|
|
436
462
|
|
|
437
463
|
input RequestUpdateAccessKeyInput {
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
464
|
+
accessKeyId: String
|
|
465
|
+
remark: String
|
|
466
|
+
passport: String
|
|
441
467
|
}
|
|
442
468
|
|
|
443
469
|
input RequestUpdateComponentMountPointInput {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
470
|
+
did: String
|
|
471
|
+
rootDid: String
|
|
472
|
+
mountPoint: String
|
|
447
473
|
}
|
|
448
474
|
|
|
449
475
|
input RequestUpdateComponentTitleInput {
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
476
|
+
did: String
|
|
477
|
+
rootDid: String
|
|
478
|
+
title: String
|
|
453
479
|
}
|
|
454
480
|
|
|
455
481
|
input RequestUpdateComponentsInput {
|
|
456
|
-
|
|
457
|
-
|
|
482
|
+
updateId: String
|
|
483
|
+
rootDid: String
|
|
458
484
|
}
|
|
459
485
|
|
|
460
486
|
input RequestUpdateNginxHttpsCertInput {
|
|
461
|
-
|
|
462
|
-
|
|
487
|
+
id: String
|
|
488
|
+
name: String
|
|
463
489
|
}
|
|
464
490
|
|
|
465
491
|
input RequestUpdatePermissionsForRoleInput {
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
492
|
+
teamDid: String
|
|
493
|
+
roleName: String
|
|
494
|
+
grantNames: [String!]
|
|
469
495
|
}
|
|
470
496
|
|
|
471
497
|
input RequestUpdateRoutingRuleInput {
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
498
|
+
id: String
|
|
499
|
+
rule: RoutingRuleInput
|
|
500
|
+
teamDid: String
|
|
475
501
|
}
|
|
476
502
|
|
|
477
503
|
input RequestUpdateRoutingSiteInput {
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
504
|
+
id: String
|
|
505
|
+
corsAllowedOrigins: [String!]
|
|
506
|
+
domain: String
|
|
507
|
+
teamDid: String
|
|
482
508
|
}
|
|
483
509
|
|
|
484
510
|
input RequestUpdateSessionInput {
|
|
485
|
-
|
|
486
|
-
|
|
511
|
+
id: String
|
|
512
|
+
data: String
|
|
487
513
|
}
|
|
488
514
|
|
|
489
515
|
input RequestUpdateWhoCanAccessInput {
|
|
490
|
-
|
|
491
|
-
|
|
516
|
+
did: [String!]
|
|
517
|
+
whoCanAccess: String
|
|
492
518
|
}
|
|
493
519
|
|
|
494
520
|
input RequestUpgradeBlockletInput {
|
|
495
|
-
|
|
496
|
-
|
|
521
|
+
did: String
|
|
522
|
+
storeUrl: String
|
|
497
523
|
}
|
|
498
524
|
|
|
499
525
|
input RequestUsersInput {
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
526
|
+
teamDid: String
|
|
527
|
+
query: UserQueryInput
|
|
528
|
+
sort: UserSortInput
|
|
529
|
+
paging: PagingInput
|
|
530
|
+
dids: [String!]
|
|
505
531
|
}
|
|
506
532
|
|
|
507
533
|
input RequestVersionedBlockletInput {
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
534
|
+
did: String
|
|
535
|
+
storeUrl: String
|
|
536
|
+
url: String
|
|
537
|
+
file: Upload
|
|
538
|
+
diffVersion: String
|
|
539
|
+
deleteSet: [String!]
|
|
540
|
+
title: String
|
|
541
|
+
description: String
|
|
542
|
+
startImmediately: Boolean
|
|
543
|
+
downloadTokenList: [DownloadTokenInput!]
|
|
518
544
|
}
|
|
519
545
|
|
|
520
546
|
input RequsetDeleteInvitationInput {
|
|
521
|
-
|
|
522
|
-
|
|
547
|
+
teamDid: String
|
|
548
|
+
inviteId: String
|
|
523
549
|
}
|
|
524
550
|
|
|
525
551
|
input RoleInput {
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
552
|
+
name: String
|
|
553
|
+
description: String
|
|
554
|
+
grants: [String!]
|
|
555
|
+
title: String
|
|
556
|
+
isProtected: Boolean
|
|
531
557
|
}
|
|
532
558
|
|
|
533
559
|
input RoutingRuleInput {
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
560
|
+
id: String
|
|
561
|
+
from: RoutingRuleFromInput
|
|
562
|
+
to: RoutingRuleToInput
|
|
563
|
+
isProtected: Boolean
|
|
564
|
+
services: [BlockletServiceInput!]
|
|
538
565
|
}
|
|
539
566
|
|
|
540
567
|
input RoutingRuleFromInput {
|
|
541
|
-
|
|
542
|
-
|
|
568
|
+
pathPrefix: String
|
|
569
|
+
header: [RoutingRuleHeaderInput!]
|
|
543
570
|
}
|
|
544
571
|
|
|
545
572
|
input RoutingRuleHeaderInput {
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
573
|
+
key: String
|
|
574
|
+
value: String
|
|
575
|
+
type: HeaderMatchType
|
|
549
576
|
}
|
|
550
577
|
|
|
551
578
|
input RoutingRuleToInput {
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
579
|
+
port: Uint32
|
|
580
|
+
type: BackendServiceType
|
|
581
|
+
did: String
|
|
582
|
+
url: String
|
|
583
|
+
redirectCode: Int32
|
|
584
|
+
interfaceName: String
|
|
585
|
+
componentId: String
|
|
559
586
|
}
|
|
560
587
|
|
|
561
588
|
input TeamInput {
|
|
562
|
-
|
|
589
|
+
teamDid: String
|
|
563
590
|
}
|
|
564
591
|
|
|
565
592
|
input TrustedPassportInput {
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
593
|
+
issuerDid: String
|
|
594
|
+
remark: String
|
|
595
|
+
mappings: [TrustedPassportMappingInput!]
|
|
569
596
|
}
|
|
570
597
|
|
|
571
598
|
input TrustedPassportMappingInput {
|
|
572
|
-
|
|
573
|
-
|
|
599
|
+
from: TrustedPassportMappingFromInput
|
|
600
|
+
to: TrustedPassportMappingToInput
|
|
574
601
|
}
|
|
575
602
|
|
|
576
603
|
input TrustedPassportMappingFromInput {
|
|
577
|
-
|
|
604
|
+
passport: String
|
|
578
605
|
}
|
|
579
606
|
|
|
580
607
|
input TrustedPassportMappingToInput {
|
|
581
|
-
|
|
608
|
+
role: String
|
|
582
609
|
}
|
|
583
610
|
|
|
584
611
|
input UserInfoInput {
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
612
|
+
did: String
|
|
613
|
+
pk: String
|
|
614
|
+
role: String
|
|
615
|
+
avatar: String
|
|
616
|
+
fullName: String
|
|
617
|
+
email: String
|
|
618
|
+
approved: Boolean
|
|
619
|
+
createdAt: String
|
|
620
|
+
updatedAt: String
|
|
621
|
+
locale: String
|
|
622
|
+
passports: [PassportInput!]
|
|
623
|
+
firstLoginAt: String
|
|
624
|
+
lastLoginAt: String
|
|
625
|
+
remark: String
|
|
599
626
|
}
|
|
600
627
|
|
|
601
628
|
input UserQueryInput {
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
629
|
+
role: String
|
|
630
|
+
approved: Boolean
|
|
631
|
+
search: String
|
|
605
632
|
}
|
|
606
633
|
|
|
607
634
|
input UserSortInput {
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
635
|
+
updatedAt: Int32
|
|
636
|
+
createdAt: Int32
|
|
637
|
+
lastLoginAt: Int32
|
|
611
638
|
}
|
|
612
639
|
|
|
613
640
|
input WebHookParamInput {
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
641
|
+
name: String
|
|
642
|
+
description: String
|
|
643
|
+
required: Boolean
|
|
644
|
+
defaultValue: String
|
|
645
|
+
value: String
|
|
646
|
+
type: String
|
|
620
647
|
}
|
|
621
648
|
|
|
622
649
|
input DownloadTokenInput {
|
|
623
|
-
|
|
624
|
-
|
|
650
|
+
did: String
|
|
651
|
+
token: String
|
|
625
652
|
}
|
|
626
653
|
|
|
627
654
|
type AccessKey {
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
655
|
+
accessKeyId: String
|
|
656
|
+
remark: String
|
|
657
|
+
passport: String
|
|
658
|
+
createdAt: String
|
|
659
|
+
lastUsedAt: String
|
|
660
|
+
createdBy: String
|
|
661
|
+
updatedBy: String
|
|
635
662
|
}
|
|
636
663
|
|
|
637
664
|
type AuditLog {
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
665
|
+
id: String
|
|
666
|
+
scope: String
|
|
667
|
+
category: String
|
|
668
|
+
action: String
|
|
669
|
+
content: String
|
|
670
|
+
actor: AuditLogActor
|
|
671
|
+
env: AuditLogEnv
|
|
672
|
+
createdAt: String
|
|
673
|
+
ip: String
|
|
647
674
|
}
|
|
648
675
|
|
|
649
676
|
type AuditLogActor {
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
677
|
+
did: String
|
|
678
|
+
role: String
|
|
679
|
+
fullName: String
|
|
653
680
|
}
|
|
654
681
|
|
|
655
682
|
type AuditLogEnv {
|
|
656
|
-
|
|
657
|
-
|
|
683
|
+
browser: AuditLogEnvItem
|
|
684
|
+
os: AuditLogEnvItem
|
|
658
685
|
}
|
|
659
686
|
|
|
660
687
|
type AuditLogEnvItem {
|
|
661
|
-
|
|
662
|
-
|
|
688
|
+
name: String
|
|
689
|
+
version: String
|
|
663
690
|
}
|
|
664
691
|
|
|
665
692
|
type BlockletCapabilities {
|
|
666
|
-
|
|
667
|
-
|
|
693
|
+
clusterMode: Boolean
|
|
694
|
+
component: Boolean
|
|
695
|
+
navigation: Boolean
|
|
668
696
|
}
|
|
669
697
|
|
|
670
698
|
type BlockletController {
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
699
|
+
id: String
|
|
700
|
+
nftId: String
|
|
701
|
+
nftOwner: String
|
|
702
|
+
expireDate: Uint32
|
|
675
703
|
}
|
|
676
704
|
|
|
677
705
|
type BlockletDiff {
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
706
|
+
hasBlocklet: Boolean
|
|
707
|
+
version: String
|
|
708
|
+
addSet: [String!]
|
|
709
|
+
changeSet: [String!]
|
|
710
|
+
deleteSet: [String!]
|
|
683
711
|
}
|
|
684
712
|
|
|
685
713
|
type BlockletDist {
|
|
686
|
-
|
|
687
|
-
|
|
714
|
+
tarball: String
|
|
715
|
+
integrity: String
|
|
688
716
|
}
|
|
689
717
|
|
|
690
718
|
type BlockletEngine {
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
719
|
+
name: String
|
|
720
|
+
displayName: String
|
|
721
|
+
description: String
|
|
722
|
+
version: String
|
|
723
|
+
available: Boolean
|
|
724
|
+
visible: Boolean
|
|
697
725
|
}
|
|
698
726
|
|
|
699
727
|
type BlockletMeta {
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
728
|
+
did: String
|
|
729
|
+
name: String
|
|
730
|
+
version: String
|
|
731
|
+
description: String
|
|
732
|
+
interfaces: [BlockletMetaInterface!]
|
|
733
|
+
author: BlockletMetaPerson
|
|
734
|
+
main: String
|
|
735
|
+
stats: BlockletStats
|
|
736
|
+
homepage: String
|
|
737
|
+
price: Float32
|
|
738
|
+
path: String
|
|
739
|
+
community: String
|
|
740
|
+
documentation: String
|
|
741
|
+
support: String
|
|
742
|
+
screenshots: [String!]
|
|
743
|
+
keywords: [String!]
|
|
744
|
+
group: String
|
|
745
|
+
logo: String
|
|
746
|
+
title: String
|
|
747
|
+
dist: BlockletDist
|
|
748
|
+
maintainers: [BlockletMetaPerson!]
|
|
749
|
+
contributors: [BlockletMetaPerson!]
|
|
750
|
+
repository: BlockletRepository
|
|
751
|
+
payment: BlockletPayment
|
|
752
|
+
nftFactory: String
|
|
753
|
+
lastPublishedAt: String
|
|
754
|
+
capabilities: BlockletCapabilities
|
|
755
|
+
components: [ChildConfig!]
|
|
756
|
+
environments: [Environment!]
|
|
757
|
+
requirements: Requirement
|
|
758
|
+
bundleDid: String
|
|
759
|
+
bundleName: String
|
|
760
|
+
navigation: [Any!]
|
|
732
761
|
}
|
|
733
762
|
|
|
734
763
|
type BlockletMetaInterface {
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
764
|
+
type: String
|
|
765
|
+
name: String
|
|
766
|
+
path: String
|
|
767
|
+
prefix: String
|
|
768
|
+
protocol: String
|
|
769
|
+
port: Any
|
|
770
|
+
services: [BlockletMetaService!]
|
|
742
771
|
}
|
|
743
772
|
|
|
744
773
|
type BlockletMetaPerson {
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
774
|
+
name: String
|
|
775
|
+
email: String
|
|
776
|
+
url: String
|
|
748
777
|
}
|
|
749
778
|
|
|
750
779
|
type BlockletMetaService {
|
|
751
|
-
|
|
752
|
-
|
|
780
|
+
name: String
|
|
781
|
+
config: Any
|
|
753
782
|
}
|
|
754
783
|
|
|
755
784
|
type BlockletPayment {
|
|
756
|
-
|
|
757
|
-
|
|
785
|
+
price: [BlockletPaymentPrice!]
|
|
786
|
+
share: [BlockletPaymentShare!]
|
|
758
787
|
}
|
|
759
788
|
|
|
760
789
|
type BlockletPaymentPrice {
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
790
|
+
address: String
|
|
791
|
+
value: String
|
|
792
|
+
symbol: String
|
|
764
793
|
}
|
|
765
794
|
|
|
766
795
|
type BlockletPaymentShare {
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
796
|
+
address: String
|
|
797
|
+
name: String
|
|
798
|
+
value: String
|
|
770
799
|
}
|
|
771
800
|
|
|
772
801
|
type BlockletPreUpdateInfo {
|
|
773
|
-
|
|
774
|
-
|
|
802
|
+
updateId: String
|
|
803
|
+
updateList: [UpdateList!]
|
|
775
804
|
}
|
|
776
805
|
|
|
777
806
|
type BlockletRepository {
|
|
778
|
-
|
|
779
|
-
|
|
807
|
+
type: String
|
|
808
|
+
url: String
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
type BlockletService {
|
|
812
|
+
name: String
|
|
813
|
+
description: String
|
|
814
|
+
version: String
|
|
815
|
+
config: String
|
|
816
|
+
schema: String
|
|
780
817
|
}
|
|
781
818
|
|
|
782
819
|
type BlockletSettings {
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
820
|
+
initialized: Boolean
|
|
821
|
+
enablePassportIssuance: Boolean
|
|
822
|
+
trustedPassports: [TrustedPassport!]
|
|
823
|
+
whoCanAccess: String
|
|
824
|
+
owner: WalletInfo
|
|
825
|
+
children: [DeletedBlockletState!]
|
|
826
|
+
publicToStore: Boolean
|
|
827
|
+
storeList: [BlockletStore!]
|
|
828
|
+
navigations: [ConfigNavigation!]
|
|
791
829
|
}
|
|
792
830
|
|
|
793
831
|
type BlockletState {
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
832
|
+
meta: BlockletMeta
|
|
833
|
+
status: BlockletStatus
|
|
834
|
+
createdAt: String
|
|
835
|
+
installedAt: String
|
|
836
|
+
startedAt: String
|
|
837
|
+
pausedAt: String
|
|
838
|
+
stoppedAt: String
|
|
839
|
+
environments: [ConfigEntry!]
|
|
840
|
+
configs: [ConfigEntry!]
|
|
841
|
+
diskInfo: DiskInfo
|
|
842
|
+
runtimeInfo: RuntimeInfo
|
|
843
|
+
source: BlockletSource
|
|
844
|
+
deployedFrom: String
|
|
845
|
+
bundleSource: Any
|
|
846
|
+
port: Float32
|
|
847
|
+
engine: BlockletEngine
|
|
848
|
+
mode: String
|
|
849
|
+
ports: Any
|
|
850
|
+
children: [ComponentState!]
|
|
851
|
+
trustedPassports: [TrustedPassport!]
|
|
852
|
+
enablePassportIssuance: Boolean
|
|
853
|
+
dynamic: Boolean
|
|
854
|
+
mountPoint: String
|
|
855
|
+
settings: BlockletSettings
|
|
856
|
+
appDid: String
|
|
857
|
+
site: RoutingSite
|
|
858
|
+
controller: BlockletController
|
|
821
859
|
}
|
|
822
860
|
|
|
823
861
|
type BlockletStats {
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
862
|
+
downloads: Float32
|
|
863
|
+
star: Float32
|
|
864
|
+
purchases: Float32
|
|
827
865
|
}
|
|
828
866
|
|
|
829
867
|
type BlockletStore {
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
868
|
+
name: String
|
|
869
|
+
description: String
|
|
870
|
+
url: String
|
|
871
|
+
logoUrl: String
|
|
872
|
+
maintainer: String
|
|
873
|
+
cdnUrl: String
|
|
874
|
+
protected: Boolean
|
|
875
|
+
id: String
|
|
838
876
|
}
|
|
839
877
|
|
|
840
878
|
type BooleanResponse {
|
|
841
|
-
|
|
842
|
-
|
|
879
|
+
code: StatusCode
|
|
880
|
+
result: Boolean
|
|
843
881
|
}
|
|
844
882
|
|
|
845
883
|
type Certificate {
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
884
|
+
name: String
|
|
885
|
+
domain: String
|
|
886
|
+
id: String
|
|
887
|
+
meta: CertificateMeta
|
|
888
|
+
matchedSites: [MatchedSites!]
|
|
889
|
+
createdAt: String
|
|
890
|
+
updatedAt: String
|
|
891
|
+
isProtected: Boolean
|
|
892
|
+
source: String
|
|
893
|
+
status: String
|
|
856
894
|
}
|
|
857
895
|
|
|
858
896
|
type CertificateIssuer {
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
897
|
+
countryName: String
|
|
898
|
+
organizationName: String
|
|
899
|
+
commonName: String
|
|
862
900
|
}
|
|
863
901
|
|
|
864
902
|
type CertificateMeta {
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
903
|
+
issuer: CertificateIssuer
|
|
904
|
+
sans: [String!]
|
|
905
|
+
validFrom: Int64
|
|
906
|
+
validTo: Int64
|
|
907
|
+
fingerprintAlg: String
|
|
908
|
+
fingerprint: String
|
|
909
|
+
validityPeriod: Int64
|
|
872
910
|
}
|
|
873
911
|
|
|
874
912
|
type ChildConfig {
|
|
875
|
-
|
|
876
|
-
|
|
913
|
+
name: String
|
|
914
|
+
mountPoint: String
|
|
877
915
|
}
|
|
878
916
|
|
|
879
917
|
type ComponentState {
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
918
|
+
meta: BlockletMeta
|
|
919
|
+
status: BlockletStatus
|
|
920
|
+
createdAt: String
|
|
921
|
+
installedAt: String
|
|
922
|
+
startedAt: String
|
|
923
|
+
pausedAt: String
|
|
924
|
+
stoppedAt: String
|
|
925
|
+
environments: [ConfigEntry!]
|
|
926
|
+
configs: [ConfigEntry!]
|
|
927
|
+
diskInfo: DiskInfo
|
|
928
|
+
runtimeInfo: RuntimeInfo
|
|
929
|
+
source: BlockletSource
|
|
930
|
+
deployedFrom: String
|
|
931
|
+
bundleSource: Any
|
|
932
|
+
port: Float32
|
|
933
|
+
engine: BlockletEngine
|
|
934
|
+
mode: String
|
|
935
|
+
ports: Any
|
|
936
|
+
children: [ComponentState!]
|
|
937
|
+
dynamic: Boolean
|
|
938
|
+
mountPoint: String
|
|
901
939
|
}
|
|
902
940
|
|
|
903
941
|
type ConfigEntry {
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
942
|
+
key: String
|
|
943
|
+
value: String
|
|
944
|
+
required: Boolean
|
|
945
|
+
description: String
|
|
946
|
+
validation: String
|
|
947
|
+
secure: Boolean
|
|
948
|
+
custom: Boolean
|
|
949
|
+
shared: Boolean
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
type ConfigNavigation {
|
|
953
|
+
id: String
|
|
954
|
+
title: String
|
|
955
|
+
link: String
|
|
956
|
+
icon: String
|
|
957
|
+
section: String
|
|
958
|
+
component: String
|
|
959
|
+
parent: String
|
|
960
|
+
role: String
|
|
961
|
+
visible: Boolean
|
|
962
|
+
from: String
|
|
912
963
|
}
|
|
913
964
|
|
|
914
965
|
type CreateAccessKey {
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
966
|
+
accessKeyId: String
|
|
967
|
+
accessKeySecret: String
|
|
968
|
+
remark: String
|
|
969
|
+
passport: String
|
|
970
|
+
createdAt: String
|
|
971
|
+
lastUsedAt: String
|
|
921
972
|
}
|
|
922
973
|
|
|
923
974
|
type DelegationState {
|
|
924
|
-
|
|
975
|
+
delegated: Boolean
|
|
925
976
|
}
|
|
926
977
|
|
|
927
978
|
type DeletedBlockletMeta {
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
979
|
+
did: String
|
|
980
|
+
name: String
|
|
981
|
+
version: String
|
|
982
|
+
description: String
|
|
983
|
+
title: String
|
|
984
|
+
bundleDid: String
|
|
985
|
+
bundleName: String
|
|
935
986
|
}
|
|
936
987
|
|
|
937
988
|
type DeletedBlockletState {
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
989
|
+
meta: DeletedBlockletMeta
|
|
990
|
+
status: BlockletStatus
|
|
991
|
+
deployedFrom: String
|
|
992
|
+
mountPoint: String
|
|
993
|
+
deletedAt: String
|
|
943
994
|
}
|
|
944
995
|
|
|
945
996
|
type DiskInfo {
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
997
|
+
app: Float32
|
|
998
|
+
data: Float32
|
|
999
|
+
log: Float32
|
|
1000
|
+
cache: Float32
|
|
1001
|
+
blocklets: Float32
|
|
951
1002
|
}
|
|
952
1003
|
|
|
953
1004
|
type Environment {
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
1005
|
+
name: String
|
|
1006
|
+
description: String
|
|
1007
|
+
default: String
|
|
1008
|
+
required: Boolean
|
|
1009
|
+
secure: Boolean
|
|
1010
|
+
validation: String
|
|
1011
|
+
shared: Boolean
|
|
961
1012
|
}
|
|
962
1013
|
|
|
963
1014
|
type Fuel {
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
1015
|
+
endpoint: String
|
|
1016
|
+
address: String
|
|
1017
|
+
value: String
|
|
1018
|
+
reason: String
|
|
968
1019
|
}
|
|
969
1020
|
|
|
970
1021
|
type Gateway {
|
|
971
|
-
|
|
1022
|
+
requestLimit: RequestLimit
|
|
972
1023
|
}
|
|
973
1024
|
|
|
974
1025
|
type GeneralResponse {
|
|
975
|
-
|
|
1026
|
+
code: StatusCode
|
|
976
1027
|
}
|
|
977
1028
|
|
|
978
1029
|
type IPInfo {
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
1030
|
+
internalV4: String
|
|
1031
|
+
externalV4: String
|
|
1032
|
+
internalV6: String
|
|
1033
|
+
externalV6: String
|
|
983
1034
|
}
|
|
984
1035
|
|
|
985
1036
|
type InviteInfo {
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
1037
|
+
inviteId: String
|
|
1038
|
+
role: String
|
|
1039
|
+
remark: String
|
|
1040
|
+
expireDate: String
|
|
1041
|
+
inviter: UserInfo
|
|
1042
|
+
teamDid: String
|
|
1043
|
+
interfaceName: String
|
|
993
1044
|
}
|
|
994
1045
|
|
|
995
1046
|
type Issuer {
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
1047
|
+
id: String
|
|
1048
|
+
name: String
|
|
1049
|
+
pk: String
|
|
999
1050
|
}
|
|
1000
1051
|
|
|
1001
1052
|
type KeyValue {
|
|
1002
|
-
|
|
1003
|
-
|
|
1053
|
+
key: String
|
|
1054
|
+
value: Any
|
|
1004
1055
|
}
|
|
1005
1056
|
|
|
1006
1057
|
type LatestBlockletVersion {
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1058
|
+
did: String
|
|
1059
|
+
version: String
|
|
1060
|
+
registryUrl: String
|
|
1010
1061
|
}
|
|
1011
1062
|
|
|
1012
1063
|
type LauncherInfo {
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1064
|
+
did: String
|
|
1065
|
+
type: String
|
|
1066
|
+
provider: String
|
|
1067
|
+
url: String
|
|
1068
|
+
tag: String
|
|
1069
|
+
chainHost: String
|
|
1019
1070
|
}
|
|
1020
1071
|
|
|
1021
1072
|
type MatchedSites {
|
|
1022
|
-
|
|
1023
|
-
|
|
1073
|
+
id: String
|
|
1074
|
+
domain: String
|
|
1024
1075
|
}
|
|
1025
1076
|
|
|
1026
1077
|
type NodeEnvInfo {
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1078
|
+
ip: IPInfo
|
|
1079
|
+
os: String
|
|
1080
|
+
location: String
|
|
1081
|
+
docker: Boolean
|
|
1082
|
+
image: Boolean
|
|
1083
|
+
blockletEngines: [BlockletEngine!]
|
|
1084
|
+
gitpod: Boolean
|
|
1085
|
+
disk: DiskInfo
|
|
1035
1086
|
}
|
|
1036
1087
|
|
|
1037
1088
|
type NodeRouting {
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1089
|
+
provider: String
|
|
1090
|
+
snapshotHash: String
|
|
1091
|
+
adminPath: String
|
|
1092
|
+
requestLimit: RequestLimit
|
|
1042
1093
|
}
|
|
1043
1094
|
|
|
1044
1095
|
type NodeState {
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1096
|
+
did: String
|
|
1097
|
+
pk: String
|
|
1098
|
+
version: String
|
|
1099
|
+
name: String
|
|
1100
|
+
description: String
|
|
1101
|
+
port: String
|
|
1102
|
+
initialized: Boolean
|
|
1103
|
+
nodeOwner: WalletInfo
|
|
1104
|
+
createdAt: String
|
|
1105
|
+
startedAt: String
|
|
1106
|
+
initializedAt: String
|
|
1107
|
+
mode: String
|
|
1108
|
+
routing: NodeRouting
|
|
1109
|
+
environments: [ConfigEntry!]
|
|
1110
|
+
uptime: Float32
|
|
1111
|
+
autoUpgrade: Boolean
|
|
1112
|
+
nextVersion: String
|
|
1113
|
+
upgradeSessionId: String
|
|
1114
|
+
registerUrl: String
|
|
1115
|
+
enableWelcomePage: Boolean
|
|
1116
|
+
webWalletUrl: String
|
|
1117
|
+
blockletRegistryList: [BlockletStore!]
|
|
1118
|
+
ownerNft: OwnerNft
|
|
1119
|
+
diskAlertThreshold: Uint32
|
|
1120
|
+
trustedPassports: [TrustedPassport!]
|
|
1121
|
+
launcher: LauncherInfo
|
|
1122
|
+
enablePassportIssuance: Boolean
|
|
1123
|
+
didRegistry: String
|
|
1124
|
+
didDomain: String
|
|
1074
1125
|
}
|
|
1075
1126
|
|
|
1076
1127
|
type Notification {
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1128
|
+
sender: String
|
|
1129
|
+
receiver: String
|
|
1130
|
+
title: String
|
|
1131
|
+
description: String
|
|
1132
|
+
action: String
|
|
1133
|
+
entityType: String
|
|
1134
|
+
entityId: String
|
|
1135
|
+
read: Boolean
|
|
1136
|
+
createdAt: String
|
|
1137
|
+
updatedAt: String
|
|
1138
|
+
id: String
|
|
1139
|
+
severity: String
|
|
1089
1140
|
}
|
|
1090
1141
|
|
|
1091
1142
|
type OwnerNft {
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1143
|
+
did: String
|
|
1144
|
+
holder: String
|
|
1145
|
+
issuer: String
|
|
1095
1146
|
}
|
|
1096
1147
|
|
|
1097
1148
|
type Paging {
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1149
|
+
total: Uint32
|
|
1150
|
+
pageSize: Uint32
|
|
1151
|
+
pageCount: Uint32
|
|
1152
|
+
page: Uint32
|
|
1102
1153
|
}
|
|
1103
1154
|
|
|
1104
1155
|
type Passport {
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1156
|
+
id: String
|
|
1157
|
+
name: String
|
|
1158
|
+
title: String
|
|
1159
|
+
issuer: Issuer
|
|
1160
|
+
type: [String!]
|
|
1161
|
+
issuanceDate: String
|
|
1162
|
+
expirationDate: String
|
|
1163
|
+
status: String
|
|
1164
|
+
role: String
|
|
1114
1165
|
}
|
|
1115
1166
|
|
|
1116
1167
|
type PassportIssuanceInfo {
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1168
|
+
id: String
|
|
1169
|
+
name: String
|
|
1170
|
+
title: String
|
|
1171
|
+
expireDate: String
|
|
1172
|
+
teamDid: String
|
|
1173
|
+
ownerDid: String
|
|
1123
1174
|
}
|
|
1124
1175
|
|
|
1125
1176
|
type Permission {
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1177
|
+
name: String
|
|
1178
|
+
description: String
|
|
1179
|
+
isProtected: Boolean
|
|
1129
1180
|
}
|
|
1130
1181
|
|
|
1131
1182
|
type RequestLimit {
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1183
|
+
enabled: Boolean
|
|
1184
|
+
rate: Uint32
|
|
1185
|
+
ipHeader: String
|
|
1135
1186
|
}
|
|
1136
1187
|
|
|
1137
1188
|
type Requirement {
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1189
|
+
server: String
|
|
1190
|
+
os: Any
|
|
1191
|
+
cpu: Any
|
|
1192
|
+
fuels: [Fuel!]
|
|
1142
1193
|
}
|
|
1143
1194
|
|
|
1144
1195
|
type ResponseAccessKeys {
|
|
1145
|
-
|
|
1146
|
-
|
|
1196
|
+
code: StatusCode
|
|
1197
|
+
list: [AccessKey!]
|
|
1147
1198
|
}
|
|
1148
1199
|
|
|
1149
1200
|
type ResponseAddLetsEncryptCert {
|
|
1150
|
-
|
|
1201
|
+
code: StatusCode
|
|
1151
1202
|
}
|
|
1152
1203
|
|
|
1153
1204
|
type ResponseAddNginxHttpsCert {
|
|
1154
|
-
|
|
1205
|
+
code: StatusCode
|
|
1155
1206
|
}
|
|
1156
1207
|
|
|
1157
1208
|
type ResponseBlocklet {
|
|
1158
|
-
|
|
1159
|
-
|
|
1209
|
+
code: StatusCode
|
|
1210
|
+
blocklet: BlockletState
|
|
1160
1211
|
}
|
|
1161
1212
|
|
|
1162
1213
|
type ResponseBlockletDiff {
|
|
1163
|
-
|
|
1164
|
-
|
|
1214
|
+
code: StatusCode
|
|
1215
|
+
blockletDiff: BlockletDiff
|
|
1165
1216
|
}
|
|
1166
1217
|
|
|
1167
1218
|
type ResponseBlockletInfo {
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1219
|
+
code: StatusCode
|
|
1220
|
+
blockletDid: String
|
|
1221
|
+
isExternal: Boolean
|
|
1222
|
+
isInstalled: Boolean
|
|
1223
|
+
isRunning: Boolean
|
|
1173
1224
|
}
|
|
1174
1225
|
|
|
1175
1226
|
type ResponseBlockletMeta {
|
|
1176
|
-
|
|
1177
|
-
|
|
1227
|
+
code: StatusCode
|
|
1228
|
+
meta: Any
|
|
1178
1229
|
}
|
|
1179
1230
|
|
|
1180
1231
|
type ResponseBlockletMetaFromUrl {
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1232
|
+
code: StatusCode
|
|
1233
|
+
meta: BlockletMeta
|
|
1234
|
+
isFree: Boolean
|
|
1235
|
+
inStore: Boolean
|
|
1236
|
+
registryUrl: String
|
|
1186
1237
|
}
|
|
1187
1238
|
|
|
1188
1239
|
type ResponseCheckComponentsForUpdates {
|
|
1189
|
-
|
|
1190
|
-
|
|
1240
|
+
code: StatusCode
|
|
1241
|
+
preUpdateInfo: BlockletPreUpdateInfo
|
|
1191
1242
|
}
|
|
1192
1243
|
|
|
1193
1244
|
type ResponseCheckDomains {
|
|
1194
|
-
|
|
1245
|
+
code: StatusCode
|
|
1195
1246
|
}
|
|
1196
1247
|
|
|
1197
1248
|
type ResponseCheckNodeVersion {
|
|
1198
|
-
|
|
1199
|
-
|
|
1249
|
+
code: StatusCode
|
|
1250
|
+
version: String
|
|
1200
1251
|
}
|
|
1201
1252
|
|
|
1202
1253
|
type ResponseCreateAccessKey {
|
|
1203
|
-
|
|
1204
|
-
|
|
1254
|
+
code: StatusCode
|
|
1255
|
+
data: CreateAccessKey
|
|
1205
1256
|
}
|
|
1206
1257
|
|
|
1207
1258
|
type ResponseCreateInvitation {
|
|
1208
|
-
|
|
1209
|
-
|
|
1259
|
+
code: StatusCode
|
|
1260
|
+
inviteInfo: InviteInfo
|
|
1210
1261
|
}
|
|
1211
1262
|
|
|
1212
1263
|
type ResponseCreatePassportIssuance {
|
|
1213
|
-
|
|
1214
|
-
|
|
1264
|
+
code: StatusCode
|
|
1265
|
+
info: PassportIssuanceInfo
|
|
1215
1266
|
}
|
|
1216
1267
|
|
|
1217
1268
|
type ResponseCreateTransferNodeInvitation {
|
|
1218
|
-
|
|
1219
|
-
|
|
1269
|
+
code: StatusCode
|
|
1270
|
+
inviteInfo: InviteInfo
|
|
1220
1271
|
}
|
|
1221
1272
|
|
|
1222
1273
|
type ResponseCreateWebHook {
|
|
1223
|
-
|
|
1224
|
-
|
|
1274
|
+
code: StatusCode
|
|
1275
|
+
webhook: WebHookSender
|
|
1225
1276
|
}
|
|
1226
1277
|
|
|
1227
1278
|
type ResponseDelegationState {
|
|
1228
|
-
|
|
1229
|
-
|
|
1279
|
+
code: StatusCode
|
|
1280
|
+
state: DelegationState
|
|
1230
1281
|
}
|
|
1231
1282
|
|
|
1232
1283
|
type ResponseDeleteAccessKey {
|
|
1233
|
-
|
|
1284
|
+
code: StatusCode
|
|
1234
1285
|
}
|
|
1235
1286
|
|
|
1236
1287
|
type ResponseDeleteNginxHttpsCert {
|
|
1237
|
-
|
|
1288
|
+
code: StatusCode
|
|
1238
1289
|
}
|
|
1239
1290
|
|
|
1240
1291
|
type ResponseDeleteWebHook {
|
|
1241
|
-
|
|
1292
|
+
code: StatusCode
|
|
1242
1293
|
}
|
|
1243
1294
|
|
|
1244
1295
|
type ResponseFindCertificateByDomain {
|
|
1245
|
-
|
|
1246
|
-
|
|
1296
|
+
code: StatusCode
|
|
1297
|
+
cert: Certificate
|
|
1247
1298
|
}
|
|
1248
1299
|
|
|
1249
1300
|
type ResponseGateway {
|
|
1250
|
-
|
|
1251
|
-
|
|
1301
|
+
code: StatusCode
|
|
1302
|
+
gateway: Gateway
|
|
1252
1303
|
}
|
|
1253
1304
|
|
|
1254
1305
|
type ResponseGetAuditLogs {
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1306
|
+
code: StatusCode
|
|
1307
|
+
list: [AuditLog!]
|
|
1308
|
+
paging: Paging
|
|
1258
1309
|
}
|
|
1259
1310
|
|
|
1260
1311
|
type ResponseGetBlocklets {
|
|
1261
|
-
|
|
1262
|
-
|
|
1312
|
+
code: StatusCode
|
|
1313
|
+
blocklets: [BlockletState!]
|
|
1263
1314
|
}
|
|
1264
1315
|
|
|
1265
1316
|
type ResponseGetCertificates {
|
|
1266
|
-
|
|
1267
|
-
|
|
1317
|
+
code: StatusCode
|
|
1318
|
+
certificates: [Certificate!]
|
|
1268
1319
|
}
|
|
1269
1320
|
|
|
1270
1321
|
type ResponseGetInvitations {
|
|
1271
|
-
|
|
1272
|
-
|
|
1322
|
+
code: StatusCode
|
|
1323
|
+
invitations: [InviteInfo!]
|
|
1273
1324
|
}
|
|
1274
1325
|
|
|
1275
1326
|
type ResponseGetNodeEnv {
|
|
1276
|
-
|
|
1277
|
-
|
|
1327
|
+
code: StatusCode
|
|
1328
|
+
info: NodeEnvInfo
|
|
1278
1329
|
}
|
|
1279
1330
|
|
|
1280
1331
|
type ResponseGetNodeInfo {
|
|
1281
|
-
|
|
1282
|
-
|
|
1332
|
+
code: StatusCode
|
|
1333
|
+
info: NodeState
|
|
1283
1334
|
}
|
|
1284
1335
|
|
|
1285
1336
|
type ResponseGetNotifications {
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1337
|
+
code: StatusCode
|
|
1338
|
+
list: [Notification!]
|
|
1339
|
+
paging: Paging
|
|
1289
1340
|
}
|
|
1290
1341
|
|
|
1291
1342
|
type ResponseGetPassportIssuances {
|
|
1292
|
-
|
|
1293
|
-
|
|
1343
|
+
code: StatusCode
|
|
1344
|
+
list: [PassportIssuanceInfo!]
|
|
1294
1345
|
}
|
|
1295
1346
|
|
|
1296
1347
|
type ResponseGetRoutingProviders {
|
|
1297
|
-
|
|
1298
|
-
|
|
1348
|
+
code: StatusCode
|
|
1349
|
+
providers: [RoutingProvider!]
|
|
1299
1350
|
}
|
|
1300
1351
|
|
|
1301
1352
|
type ResponseGetRoutingSites {
|
|
1302
|
-
|
|
1303
|
-
|
|
1353
|
+
code: StatusCode
|
|
1354
|
+
sites: [RoutingSite!]
|
|
1304
1355
|
}
|
|
1305
1356
|
|
|
1306
1357
|
type ResponseGetRoutingSnapshots {
|
|
1307
|
-
|
|
1308
|
-
|
|
1358
|
+
code: StatusCode
|
|
1359
|
+
snapshots: [RoutingSnapshot!]
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
type ResponseGetServices {
|
|
1363
|
+
code: StatusCode
|
|
1364
|
+
services: [BlockletService!]
|
|
1309
1365
|
}
|
|
1310
1366
|
|
|
1311
1367
|
type ResponseGetSession {
|
|
1312
|
-
|
|
1313
|
-
|
|
1368
|
+
code: StatusCode
|
|
1369
|
+
session: Any
|
|
1314
1370
|
}
|
|
1315
1371
|
|
|
1316
1372
|
type ResponseGetSnapshotSites {
|
|
1317
|
-
|
|
1318
|
-
|
|
1373
|
+
code: StatusCode
|
|
1374
|
+
sites: [RoutingSite!]
|
|
1319
1375
|
}
|
|
1320
1376
|
|
|
1321
1377
|
type ResponseGetUsersCountPerRole {
|
|
1322
|
-
|
|
1323
|
-
|
|
1378
|
+
code: StatusCode
|
|
1379
|
+
counts: [KeyValue!]
|
|
1324
1380
|
}
|
|
1325
1381
|
|
|
1326
1382
|
type ResponseInstallFromVc {
|
|
1327
|
-
|
|
1328
|
-
|
|
1383
|
+
code: StatusCode
|
|
1384
|
+
blocklet: BlockletState
|
|
1329
1385
|
}
|
|
1330
1386
|
|
|
1331
1387
|
type ResponseLatestBlockletVersion {
|
|
1332
|
-
|
|
1333
|
-
|
|
1388
|
+
code: StatusCode
|
|
1389
|
+
data: LatestBlockletVersion
|
|
1334
1390
|
}
|
|
1335
1391
|
|
|
1336
1392
|
type ResponsePermission {
|
|
1337
|
-
|
|
1338
|
-
|
|
1393
|
+
code: StatusCode
|
|
1394
|
+
permission: Permission
|
|
1339
1395
|
}
|
|
1340
1396
|
|
|
1341
1397
|
type ResponsePermissions {
|
|
1342
|
-
|
|
1343
|
-
|
|
1398
|
+
code: StatusCode
|
|
1399
|
+
permissions: [Permission!]
|
|
1344
1400
|
}
|
|
1345
1401
|
|
|
1346
1402
|
type ResponseReadNotifications {
|
|
1347
|
-
|
|
1348
|
-
|
|
1403
|
+
code: StatusCode
|
|
1404
|
+
numAffected: Int32
|
|
1349
1405
|
}
|
|
1350
1406
|
|
|
1351
1407
|
type ResponseResetNode {
|
|
1352
|
-
|
|
1408
|
+
code: StatusCode
|
|
1353
1409
|
}
|
|
1354
1410
|
|
|
1355
1411
|
type ResponseRole {
|
|
1356
|
-
|
|
1357
|
-
|
|
1412
|
+
code: StatusCode
|
|
1413
|
+
role: Role
|
|
1358
1414
|
}
|
|
1359
1415
|
|
|
1360
1416
|
type ResponseRoles {
|
|
1361
|
-
|
|
1362
|
-
|
|
1417
|
+
code: StatusCode
|
|
1418
|
+
roles: [Role!]
|
|
1363
1419
|
}
|
|
1364
1420
|
|
|
1365
1421
|
type ResponseRoutingSite {
|
|
1366
|
-
|
|
1367
|
-
|
|
1422
|
+
code: StatusCode
|
|
1423
|
+
site: RoutingSite
|
|
1368
1424
|
}
|
|
1369
1425
|
|
|
1370
1426
|
type ResponseSendMsg {
|
|
1371
|
-
|
|
1427
|
+
code: StatusCode
|
|
1372
1428
|
}
|
|
1373
1429
|
|
|
1374
1430
|
type ResponseSenderList {
|
|
1375
|
-
|
|
1376
|
-
|
|
1431
|
+
code: StatusCode
|
|
1432
|
+
senders: [WebHookSender!]
|
|
1377
1433
|
}
|
|
1378
1434
|
|
|
1379
1435
|
type ResponseTakeRoutingSnapshot {
|
|
1380
|
-
|
|
1381
|
-
|
|
1436
|
+
code: StatusCode
|
|
1437
|
+
hash: String
|
|
1382
1438
|
}
|
|
1383
1439
|
|
|
1384
1440
|
type ResponseUpdateAccessKey {
|
|
1385
|
-
|
|
1386
|
-
|
|
1441
|
+
code: StatusCode
|
|
1442
|
+
data: AccessKey
|
|
1387
1443
|
}
|
|
1388
1444
|
|
|
1389
1445
|
type ResponseUpdateNginxHttpsCert {
|
|
1390
|
-
|
|
1446
|
+
code: StatusCode
|
|
1391
1447
|
}
|
|
1392
1448
|
|
|
1393
1449
|
type ResponseUpgradeNodeVersion {
|
|
1394
|
-
|
|
1395
|
-
|
|
1450
|
+
code: StatusCode
|
|
1451
|
+
sessionId: String
|
|
1396
1452
|
}
|
|
1397
1453
|
|
|
1398
1454
|
type ResponseUser {
|
|
1399
|
-
|
|
1400
|
-
|
|
1455
|
+
code: StatusCode
|
|
1456
|
+
user: UserInfo
|
|
1401
1457
|
}
|
|
1402
1458
|
|
|
1403
1459
|
type ResponseUsers {
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1460
|
+
code: StatusCode
|
|
1461
|
+
users: [UserInfo!]
|
|
1462
|
+
paging: Paging
|
|
1407
1463
|
}
|
|
1408
1464
|
|
|
1409
1465
|
type ResponseWebHooks {
|
|
1410
|
-
|
|
1411
|
-
|
|
1466
|
+
code: StatusCode
|
|
1467
|
+
webhooks: [WebHookRecord!]
|
|
1412
1468
|
}
|
|
1413
1469
|
|
|
1414
1470
|
type Role {
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1471
|
+
name: String
|
|
1472
|
+
description: String
|
|
1473
|
+
grants: [String!]
|
|
1474
|
+
title: String
|
|
1475
|
+
isProtected: Boolean
|
|
1420
1476
|
}
|
|
1421
1477
|
|
|
1422
1478
|
type RoutingProvider {
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1479
|
+
name: String
|
|
1480
|
+
description: String
|
|
1481
|
+
running: Boolean
|
|
1482
|
+
available: Boolean
|
|
1483
|
+
error: String
|
|
1428
1484
|
}
|
|
1429
1485
|
|
|
1430
1486
|
type RoutingRule {
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1487
|
+
id: String
|
|
1488
|
+
from: RoutingRuleFrom
|
|
1489
|
+
to: RoutingRuleTo
|
|
1490
|
+
isProtected: Boolean
|
|
1491
|
+
services: [BlockletService!]
|
|
1435
1492
|
}
|
|
1436
1493
|
|
|
1437
1494
|
type RoutingRuleFrom {
|
|
1438
|
-
|
|
1439
|
-
|
|
1495
|
+
pathPrefix: String
|
|
1496
|
+
header: [RoutingRuleHeader!]
|
|
1440
1497
|
}
|
|
1441
1498
|
|
|
1442
1499
|
type RoutingRuleHeader {
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1500
|
+
key: String
|
|
1501
|
+
value: String
|
|
1502
|
+
type: HeaderMatchType
|
|
1446
1503
|
}
|
|
1447
1504
|
|
|
1448
1505
|
type RoutingRuleTo {
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1506
|
+
port: Uint32
|
|
1507
|
+
type: BackendServiceType
|
|
1508
|
+
did: String
|
|
1509
|
+
url: String
|
|
1510
|
+
redirectCode: Int32
|
|
1511
|
+
interfaceName: String
|
|
1512
|
+
componentId: String
|
|
1456
1513
|
}
|
|
1457
1514
|
|
|
1458
1515
|
type RoutingSite {
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1516
|
+
id: String
|
|
1517
|
+
domain: String
|
|
1518
|
+
domainAliases: [Any!]
|
|
1519
|
+
rules: [RoutingRule!]
|
|
1520
|
+
isProtected: Boolean
|
|
1521
|
+
corsAllowedOrigins: [String!]
|
|
1465
1522
|
}
|
|
1466
1523
|
|
|
1467
1524
|
type RoutingSnapshot {
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1525
|
+
hash: String
|
|
1526
|
+
tree: String
|
|
1527
|
+
message: String
|
|
1528
|
+
author: String
|
|
1529
|
+
createdAt: String
|
|
1473
1530
|
}
|
|
1474
1531
|
|
|
1475
1532
|
type RuntimeInfo {
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1533
|
+
pid: String
|
|
1534
|
+
port: String
|
|
1535
|
+
uptime: String
|
|
1536
|
+
memoryUsage: Float32
|
|
1537
|
+
cpuUsage: Float32
|
|
1481
1538
|
}
|
|
1482
1539
|
|
|
1483
1540
|
type TrustedPassport {
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1541
|
+
issuerDid: String
|
|
1542
|
+
remark: String
|
|
1543
|
+
mappings: [TrustedPassportMapping!]
|
|
1487
1544
|
}
|
|
1488
1545
|
|
|
1489
1546
|
type TrustedPassportMapping {
|
|
1490
|
-
|
|
1491
|
-
|
|
1547
|
+
from: TrustedPassportMappingFrom
|
|
1548
|
+
to: TrustedPassportMappingTo
|
|
1492
1549
|
}
|
|
1493
1550
|
|
|
1494
1551
|
type TrustedPassportMappingFrom {
|
|
1495
|
-
|
|
1552
|
+
passport: String
|
|
1496
1553
|
}
|
|
1497
1554
|
|
|
1498
1555
|
type TrustedPassportMappingTo {
|
|
1499
|
-
|
|
1556
|
+
role: String
|
|
1500
1557
|
}
|
|
1501
1558
|
|
|
1502
1559
|
type UpdateList {
|
|
1503
|
-
|
|
1504
|
-
|
|
1560
|
+
id: String
|
|
1561
|
+
meta: BlockletMeta
|
|
1505
1562
|
}
|
|
1506
1563
|
|
|
1507
1564
|
type UserInfo {
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1565
|
+
did: String
|
|
1566
|
+
pk: String
|
|
1567
|
+
role: String
|
|
1568
|
+
avatar: String
|
|
1569
|
+
fullName: String
|
|
1570
|
+
email: String
|
|
1571
|
+
approved: Boolean
|
|
1572
|
+
createdAt: String
|
|
1573
|
+
updatedAt: String
|
|
1574
|
+
locale: String
|
|
1575
|
+
passports: [Passport!]
|
|
1576
|
+
firstLoginAt: String
|
|
1577
|
+
lastLoginAt: String
|
|
1578
|
+
remark: String
|
|
1522
1579
|
}
|
|
1523
1580
|
|
|
1524
1581
|
type WalletInfo {
|
|
1525
|
-
|
|
1526
|
-
|
|
1582
|
+
did: String
|
|
1583
|
+
pk: String
|
|
1527
1584
|
}
|
|
1528
1585
|
|
|
1529
1586
|
type WebHookParam {
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1587
|
+
name: String
|
|
1588
|
+
description: String
|
|
1589
|
+
required: Boolean
|
|
1590
|
+
defaultValue: String
|
|
1591
|
+
value: String
|
|
1592
|
+
type: String
|
|
1536
1593
|
}
|
|
1537
1594
|
|
|
1538
1595
|
type WebHookRecord {
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1596
|
+
type: SenderType
|
|
1597
|
+
id: String
|
|
1598
|
+
params: [WebHookParam!]
|
|
1599
|
+
createdAt: String
|
|
1543
1600
|
}
|
|
1544
1601
|
|
|
1545
1602
|
type WebHookSender {
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1603
|
+
type: SenderType
|
|
1604
|
+
title: String
|
|
1605
|
+
description: String
|
|
1606
|
+
params: [WebHookParam!]
|
|
1550
1607
|
}
|
|
1551
1608
|
|
|
1552
1609
|
enum BackendServiceType {
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1610
|
+
daemon
|
|
1611
|
+
blocklet
|
|
1612
|
+
redirect
|
|
1613
|
+
none
|
|
1614
|
+
general_proxy
|
|
1615
|
+
direct_response
|
|
1559
1616
|
}
|
|
1560
1617
|
|
|
1561
1618
|
enum BlockletSource {
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1619
|
+
registry
|
|
1620
|
+
local
|
|
1621
|
+
upload
|
|
1622
|
+
url
|
|
1623
|
+
custom
|
|
1567
1624
|
}
|
|
1568
1625
|
|
|
1569
1626
|
enum BlockletStatus {
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1627
|
+
added
|
|
1628
|
+
downloading
|
|
1629
|
+
downloaded
|
|
1630
|
+
installing
|
|
1631
|
+
installed
|
|
1632
|
+
starting
|
|
1633
|
+
running
|
|
1634
|
+
stopping
|
|
1635
|
+
stopped
|
|
1636
|
+
error
|
|
1637
|
+
upgrading
|
|
1638
|
+
restarting
|
|
1639
|
+
corrupted
|
|
1640
|
+
waiting
|
|
1641
|
+
deleted
|
|
1642
|
+
unknown
|
|
1586
1643
|
}
|
|
1587
1644
|
|
|
1588
1645
|
enum HeaderMatchType {
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1646
|
+
exact
|
|
1647
|
+
partial
|
|
1648
|
+
regexp
|
|
1592
1649
|
}
|
|
1593
1650
|
|
|
1594
1651
|
enum SenderType {
|
|
1595
|
-
|
|
1596
|
-
|
|
1652
|
+
slack
|
|
1653
|
+
api
|
|
1597
1654
|
}
|
|
1598
1655
|
|
|
1599
1656
|
enum StatusCode {
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1657
|
+
ok
|
|
1658
|
+
blocklet_not_found
|
|
1659
|
+
blocklet_not_purchased
|
|
1660
|
+
forbidden
|
|
1661
|
+
internal
|
|
1662
|
+
timeout
|
|
1606
1663
|
}
|
|
1607
1664
|
|
|
1608
1665
|
enum Upload {
|
|
1609
|
-
|
|
1666
|
+
scalar
|
|
1610
1667
|
}
|
|
1611
1668
|
|
|
1612
1669
|
type Mutation {
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1670
|
+
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1671
|
+
installBlockletFromVc(input: RequestInstallFromVcInput): ResponseInstallFromVc
|
|
1672
|
+
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1673
|
+
startBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1674
|
+
stopBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1675
|
+
reloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1676
|
+
restartBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1677
|
+
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1678
|
+
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1679
|
+
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1680
|
+
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1681
|
+
checkComponentsForUpdates(input: RequestBlockletInput): ResponseCheckComponentsForUpdates
|
|
1682
|
+
upgradeComponents(input: RequestUpdateComponentsInput): ResponseBlocklet
|
|
1683
|
+
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1684
|
+
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1685
|
+
configNavigations(input: RequestConfigNavigationsInput): ResponseBlocklet
|
|
1686
|
+
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1687
|
+
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1688
|
+
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1689
|
+
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
1690
|
+
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
1691
|
+
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
|
1692
|
+
resetNode(input: RequestResetNodeInput): ResponseResetNode
|
|
1693
|
+
updateGateway(input: RequestGatewayInput): ResponseGateway
|
|
1694
|
+
createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
|
|
1695
|
+
createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
|
1696
|
+
deleteInvitation(input: RequsetDeleteInvitationInput): GeneralResponse
|
|
1697
|
+
createPassportIssuance(input: RequestCreatePassportIssuanceInput): ResponseCreatePassportIssuance
|
|
1698
|
+
deletePassportIssuance(input: RequestDeleteTeamSessionInput): GeneralResponse
|
|
1699
|
+
configTrustedPassports(input: RequestConfigTrustedPassportsInput): GeneralResponse
|
|
1700
|
+
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
1701
|
+
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
1702
|
+
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
1703
|
+
updateUserRole(input: RequestTeamUserInput): ResponseUser
|
|
1704
|
+
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
1705
|
+
revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
1706
|
+
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
1707
|
+
createRole(input: RequestCreateRoleInput): ResponseRole
|
|
1708
|
+
updateRole(input: RequestTeamRoleInput): ResponseRole
|
|
1709
|
+
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
|
1710
|
+
createPermission(input: RequestCreatePermissionInput): ResponsePermission
|
|
1711
|
+
updatePermission(input: RequestTeamPermissionInput): ResponsePermission
|
|
1712
|
+
deletePermission(input: RequestDeletePermissionInput): GeneralResponse
|
|
1713
|
+
grantPermissionForRole(input: RequestGrantPermissionForRoleInput): GeneralResponse
|
|
1714
|
+
revokePermissionFromRole(input: RequestRevokePermissionFromRoleInput): GeneralResponse
|
|
1715
|
+
updatePermissionsForRole(input: RequestUpdatePermissionsForRoleInput): ResponseRole
|
|
1716
|
+
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
1717
|
+
addBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
1718
|
+
deleteBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
1719
|
+
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
1720
|
+
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
1721
|
+
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
1722
|
+
addDomainAlias(input: RequestAddDomainAliasInput): ResponseRoutingSite
|
|
1723
|
+
deleteDomainAlias(input: RequestDeleteDomainAliasInput): ResponseRoutingSite
|
|
1724
|
+
deleteRoutingSite(input: RequestDeleteRoutingSiteInput): GeneralResponse
|
|
1725
|
+
updateRoutingSite(input: RequestUpdateRoutingSiteInput): ResponseRoutingSite
|
|
1726
|
+
addRoutingRule(input: RequestAddRoutingRuleInput): ResponseRoutingSite
|
|
1727
|
+
updateRoutingRule(input: RequestUpdateRoutingRuleInput): ResponseRoutingSite
|
|
1728
|
+
deleteRoutingRule(input: RequestDeleteRoutingRuleInput): ResponseRoutingSite
|
|
1729
|
+
takeRoutingSnapshot(input: RequestTakeRoutingSnapshotInput): ResponseTakeRoutingSnapshot
|
|
1730
|
+
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
1731
|
+
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
1732
|
+
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
1733
|
+
issueLetsEncryptCert(input: RequestAddLetsEncryptCertInput): ResponseAddLetsEncryptCert
|
|
1734
|
+
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
1735
|
+
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
1736
|
+
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
|
1737
|
+
createWebHook(input: RequestCreateWebHookInput): ResponseCreateWebHook
|
|
1738
|
+
deleteWebHook(input: RequestDeleteWebHookInput): ResponseDeleteWebHook
|
|
1739
|
+
startSession(input: RequestStartSessionInput): ResponseGetSession
|
|
1740
|
+
updateSession(input: RequestUpdateSessionInput): ResponseGetSession
|
|
1741
|
+
endSession(input: RequestEndSessionInput): ResponseGetSession
|
|
1684
1742
|
}
|
|
1685
1743
|
|
|
1686
1744
|
type Query {
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1745
|
+
getBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1746
|
+
getBlockletMetaFromUrl(input: RequestBlockletMetaFromUrlInput): ResponseBlockletMetaFromUrl
|
|
1747
|
+
getBlockletByBundle(input: RequestBlockletBundleInput): ResponseBlockletInfo
|
|
1748
|
+
getBlockletDiff(input: RequestBlockletDiffInput): ResponseBlockletDiff
|
|
1749
|
+
getBlocklets(input: RequestGetBlockletsInput): ResponseGetBlocklets
|
|
1750
|
+
getLatestBlockletVersion(input: RequestLatestBlockletVersionInput): ResponseLatestBlockletVersion
|
|
1751
|
+
getNodeInfo: ResponseGetNodeInfo
|
|
1752
|
+
getNodeEnv: ResponseGetNodeEnv
|
|
1753
|
+
checkNodeVersion: ResponseCheckNodeVersion
|
|
1754
|
+
getDelegationState: ResponseDelegationState
|
|
1755
|
+
getBlockletMeta(input: RequestBlockletInput): ResponseBlockletMeta
|
|
1756
|
+
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
|
1757
|
+
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
|
1758
|
+
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
|
1759
|
+
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
|
1760
|
+
getRoutingProviders: ResponseGetRoutingProviders
|
|
1761
|
+
getServices: ResponseGetServices
|
|
1762
|
+
getCertificates: ResponseGetCertificates
|
|
1763
|
+
checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
|
|
1764
|
+
findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
|
|
1765
|
+
getAccessKeys: ResponseAccessKeys
|
|
1766
|
+
getWebHooks: ResponseWebHooks
|
|
1767
|
+
getWebhookSenders: ResponseSenderList
|
|
1768
|
+
sendTestMessage(input: RequestSendMsgInput): ResponseSendMsg
|
|
1769
|
+
getSession(input: RequestGetSessionInput): ResponseGetSession
|
|
1770
|
+
getRoles(input: TeamInput): ResponseRoles
|
|
1771
|
+
getPermissions(input: TeamInput): ResponsePermissions
|
|
1772
|
+
getInvitations(input: TeamInput): ResponseGetInvitations
|
|
1773
|
+
getUsers(input: RequestUsersInput): ResponseUsers
|
|
1774
|
+
getUser(input: RequestTeamUserInput): ResponseUser
|
|
1775
|
+
getUsersCountPerRole(input: TeamInput): ResponseGetUsersCountPerRole
|
|
1776
|
+
getOwner(input: TeamInput): ResponseUser
|
|
1777
|
+
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
1778
|
+
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
1779
|
+
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
1721
1780
|
}
|
|
1722
|
-
|