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