@abtnode/schema 1.16.31 → 1.16.32-beta-04a5da00
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 +1638 -1634
- package/lib/schema.graphqls +4 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -16,2722 +16,2726 @@ scalar Uint32
|
|
|
16
16
|
scalar Uint64
|
|
17
17
|
|
|
18
18
|
input AutoBackupInput {
|
|
19
|
-
|
|
19
|
+
enabled: Boolean
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
input AutoCheckUpdateInput {
|
|
23
|
-
|
|
23
|
+
enabled: Boolean
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
input BlockletStoreInput {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
name: String
|
|
28
|
+
description: String
|
|
29
|
+
url: String
|
|
30
|
+
logoUrl: String
|
|
31
|
+
maintainer: String
|
|
32
|
+
cdnUrl: String
|
|
33
|
+
protected: Boolean
|
|
34
|
+
id: String
|
|
35
|
+
scope: String
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
input ConfigEntryInput {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
key: String
|
|
40
|
+
value: String
|
|
41
|
+
required: Boolean
|
|
42
|
+
description: String
|
|
43
|
+
validation: String
|
|
44
|
+
secure: Boolean
|
|
45
|
+
custom: Boolean
|
|
46
|
+
shared: Boolean
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
input ConfigNavigationInput {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
50
|
+
id: String
|
|
51
|
+
title: String
|
|
52
|
+
link: String
|
|
53
|
+
icon: String
|
|
54
|
+
section: String
|
|
55
|
+
component: String
|
|
56
|
+
parent: String
|
|
57
|
+
role: String
|
|
58
|
+
visible: Boolean
|
|
59
|
+
from: String
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
input ConnectedAccountInput {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
provider: String
|
|
64
|
+
did: String
|
|
65
|
+
pk: String
|
|
66
|
+
id: String
|
|
67
|
+
lastLoginAt: Uint32
|
|
68
|
+
userInfo: ConnectedAccountInfoInput
|
|
69
|
+
extra: Any
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
input ConnectedAccountInfoInput {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
73
|
+
name: String
|
|
74
|
+
picture: String
|
|
75
|
+
email: String
|
|
76
|
+
emailVerified: Boolean
|
|
77
|
+
sub: String
|
|
78
|
+
extraData: Any
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
input DownloadTokenInput {
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
did: String
|
|
83
|
+
token: String
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
input HashFileInput {
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
file: String
|
|
88
|
+
hash: String
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
input InviteSettingsInput {
|
|
92
|
-
|
|
92
|
+
enabled: Boolean
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
input IssuerInput {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
id: String
|
|
97
|
+
name: String
|
|
98
|
+
pk: String
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
input NodeInfoInput {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
102
|
+
name: String
|
|
103
|
+
description: String
|
|
104
|
+
autoUpgrade: Boolean
|
|
105
|
+
enableWelcomePage: Boolean
|
|
106
|
+
registerUrl: String
|
|
107
|
+
webWalletUrl: String
|
|
108
|
+
blockletRegistryList: [BlockletStoreInput!]
|
|
109
|
+
diskAlertThreshold: Uint32
|
|
110
|
+
enableBetaRelease: Boolean
|
|
111
|
+
nftDomainUrl: String
|
|
112
|
+
enableFileSystemIsolation: Boolean
|
|
113
|
+
enableDocker: Boolean
|
|
114
|
+
isDockerInstalled: Boolean
|
|
113
115
|
}
|
|
114
116
|
|
|
115
117
|
input PagingInput {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
total: Uint32
|
|
119
|
+
pageSize: Uint32
|
|
120
|
+
pageCount: Uint32
|
|
121
|
+
page: Uint32
|
|
120
122
|
}
|
|
121
123
|
|
|
122
124
|
input PassportInput {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
125
|
+
id: String
|
|
126
|
+
name: String
|
|
127
|
+
title: String
|
|
128
|
+
issuer: IssuerInput
|
|
129
|
+
type: [String!]
|
|
130
|
+
issuanceDate: Uint32
|
|
131
|
+
expirationDate: Uint32
|
|
132
|
+
status: String
|
|
133
|
+
role: String
|
|
134
|
+
lastLoginAt: Uint32
|
|
133
135
|
}
|
|
134
136
|
|
|
135
137
|
input PermissionInput {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
138
|
+
name: String
|
|
139
|
+
description: String
|
|
140
|
+
isProtected: Boolean
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
input RequestAddBlockletSpaceGatewayInput {
|
|
142
|
-
|
|
143
|
-
|
|
144
|
+
did: String
|
|
145
|
+
spaceGateway: SpaceGatewayInput
|
|
144
146
|
}
|
|
145
147
|
|
|
146
148
|
input RequestAddBlockletStoreInput {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
149
|
+
teamDid: String
|
|
150
|
+
url: String
|
|
151
|
+
scope: String
|
|
150
152
|
}
|
|
151
153
|
|
|
152
154
|
input RequestAddDomainAliasInput {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
155
|
+
id: String
|
|
156
|
+
domainAlias: String
|
|
157
|
+
force: Boolean
|
|
158
|
+
teamDid: String
|
|
159
|
+
type: String
|
|
160
|
+
nftDid: String
|
|
161
|
+
chainHost: String
|
|
162
|
+
inBlockletSetup: Boolean
|
|
161
163
|
}
|
|
162
164
|
|
|
163
165
|
input RequestAddLetsEncryptCertInput {
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
domain: String
|
|
167
|
+
did: String
|
|
168
|
+
siteId: String
|
|
169
|
+
inBlockletSetup: Boolean
|
|
168
170
|
}
|
|
169
171
|
|
|
170
172
|
input RequestAddNginxHttpsCertInput {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
173
|
+
name: String
|
|
174
|
+
privateKey: String
|
|
175
|
+
certificate: String
|
|
174
176
|
}
|
|
175
177
|
|
|
176
178
|
input RequestAddRoutingRuleInput {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
179
|
+
id: String
|
|
180
|
+
rule: RoutingRuleInput
|
|
181
|
+
teamDid: String
|
|
180
182
|
}
|
|
181
183
|
|
|
182
184
|
input RequestAddRoutingSiteInput {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
185
|
+
domain: String
|
|
186
|
+
type: String
|
|
187
|
+
rules: [RoutingRuleInput!]
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
input RequestAuditFederatedLoginInput {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
191
|
+
did: String
|
|
192
|
+
memberPid: String
|
|
193
|
+
status: String
|
|
192
194
|
}
|
|
193
195
|
|
|
194
196
|
input RequestBackupBlockletInput {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
+
appDid: String
|
|
198
|
+
to: BackupTo
|
|
197
199
|
}
|
|
198
200
|
|
|
199
201
|
input RequestBlockletInput {
|
|
200
|
-
|
|
202
|
+
did: String
|
|
201
203
|
}
|
|
202
204
|
|
|
203
205
|
input RequestBlockletDetailInput {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
206
|
+
did: String
|
|
207
|
+
attachDiskInfo: Boolean
|
|
208
|
+
attachRuntimeInfo: Boolean
|
|
209
|
+
getOptionalComponents: Boolean
|
|
208
210
|
}
|
|
209
211
|
|
|
210
212
|
input RequestBlockletDiffInput {
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
213
|
+
did: String
|
|
214
|
+
hashFiles: [HashFileInput!]
|
|
215
|
+
rootDid: String
|
|
214
216
|
}
|
|
215
217
|
|
|
216
218
|
input RequestBlockletMetaInput {
|
|
217
|
-
|
|
218
|
-
|
|
219
|
+
did: String
|
|
220
|
+
storeUrl: String
|
|
219
221
|
}
|
|
220
222
|
|
|
221
223
|
input RequestBlockletMetaFromUrlInput {
|
|
222
|
-
|
|
223
|
-
|
|
224
|
+
url: String
|
|
225
|
+
checkPrice: Boolean
|
|
224
226
|
}
|
|
225
227
|
|
|
226
228
|
input RequestBlockletRuntimeHistoryInput {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
+
did: String
|
|
230
|
+
hours: Uint32
|
|
229
231
|
}
|
|
230
232
|
|
|
231
233
|
input RequestCheckDomainsInput {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
+
domains: [String!]
|
|
235
|
+
did: String
|
|
234
236
|
}
|
|
235
237
|
|
|
236
238
|
input RequestClearCacheInput {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
+
teamDid: String
|
|
240
|
+
pattern: String
|
|
239
241
|
}
|
|
240
242
|
|
|
241
243
|
input RequestComponentsInput {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
+
did: String
|
|
245
|
+
componentDids: [String!]
|
|
244
246
|
}
|
|
245
247
|
|
|
246
248
|
input RequestConfigBlockletInput {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
+
did: [String!]
|
|
250
|
+
configs: [ConfigEntryInput!]
|
|
249
251
|
}
|
|
250
252
|
|
|
251
253
|
input RequestConfigFederatedInput {
|
|
252
|
-
|
|
253
|
-
|
|
254
|
+
did: String
|
|
255
|
+
autoLogin: Boolean
|
|
254
256
|
}
|
|
255
257
|
|
|
256
258
|
input RequestConfigNavigationsInput {
|
|
257
|
-
|
|
258
|
-
|
|
259
|
+
did: String
|
|
260
|
+
navigations: [ConfigNavigationInput!]
|
|
259
261
|
}
|
|
260
262
|
|
|
261
263
|
input RequestConfigNotificationInput {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
+
did: String
|
|
265
|
+
notification: String
|
|
264
266
|
}
|
|
265
267
|
|
|
266
268
|
input RequestConfigOAuthInput {
|
|
267
|
-
|
|
268
|
-
|
|
269
|
+
did: String
|
|
270
|
+
oauth: String
|
|
269
271
|
}
|
|
270
272
|
|
|
271
273
|
input RequestConfigPassportIssuanceInput {
|
|
272
|
-
|
|
273
|
-
|
|
274
|
+
teamDid: String
|
|
275
|
+
enable: Boolean
|
|
274
276
|
}
|
|
275
277
|
|
|
276
278
|
input RequestConfigPublicToStoreInput {
|
|
277
|
-
|
|
278
|
-
|
|
279
|
+
did: String
|
|
280
|
+
publicToStore: Boolean
|
|
279
281
|
}
|
|
280
282
|
|
|
281
283
|
input RequestConfigTrustedFactoriesInput {
|
|
282
|
-
|
|
283
|
-
|
|
284
|
+
teamDid: String
|
|
285
|
+
trustedFactories: [TrustedFactoryInput!]
|
|
284
286
|
}
|
|
285
287
|
|
|
286
288
|
input RequestConfigTrustedPassportsInput {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
+
teamDid: String
|
|
290
|
+
trustedPassports: [TrustedPassportInput!]
|
|
289
291
|
}
|
|
290
292
|
|
|
291
293
|
input RequestConnectByStudioInput {
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
294
|
+
did: String
|
|
295
|
+
storeId: String
|
|
296
|
+
storeUrl: String
|
|
297
|
+
storeName: String
|
|
298
|
+
blockletTitle: String
|
|
299
|
+
type: String
|
|
300
|
+
tenantScope: String
|
|
301
|
+
componentDid: String
|
|
302
|
+
messageId: String
|
|
301
303
|
}
|
|
302
304
|
|
|
303
305
|
input RequestConnectToStoreInput {
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
306
|
+
did: String
|
|
307
|
+
storeId: String
|
|
308
|
+
storeUrl: String
|
|
309
|
+
storeName: String
|
|
310
|
+
projectId: String
|
|
309
311
|
}
|
|
310
312
|
|
|
311
313
|
input RequestCreateAccessKeyInput {
|
|
312
|
-
|
|
313
|
-
|
|
314
|
+
remark: String
|
|
315
|
+
passport: String
|
|
314
316
|
}
|
|
315
317
|
|
|
316
318
|
input RequestCreateInvitationInput {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
319
|
+
teamDid: String
|
|
320
|
+
role: String
|
|
321
|
+
remark: String
|
|
322
|
+
sourceAppPid: String
|
|
321
323
|
}
|
|
322
324
|
|
|
323
325
|
input RequestCreatePassportIssuanceInput {
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
326
|
+
teamDid: String
|
|
327
|
+
ownerDid: String
|
|
328
|
+
name: String
|
|
327
329
|
}
|
|
328
330
|
|
|
329
331
|
input RequestCreatePermissionInput {
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
332
|
+
teamDid: String
|
|
333
|
+
name: String
|
|
334
|
+
description: String
|
|
333
335
|
}
|
|
334
336
|
|
|
335
337
|
input RequestCreateProjectInput {
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
338
|
+
did: String
|
|
339
|
+
type: PublishType
|
|
340
|
+
blockletDid: String
|
|
341
|
+
blockletTitle: String
|
|
342
|
+
componentDid: String
|
|
343
|
+
tenantScope: String
|
|
342
344
|
}
|
|
343
345
|
|
|
344
346
|
input RequestCreateReleaseInput {
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
347
|
+
did: String
|
|
348
|
+
projectId: String
|
|
349
|
+
releaseId: String
|
|
350
|
+
blockletDid: String
|
|
351
|
+
blockletVersion: String
|
|
352
|
+
blockletTitle: String
|
|
353
|
+
blockletDescription: String
|
|
354
|
+
blockletLogo: String
|
|
355
|
+
blockletIntroduction: String
|
|
356
|
+
blockletScreenshots: [String!]
|
|
357
|
+
note: String
|
|
358
|
+
status: String
|
|
359
|
+
blockletComponents: [String!]
|
|
360
|
+
uploadedResource: String
|
|
359
361
|
}
|
|
360
362
|
|
|
361
363
|
input RequestCreateRoleInput {
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
364
|
+
teamDid: String
|
|
365
|
+
name: String
|
|
366
|
+
title: String
|
|
367
|
+
description: String
|
|
368
|
+
childName: String
|
|
369
|
+
permissions: [String!]
|
|
370
|
+
extra: String
|
|
369
371
|
}
|
|
370
372
|
|
|
371
373
|
input RequestCreateTransferNodeInvitationInput {
|
|
372
|
-
|
|
373
|
-
|
|
374
|
+
teamDid: String
|
|
375
|
+
remark: String
|
|
374
376
|
}
|
|
375
377
|
|
|
376
378
|
input RequestCreateWebHookInput {
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
379
|
+
type: SenderType
|
|
380
|
+
title: String
|
|
381
|
+
description: String
|
|
382
|
+
params: [WebHookParamInput!]
|
|
381
383
|
}
|
|
382
384
|
|
|
383
385
|
input RequestDeleteAccessKeyInput {
|
|
384
|
-
|
|
386
|
+
accessKeyId: String
|
|
385
387
|
}
|
|
386
388
|
|
|
387
389
|
input RequestDeleteBlockletInput {
|
|
388
|
-
|
|
389
|
-
|
|
390
|
+
did: String
|
|
391
|
+
keepData: Boolean
|
|
390
392
|
}
|
|
391
393
|
|
|
392
394
|
input RequestDeleteBlockletSpaceGatewayInput {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
+
did: String
|
|
396
|
+
spaceGatewayDid: String
|
|
395
397
|
}
|
|
396
398
|
|
|
397
399
|
input RequestDeleteBlockletStoreInput {
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
400
|
+
teamDid: String
|
|
401
|
+
url: String
|
|
402
|
+
projectId: String
|
|
403
|
+
scope: String
|
|
402
404
|
}
|
|
403
405
|
|
|
404
406
|
input RequestDeleteComponentInput {
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
407
|
+
did: String
|
|
408
|
+
rootDid: String
|
|
409
|
+
keepData: Boolean
|
|
408
410
|
}
|
|
409
411
|
|
|
410
412
|
input RequestDeleteDomainAliasInput {
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
413
|
+
id: String
|
|
414
|
+
domainAlias: String
|
|
415
|
+
teamDid: String
|
|
414
416
|
}
|
|
415
417
|
|
|
416
418
|
input RequestDeleteInvitationInput {
|
|
417
|
-
|
|
418
|
-
|
|
419
|
+
teamDid: String
|
|
420
|
+
inviteId: String
|
|
419
421
|
}
|
|
420
422
|
|
|
421
423
|
input RequestDeleteNginxHttpsCertInput {
|
|
422
|
-
|
|
424
|
+
id: String
|
|
423
425
|
}
|
|
424
426
|
|
|
425
427
|
input RequestDeletePermissionInput {
|
|
426
|
-
|
|
427
|
-
|
|
428
|
+
teamDid: String
|
|
429
|
+
name: String
|
|
428
430
|
}
|
|
429
431
|
|
|
430
432
|
input RequestDeleteRoleInput {
|
|
431
|
-
|
|
432
|
-
|
|
433
|
+
teamDid: String
|
|
434
|
+
name: String
|
|
433
435
|
}
|
|
434
436
|
|
|
435
437
|
input RequestDeleteRoutingRuleInput {
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
438
|
+
id: String
|
|
439
|
+
ruleId: String
|
|
440
|
+
teamDid: String
|
|
439
441
|
}
|
|
440
442
|
|
|
441
443
|
input RequestDeleteRoutingSiteInput {
|
|
442
|
-
|
|
444
|
+
id: String
|
|
443
445
|
}
|
|
444
446
|
|
|
445
447
|
input RequestDeleteTeamSessionInput {
|
|
446
|
-
|
|
447
|
-
|
|
448
|
+
teamDid: String
|
|
449
|
+
sessionId: String
|
|
448
450
|
}
|
|
449
451
|
|
|
450
452
|
input RequestDeleteWebHookInput {
|
|
451
|
-
|
|
453
|
+
id: String
|
|
452
454
|
}
|
|
453
455
|
|
|
454
456
|
input RequestDisbandFederatedLoginInput {
|
|
455
|
-
|
|
457
|
+
did: String
|
|
456
458
|
}
|
|
457
459
|
|
|
458
460
|
input RequestDisconnectFromStoreInput {
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
461
|
+
did: String
|
|
462
|
+
storeId: String
|
|
463
|
+
projectId: String
|
|
464
|
+
storeScope: String
|
|
463
465
|
}
|
|
464
466
|
|
|
465
467
|
input RequestEndSessionInput {
|
|
466
|
-
|
|
468
|
+
id: String
|
|
467
469
|
}
|
|
468
470
|
|
|
469
471
|
input RequestFindCertificateByDomainInput {
|
|
470
|
-
|
|
471
|
-
|
|
472
|
+
domain: String
|
|
473
|
+
did: String
|
|
472
474
|
}
|
|
473
475
|
|
|
474
476
|
input RequestGatewayInput {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
+
requestLimit: RequestLimitInput
|
|
478
|
+
cacheEnabled: Boolean
|
|
477
479
|
}
|
|
478
480
|
|
|
479
481
|
input RequestGetAuditLogsInput {
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
482
|
+
paging: PagingInput
|
|
483
|
+
scope: String
|
|
484
|
+
category: String
|
|
483
485
|
}
|
|
484
486
|
|
|
485
487
|
input RequestGetBlockletBackupsInput {
|
|
486
|
-
|
|
488
|
+
did: String
|
|
487
489
|
}
|
|
488
490
|
|
|
489
491
|
input RequestGetBlockletNotificationsInput {
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
492
|
+
receiver: String
|
|
493
|
+
sender: String
|
|
494
|
+
read: Boolean
|
|
495
|
+
paging: PagingInput
|
|
496
|
+
teamDid: String
|
|
495
497
|
}
|
|
496
498
|
|
|
497
499
|
input RequestGetBlockletsInput {
|
|
498
|
-
|
|
500
|
+
useCache: Boolean
|
|
499
501
|
}
|
|
500
502
|
|
|
501
503
|
input RequestGetDynamicComponentsInput {
|
|
502
|
-
|
|
504
|
+
url: String
|
|
503
505
|
}
|
|
504
506
|
|
|
505
507
|
input RequestGetLauncherSessionInput {
|
|
506
|
-
|
|
507
|
-
|
|
508
|
+
launcherSessionId: String
|
|
509
|
+
launcherUrl: String
|
|
508
510
|
}
|
|
509
511
|
|
|
510
512
|
input RequestGetNotificationsInput {
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
513
|
+
receiver: String
|
|
514
|
+
sender: String
|
|
515
|
+
read: Boolean
|
|
516
|
+
paging: PagingInput
|
|
515
517
|
}
|
|
516
518
|
|
|
517
519
|
input RequestGetPassportIssuancesInput {
|
|
518
|
-
|
|
519
|
-
|
|
520
|
+
teamDid: String
|
|
521
|
+
ownerDid: String
|
|
520
522
|
}
|
|
521
523
|
|
|
522
524
|
input RequestGetProjectsInput {
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
525
|
+
did: String
|
|
526
|
+
paging: PagingInput
|
|
527
|
+
componentDid: String
|
|
528
|
+
tenantScope: String
|
|
527
529
|
}
|
|
528
530
|
|
|
529
531
|
input RequestGetReleasesInput {
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
532
|
+
did: String
|
|
533
|
+
projectId: String
|
|
534
|
+
paging: PagingInput
|
|
533
535
|
}
|
|
534
536
|
|
|
535
537
|
input RequestGetRoutingSitesInput {
|
|
536
|
-
|
|
538
|
+
snapshotHash: String
|
|
537
539
|
}
|
|
538
540
|
|
|
539
541
|
input RequestGetRoutingSnapshotsInput {
|
|
540
|
-
|
|
542
|
+
limit: Int32
|
|
541
543
|
}
|
|
542
544
|
|
|
543
545
|
input RequestGetSelectedResourcesInput {
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
546
|
+
did: String
|
|
547
|
+
projectId: String
|
|
548
|
+
releaseId: String
|
|
549
|
+
componentDid: String
|
|
548
550
|
}
|
|
549
551
|
|
|
550
552
|
input RequestGetSessionInput {
|
|
551
|
-
|
|
553
|
+
id: String
|
|
552
554
|
}
|
|
553
555
|
|
|
554
556
|
input RequestGetSnapshotSitesInput {
|
|
555
|
-
|
|
557
|
+
hash: String
|
|
556
558
|
}
|
|
557
559
|
|
|
558
560
|
input RequestGetTrafficInsightsInput {
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
561
|
+
did: String
|
|
562
|
+
startDate: String
|
|
563
|
+
endDate: String
|
|
564
|
+
paging: PagingInput
|
|
563
565
|
}
|
|
564
566
|
|
|
565
567
|
input RequestGrantPermissionForRoleInput {
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
568
|
+
teamDid: String
|
|
569
|
+
roleName: String
|
|
570
|
+
grantName: String
|
|
569
571
|
}
|
|
570
572
|
|
|
571
573
|
input RequestHasPermissionInput {
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
574
|
+
teamDid: String
|
|
575
|
+
role: String
|
|
576
|
+
permission: String
|
|
575
577
|
}
|
|
576
578
|
|
|
577
579
|
input RequestInstallComponentInput {
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
580
|
+
rootDid: String
|
|
581
|
+
mountPoint: String
|
|
582
|
+
url: String
|
|
583
|
+
file: Upload
|
|
584
|
+
did: String
|
|
585
|
+
diffVersion: String
|
|
586
|
+
deleteSet: [String!]
|
|
587
|
+
name: String
|
|
588
|
+
title: String
|
|
589
|
+
configs: [ConfigEntryInput!]
|
|
590
|
+
downloadTokenList: [DownloadTokenInput!]
|
|
591
|
+
skipNavigation: Boolean
|
|
592
|
+
onlyRequired: Boolean
|
|
591
593
|
}
|
|
592
594
|
|
|
593
595
|
input RequestIsDidDomainInput {
|
|
594
|
-
|
|
596
|
+
domain: String
|
|
595
597
|
}
|
|
596
598
|
|
|
597
599
|
input RequestIssuePassportToUserInput {
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
600
|
+
teamDid: String
|
|
601
|
+
userDid: String
|
|
602
|
+
role: String
|
|
601
603
|
}
|
|
602
604
|
|
|
603
605
|
input RequestJoinFederatedLoginInput {
|
|
604
|
-
|
|
605
|
-
|
|
606
|
+
did: String
|
|
607
|
+
appUrl: String
|
|
606
608
|
}
|
|
607
609
|
|
|
608
610
|
input RequestLimitInput {
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
611
|
+
enabled: Boolean
|
|
612
|
+
rate: Uint32
|
|
613
|
+
ipHeader: String
|
|
612
614
|
}
|
|
613
615
|
|
|
614
616
|
input RequestLogoutUserInput {
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
617
|
+
teamDid: String
|
|
618
|
+
appPid: String
|
|
619
|
+
userDid: String
|
|
620
|
+
visitorId: String
|
|
619
621
|
}
|
|
620
622
|
|
|
621
623
|
input RequestMigrateApplicationToStructV2Input {
|
|
622
|
-
|
|
623
|
-
|
|
624
|
+
did: String
|
|
625
|
+
appSk: String
|
|
624
626
|
}
|
|
625
627
|
|
|
626
628
|
input RequestNodeRoutingInput {
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
629
|
+
provider: String
|
|
630
|
+
snapshotHash: String
|
|
631
|
+
forceRepopulate: Boolean
|
|
630
632
|
}
|
|
631
633
|
|
|
632
634
|
input RequestNodeRuntimeHistoryInput {
|
|
633
|
-
|
|
635
|
+
hours: Uint32
|
|
634
636
|
}
|
|
635
637
|
|
|
636
638
|
input RequestProjectInput {
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
639
|
+
did: String
|
|
640
|
+
projectId: String
|
|
641
|
+
messageId: String
|
|
640
642
|
}
|
|
641
643
|
|
|
642
644
|
input RequestPublishToStoreInput {
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
645
|
+
did: String
|
|
646
|
+
projectId: String
|
|
647
|
+
releaseId: String
|
|
648
|
+
type: String
|
|
649
|
+
storeId: String
|
|
648
650
|
}
|
|
649
651
|
|
|
650
652
|
input RequestQuitFederatedLoginInput {
|
|
651
|
-
|
|
653
|
+
did: String
|
|
652
654
|
}
|
|
653
655
|
|
|
654
656
|
input RequestReadBlockletNotificationsInput {
|
|
655
|
-
|
|
656
|
-
|
|
657
|
+
id: String
|
|
658
|
+
teamDid: String
|
|
657
659
|
}
|
|
658
660
|
|
|
659
661
|
input RequestReadNotificationsInput {
|
|
660
|
-
|
|
662
|
+
id: String
|
|
661
663
|
}
|
|
662
664
|
|
|
663
665
|
input RequestReleaseInput {
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
666
|
+
did: String
|
|
667
|
+
projectId: String
|
|
668
|
+
releaseId: String
|
|
667
669
|
}
|
|
668
670
|
|
|
669
671
|
input RequestResetNodeInput {
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
672
|
+
owner: Boolean
|
|
673
|
+
blocklets: Boolean
|
|
674
|
+
webhooks: Boolean
|
|
675
|
+
certificates: Boolean
|
|
676
|
+
accessKeys: Boolean
|
|
677
|
+
blockletExtras: Boolean
|
|
678
|
+
routingRules: Boolean
|
|
679
|
+
users: Boolean
|
|
680
|
+
invitations: Boolean
|
|
679
681
|
}
|
|
680
682
|
|
|
681
683
|
input RequestRestoreBlockletInput {
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
684
|
+
endpoint: String
|
|
685
|
+
appDid: String
|
|
686
|
+
delegation: String
|
|
687
|
+
password: Bytes
|
|
688
|
+
wallet: Any
|
|
689
|
+
from: BackupTo
|
|
690
|
+
appPid: String
|
|
689
691
|
}
|
|
690
692
|
|
|
691
693
|
input RequestRevokePermissionFromRoleInput {
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
694
|
+
teamDid: String
|
|
695
|
+
roleName: String
|
|
696
|
+
grantName: String
|
|
695
697
|
}
|
|
696
698
|
|
|
697
699
|
input RequestRevokeUserPassportInput {
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
700
|
+
teamDid: String
|
|
701
|
+
userDid: String
|
|
702
|
+
passportId: String
|
|
701
703
|
}
|
|
702
704
|
|
|
703
705
|
input RequestSendEmailInput {
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
706
|
+
did: String
|
|
707
|
+
receiver: String
|
|
708
|
+
email: String
|
|
707
709
|
}
|
|
708
710
|
|
|
709
711
|
input RequestSendMsgInput {
|
|
710
|
-
|
|
711
|
-
|
|
712
|
+
webhookId: String
|
|
713
|
+
message: String
|
|
712
714
|
}
|
|
713
715
|
|
|
714
716
|
input RequestSendPushInput {
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
717
|
+
did: String
|
|
718
|
+
receiver: String
|
|
719
|
+
notification: String
|
|
718
720
|
}
|
|
719
721
|
|
|
720
722
|
input RequestStartSessionInput {
|
|
721
|
-
|
|
723
|
+
data: String
|
|
722
724
|
}
|
|
723
725
|
|
|
724
726
|
input RequestSwitchProfileInput {
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
727
|
+
teamDid: String
|
|
728
|
+
userDid: String
|
|
729
|
+
profile: UserProfileInput
|
|
728
730
|
}
|
|
729
731
|
|
|
730
732
|
input RequestTagInput {
|
|
731
|
-
|
|
732
|
-
|
|
733
|
+
teamDid: String
|
|
734
|
+
tag: TagInput
|
|
733
735
|
}
|
|
734
736
|
|
|
735
737
|
input RequestTagsInput {
|
|
736
|
-
|
|
737
|
-
|
|
738
|
+
teamDid: String
|
|
739
|
+
paging: PagingInput
|
|
738
740
|
}
|
|
739
741
|
|
|
740
742
|
input RequestTakeRoutingSnapshotInput {
|
|
741
|
-
|
|
742
|
-
|
|
743
|
+
dryRun: Boolean
|
|
744
|
+
message: String
|
|
743
745
|
}
|
|
744
746
|
|
|
745
747
|
input RequestTeamPermissionInput {
|
|
746
|
-
|
|
747
|
-
|
|
748
|
+
teamDid: String
|
|
749
|
+
permission: PermissionInput
|
|
748
750
|
}
|
|
749
751
|
|
|
750
752
|
input RequestTeamRoleInput {
|
|
751
|
-
|
|
752
|
-
|
|
753
|
+
teamDid: String
|
|
754
|
+
role: RoleUpdateInput
|
|
753
755
|
}
|
|
754
756
|
|
|
755
757
|
input RequestTeamUserInput {
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
758
|
+
teamDid: String
|
|
759
|
+
user: UserInfoInput
|
|
760
|
+
options: RequestTeamUserOptionsInput
|
|
759
761
|
}
|
|
760
762
|
|
|
761
763
|
input RequestTeamUserOptionsInput {
|
|
762
|
-
|
|
763
|
-
|
|
764
|
+
enableConnectedAccount: Boolean
|
|
765
|
+
includeTags: Boolean
|
|
764
766
|
}
|
|
765
767
|
|
|
766
768
|
input RequestUpdateAccessKeyInput {
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
769
|
+
accessKeyId: String
|
|
770
|
+
remark: String
|
|
771
|
+
passport: String
|
|
770
772
|
}
|
|
771
773
|
|
|
772
774
|
input RequestUpdateAppSessionConfigInput {
|
|
773
|
-
|
|
774
|
-
|
|
775
|
+
did: String
|
|
776
|
+
config: SessionConfigInput
|
|
775
777
|
}
|
|
776
778
|
|
|
777
779
|
input RequestUpdateAutoBackupInput {
|
|
778
|
-
|
|
779
|
-
|
|
780
|
+
did: String
|
|
781
|
+
autoBackup: AutoBackupInput
|
|
780
782
|
}
|
|
781
783
|
|
|
782
784
|
input RequestUpdateAutoCheckUpdateInput {
|
|
783
|
-
|
|
784
|
-
|
|
785
|
+
did: String
|
|
786
|
+
autoCheckUpdate: AutoCheckUpdateInput
|
|
785
787
|
}
|
|
786
788
|
|
|
787
789
|
input RequestUpdateBlockletSpaceGatewayInput {
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
790
|
+
did: String
|
|
791
|
+
where: SpaceGatewayInput
|
|
792
|
+
spaceGateway: SpaceGatewayInput
|
|
791
793
|
}
|
|
792
794
|
|
|
793
795
|
input RequestUpdateComponentMountPointInput {
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
796
|
+
did: String
|
|
797
|
+
rootDid: String
|
|
798
|
+
mountPoint: String
|
|
797
799
|
}
|
|
798
800
|
|
|
799
801
|
input RequestUpdateComponentTitleInput {
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
802
|
+
did: String
|
|
803
|
+
rootDid: String
|
|
804
|
+
title: String
|
|
803
805
|
}
|
|
804
806
|
|
|
805
807
|
input RequestUpdateComponentsInput {
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
808
|
+
updateId: String
|
|
809
|
+
rootDid: String
|
|
810
|
+
selectedComponents: [String!]
|
|
809
811
|
}
|
|
810
812
|
|
|
811
813
|
input RequestUpdateInviteSettingsInput {
|
|
812
|
-
|
|
813
|
-
|
|
814
|
+
did: String
|
|
815
|
+
invite: InviteSettingsInput
|
|
814
816
|
}
|
|
815
817
|
|
|
816
818
|
input RequestUpdateNginxHttpsCertInput {
|
|
817
|
-
|
|
818
|
-
|
|
819
|
+
id: String
|
|
820
|
+
name: String
|
|
819
821
|
}
|
|
820
822
|
|
|
821
823
|
input RequestUpdatePermissionsForRoleInput {
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
824
|
+
teamDid: String
|
|
825
|
+
roleName: String
|
|
826
|
+
grantNames: [String!]
|
|
825
827
|
}
|
|
826
828
|
|
|
827
829
|
input RequestUpdateProjectInput {
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
830
|
+
did: String
|
|
831
|
+
projectId: String
|
|
832
|
+
blockletTitle: String
|
|
833
|
+
blockletDescription: String
|
|
834
|
+
blockletIntroduction: String
|
|
835
|
+
autoUpload: Boolean
|
|
836
|
+
possibleSameStore: Boolean
|
|
835
837
|
}
|
|
836
838
|
|
|
837
839
|
input RequestUpdateRoutingRuleInput {
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
840
|
+
id: String
|
|
841
|
+
rule: RoutingRuleInput
|
|
842
|
+
teamDid: String
|
|
841
843
|
}
|
|
842
844
|
|
|
843
845
|
input RequestUpdateRoutingSiteInput {
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
846
|
+
id: String
|
|
847
|
+
corsAllowedOrigins: [String!]
|
|
848
|
+
domain: String
|
|
849
|
+
teamDid: String
|
|
848
850
|
}
|
|
849
851
|
|
|
850
852
|
input RequestUpdateSelectedResourcesInput {
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
853
|
+
did: String
|
|
854
|
+
projectId: String
|
|
855
|
+
releaseId: String
|
|
856
|
+
componentDid: String
|
|
857
|
+
resources: [String!]
|
|
856
858
|
}
|
|
857
859
|
|
|
858
860
|
input RequestUpdateSessionInput {
|
|
859
|
-
|
|
860
|
-
|
|
861
|
+
id: String
|
|
862
|
+
data: String
|
|
861
863
|
}
|
|
862
864
|
|
|
863
865
|
input RequestUpdateUserExtraInput {
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
866
|
+
teamDid: String
|
|
867
|
+
did: String
|
|
868
|
+
remark: String
|
|
869
|
+
extra: String
|
|
868
870
|
}
|
|
869
871
|
|
|
870
872
|
input RequestUpdateUserProfileInput {
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
873
|
+
teamDid: String
|
|
874
|
+
did: String
|
|
875
|
+
remark: String
|
|
876
|
+
locale: String
|
|
875
877
|
}
|
|
876
878
|
|
|
877
879
|
input RequestUpdateUserTagsInput {
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
880
|
+
teamDid: String
|
|
881
|
+
did: String
|
|
882
|
+
tags: [Uint32!]
|
|
881
883
|
}
|
|
882
884
|
|
|
883
885
|
input RequestUpdateWhoCanAccessInput {
|
|
884
|
-
|
|
885
|
-
|
|
886
|
+
did: [String!]
|
|
887
|
+
whoCanAccess: String
|
|
886
888
|
}
|
|
887
889
|
|
|
888
890
|
input RequestUsersInput {
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
891
|
+
teamDid: String
|
|
892
|
+
query: UserQueryInput
|
|
893
|
+
sort: UserSortInput
|
|
894
|
+
paging: PagingInput
|
|
895
|
+
dids: [String!]
|
|
894
896
|
}
|
|
895
897
|
|
|
896
898
|
input RequestVersionedBlockletInput {
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
899
|
+
type: String
|
|
900
|
+
did: String
|
|
901
|
+
storeUrl: String
|
|
902
|
+
url: String
|
|
903
|
+
file: Upload
|
|
904
|
+
diffVersion: String
|
|
905
|
+
deleteSet: [String!]
|
|
906
|
+
title: String
|
|
907
|
+
description: String
|
|
908
|
+
startImmediately: Boolean
|
|
909
|
+
downloadTokenList: [DownloadTokenInput!]
|
|
908
910
|
}
|
|
909
911
|
|
|
910
912
|
input RoleUpdateInput {
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
913
|
+
name: String
|
|
914
|
+
title: String
|
|
915
|
+
description: String
|
|
916
|
+
extra: String
|
|
915
917
|
}
|
|
916
918
|
|
|
917
919
|
input RoutingRuleInput {
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
920
|
+
id: String
|
|
921
|
+
from: RoutingRuleFromInput
|
|
922
|
+
to: RoutingRuleToInput
|
|
923
|
+
isProtected: Boolean
|
|
922
924
|
}
|
|
923
925
|
|
|
924
926
|
input RoutingRuleFromInput {
|
|
925
|
-
|
|
926
|
-
|
|
927
|
+
pathPrefix: String
|
|
928
|
+
header: [RoutingRuleHeaderInput!]
|
|
927
929
|
}
|
|
928
930
|
|
|
929
931
|
input RoutingRuleHeaderInput {
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
932
|
+
key: String
|
|
933
|
+
value: String
|
|
934
|
+
type: HeaderMatchType
|
|
933
935
|
}
|
|
934
936
|
|
|
935
937
|
input RoutingRuleResponseInput {
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
938
|
+
status: Uint32
|
|
939
|
+
contentType: String
|
|
940
|
+
body: String
|
|
939
941
|
}
|
|
940
942
|
|
|
941
943
|
input RoutingRuleToInput {
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
944
|
+
port: Uint32
|
|
945
|
+
type: BackendServiceType
|
|
946
|
+
did: String
|
|
947
|
+
url: String
|
|
948
|
+
redirectCode: Int32
|
|
949
|
+
interfaceName: String
|
|
950
|
+
componentId: String
|
|
951
|
+
pageGroup: String
|
|
952
|
+
response: RoutingRuleResponseInput
|
|
951
953
|
}
|
|
952
954
|
|
|
953
955
|
input SessionConfigInput {
|
|
954
|
-
|
|
955
|
-
|
|
956
|
+
cacheTtl: Uint32
|
|
957
|
+
ttl: Uint32
|
|
956
958
|
}
|
|
957
959
|
|
|
958
960
|
input SpaceGatewayInput {
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
961
|
+
name: String
|
|
962
|
+
url: String
|
|
963
|
+
protected: String
|
|
964
|
+
endpoint: String
|
|
965
|
+
did: String
|
|
964
966
|
}
|
|
965
967
|
|
|
966
968
|
input TagInput {
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
969
|
+
id: Uint32
|
|
970
|
+
title: String
|
|
971
|
+
description: String
|
|
972
|
+
color: String
|
|
973
|
+
createdAt: Uint32
|
|
974
|
+
updatedAt: Uint32
|
|
973
975
|
}
|
|
974
976
|
|
|
975
977
|
input TeamInput {
|
|
976
|
-
|
|
978
|
+
teamDid: String
|
|
977
979
|
}
|
|
978
980
|
|
|
979
981
|
input TrustedFactoryInput {
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
982
|
+
holderDid: String
|
|
983
|
+
issuerDid: String
|
|
984
|
+
factoryAddress: String
|
|
985
|
+
remark: String
|
|
986
|
+
passport: TrustedPassportMappingToInput
|
|
985
987
|
}
|
|
986
988
|
|
|
987
989
|
input TrustedPassportInput {
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
990
|
+
issuerDid: String
|
|
991
|
+
remark: String
|
|
992
|
+
mappings: [TrustedPassportMappingInput!]
|
|
991
993
|
}
|
|
992
994
|
|
|
993
995
|
input TrustedPassportMappingInput {
|
|
994
|
-
|
|
995
|
-
|
|
996
|
+
from: TrustedPassportMappingFromInput
|
|
997
|
+
to: TrustedPassportMappingToInput
|
|
996
998
|
}
|
|
997
999
|
|
|
998
1000
|
input TrustedPassportMappingFromInput {
|
|
999
|
-
|
|
1001
|
+
passport: String
|
|
1000
1002
|
}
|
|
1001
1003
|
|
|
1002
1004
|
input TrustedPassportMappingToInput {
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1005
|
+
role: String
|
|
1006
|
+
ttl: String
|
|
1007
|
+
ttlPolicy: String
|
|
1006
1008
|
}
|
|
1007
1009
|
|
|
1008
1010
|
input UserInfoInput {
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1011
|
+
did: String
|
|
1012
|
+
pk: String
|
|
1013
|
+
role: String
|
|
1014
|
+
avatar: String
|
|
1015
|
+
fullName: String
|
|
1016
|
+
email: String
|
|
1017
|
+
approved: Boolean
|
|
1018
|
+
createdAt: Uint32
|
|
1019
|
+
updatedAt: Uint32
|
|
1020
|
+
locale: String
|
|
1021
|
+
passports: [PassportInput!]
|
|
1022
|
+
firstLoginAt: Uint32
|
|
1023
|
+
lastLoginAt: Uint32
|
|
1024
|
+
remark: String
|
|
1025
|
+
lastLoginIp: String
|
|
1026
|
+
sourceProvider: String
|
|
1027
|
+
sourceAppPid: String
|
|
1028
|
+
connectedAccounts: [ConnectedAccountInput!]
|
|
1029
|
+
extra: Any
|
|
1030
|
+
tags: [TagInput!]
|
|
1031
|
+
didSpace: Any
|
|
1032
|
+
userSessions: [UserSessionInput!]
|
|
1033
|
+
url: String
|
|
1034
|
+
phone: String
|
|
1035
|
+
inviter: String
|
|
1036
|
+
generation: Uint32
|
|
1035
1037
|
}
|
|
1036
1038
|
|
|
1037
1039
|
input UserProfileInput {
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1040
|
+
did: String
|
|
1041
|
+
avatar: String
|
|
1042
|
+
fullName: String
|
|
1043
|
+
email: String
|
|
1042
1044
|
}
|
|
1043
1045
|
|
|
1044
1046
|
input UserQueryInput {
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1047
|
+
role: String
|
|
1048
|
+
approved: Boolean
|
|
1049
|
+
search: String
|
|
1050
|
+
connectedDid: String
|
|
1051
|
+
tags: [Uint32!]
|
|
1052
|
+
includeTags: Boolean
|
|
1053
|
+
includeUserSessions: Boolean
|
|
1054
|
+
inviter: String
|
|
1055
|
+
invitee: String
|
|
1056
|
+
generation: Uint32
|
|
1055
1057
|
}
|
|
1056
1058
|
|
|
1057
1059
|
input UserSessionInput {
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1060
|
+
id: String
|
|
1061
|
+
visitorId: String
|
|
1062
|
+
appPid: String
|
|
1063
|
+
userDid: String
|
|
1064
|
+
ua: String
|
|
1065
|
+
passportId: String
|
|
1066
|
+
status: String
|
|
1067
|
+
lastLoginIp: String
|
|
1068
|
+
extra: Any
|
|
1069
|
+
createdAt: Uint32
|
|
1070
|
+
updatedAt: Uint32
|
|
1069
1071
|
}
|
|
1070
1072
|
|
|
1071
1073
|
input UserSortInput {
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1074
|
+
updatedAt: Uint32
|
|
1075
|
+
createdAt: Uint32
|
|
1076
|
+
lastLoginAt: Uint32
|
|
1075
1077
|
}
|
|
1076
1078
|
|
|
1077
1079
|
input WebHookParamInput {
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1080
|
+
name: String
|
|
1081
|
+
description: String
|
|
1082
|
+
required: Boolean
|
|
1083
|
+
defaultValue: String
|
|
1084
|
+
value: String
|
|
1085
|
+
type: String
|
|
1084
1086
|
}
|
|
1085
1087
|
|
|
1086
1088
|
type AccessKey {
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1089
|
+
accessKeyId: String
|
|
1090
|
+
accessKeyPublic: String
|
|
1091
|
+
remark: String
|
|
1092
|
+
passport: String
|
|
1093
|
+
createdAt: Uint32
|
|
1094
|
+
lastUsedAt: Uint32
|
|
1095
|
+
createdBy: String
|
|
1096
|
+
updatedBy: String
|
|
1095
1097
|
}
|
|
1096
1098
|
|
|
1097
1099
|
type AuditLog {
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1100
|
+
id: String
|
|
1101
|
+
scope: String
|
|
1102
|
+
category: String
|
|
1103
|
+
action: String
|
|
1104
|
+
content: String
|
|
1105
|
+
actor: AuditLogActor
|
|
1106
|
+
env: AuditLogEnv
|
|
1107
|
+
createdAt: Uint32
|
|
1108
|
+
ip: String
|
|
1109
|
+
ua: String
|
|
1108
1110
|
}
|
|
1109
1111
|
|
|
1110
1112
|
type AuditLogActor {
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1113
|
+
did: String
|
|
1114
|
+
role: String
|
|
1115
|
+
fullName: String
|
|
1114
1116
|
}
|
|
1115
1117
|
|
|
1116
1118
|
type AuditLogEnv {
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
+
browser: AuditLogEnvItem
|
|
1120
|
+
os: AuditLogEnvItem
|
|
1119
1121
|
}
|
|
1120
1122
|
|
|
1121
1123
|
type AuditLogEnvItem {
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
+
name: String
|
|
1125
|
+
version: String
|
|
1124
1126
|
}
|
|
1125
1127
|
|
|
1126
1128
|
type AutoBackup {
|
|
1127
|
-
|
|
1129
|
+
enabled: Boolean
|
|
1128
1130
|
}
|
|
1129
1131
|
|
|
1130
1132
|
type AutoCheckUpdate {
|
|
1131
|
-
|
|
1133
|
+
enabled: Boolean
|
|
1132
1134
|
}
|
|
1133
1135
|
|
|
1134
1136
|
type Backup {
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1137
|
+
appPid: String
|
|
1138
|
+
userDid: String
|
|
1139
|
+
strategy: Uint32
|
|
1140
|
+
sourceUrl: String
|
|
1141
|
+
target: String
|
|
1142
|
+
targetName: String
|
|
1143
|
+
targetUrl: String
|
|
1144
|
+
createdAt: Uint32
|
|
1145
|
+
updatedAt: Uint32
|
|
1146
|
+
status: Uint32
|
|
1147
|
+
message: String
|
|
1148
|
+
progress: Uint32
|
|
1147
1149
|
}
|
|
1148
1150
|
|
|
1149
1151
|
type BlockletBackupState {
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1152
|
+
appDid: String
|
|
1153
|
+
appPid: String
|
|
1154
|
+
name: String
|
|
1155
|
+
createdAt: Uint32
|
|
1154
1156
|
}
|
|
1155
1157
|
|
|
1156
1158
|
type BlockletCapabilities {
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1159
|
+
clusterMode: Boolean
|
|
1160
|
+
component: Boolean
|
|
1161
|
+
navigation: Boolean
|
|
1162
|
+
didSpace: String
|
|
1163
|
+
resourceExportApi: String
|
|
1162
1164
|
}
|
|
1163
1165
|
|
|
1164
1166
|
type BlockletController {
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1167
|
+
id: String
|
|
1168
|
+
nftId: String
|
|
1169
|
+
nftOwner: String
|
|
1170
|
+
chainHost: String
|
|
1171
|
+
expireDate: Uint32
|
|
1172
|
+
consumedAt: String
|
|
1173
|
+
launcherUrl: String
|
|
1174
|
+
launcherSessionId: String
|
|
1175
|
+
ownerDid: String
|
|
1176
|
+
status: BlockletControllerStatus
|
|
1175
1177
|
}
|
|
1176
1178
|
|
|
1177
1179
|
type BlockletControllerStatus {
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
+
value: Uint32
|
|
1181
|
+
reason: String
|
|
1180
1182
|
}
|
|
1181
1183
|
|
|
1182
1184
|
type BlockletDiff {
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1185
|
+
hasBlocklet: Boolean
|
|
1186
|
+
version: String
|
|
1187
|
+
addSet: [String!]
|
|
1188
|
+
changeSet: [String!]
|
|
1189
|
+
deleteSet: [String!]
|
|
1188
1190
|
}
|
|
1189
1191
|
|
|
1190
1192
|
type BlockletDist {
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
+
tarball: String
|
|
1194
|
+
integrity: String
|
|
1193
1195
|
}
|
|
1194
1196
|
|
|
1195
1197
|
type BlockletEngine {
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1198
|
+
name: String
|
|
1199
|
+
displayName: String
|
|
1200
|
+
description: String
|
|
1201
|
+
version: String
|
|
1202
|
+
available: Boolean
|
|
1203
|
+
visible: Boolean
|
|
1204
|
+
logo: String
|
|
1203
1205
|
}
|
|
1204
1206
|
|
|
1205
1207
|
type BlockletHistoryItem {
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1208
|
+
date: Uint64
|
|
1209
|
+
cpu: Uint64
|
|
1210
|
+
mem: Uint64
|
|
1209
1211
|
}
|
|
1210
1212
|
|
|
1211
1213
|
type BlockletMeta {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1214
|
+
did: String
|
|
1215
|
+
name: String
|
|
1216
|
+
version: String
|
|
1217
|
+
description: String
|
|
1218
|
+
interfaces: [BlockletMetaInterface!]
|
|
1219
|
+
author: BlockletMetaPerson
|
|
1220
|
+
main: String
|
|
1221
|
+
stats: BlockletStats
|
|
1222
|
+
homepage: String
|
|
1223
|
+
path: String
|
|
1224
|
+
community: String
|
|
1225
|
+
documentation: String
|
|
1226
|
+
support: String
|
|
1227
|
+
screenshots: [String!]
|
|
1228
|
+
keywords: [String!]
|
|
1229
|
+
group: String
|
|
1230
|
+
logo: String
|
|
1231
|
+
title: String
|
|
1232
|
+
dist: BlockletDist
|
|
1233
|
+
maintainers: [BlockletMetaPerson!]
|
|
1234
|
+
contributors: [BlockletMetaPerson!]
|
|
1235
|
+
repository: BlockletRepository
|
|
1236
|
+
payment: BlockletPayment
|
|
1237
|
+
nftFactory: String
|
|
1238
|
+
lastPublishedAt: Uint32
|
|
1239
|
+
capabilities: BlockletCapabilities
|
|
1240
|
+
components: [ChildConfig!]
|
|
1241
|
+
environments: [Environment!]
|
|
1242
|
+
requirements: Requirement
|
|
1243
|
+
bundleDid: String
|
|
1244
|
+
bundleName: String
|
|
1245
|
+
navigation: [Any!]
|
|
1246
|
+
resources: [String!]
|
|
1247
|
+
resource: BlockletResource
|
|
1248
|
+
engine: Any
|
|
1249
|
+
owner: BlockletMetaOwner
|
|
1248
1250
|
}
|
|
1249
1251
|
|
|
1250
1252
|
type BlockletMetaInterface {
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1253
|
+
type: String
|
|
1254
|
+
name: String
|
|
1255
|
+
path: String
|
|
1256
|
+
prefix: String
|
|
1257
|
+
protocol: String
|
|
1258
|
+
port: Any
|
|
1259
|
+
services: [BlockletMetaService!]
|
|
1260
|
+
cacheable: [String!]
|
|
1261
|
+
pageGroups: [String!]
|
|
1260
1262
|
}
|
|
1261
1263
|
|
|
1262
1264
|
type BlockletMetaOwner {
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1265
|
+
avatar: String
|
|
1266
|
+
did: String
|
|
1267
|
+
email: String
|
|
1268
|
+
fullName: String
|
|
1267
1269
|
}
|
|
1268
1270
|
|
|
1269
1271
|
type BlockletMetaPerson {
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1272
|
+
name: String
|
|
1273
|
+
email: String
|
|
1274
|
+
url: String
|
|
1273
1275
|
}
|
|
1274
1276
|
|
|
1275
1277
|
type BlockletMetaService {
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
+
name: String
|
|
1279
|
+
config: Any
|
|
1278
1280
|
}
|
|
1279
1281
|
|
|
1280
1282
|
type BlockletMigrateRecord {
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1283
|
+
appSk: String
|
|
1284
|
+
appDid: String
|
|
1285
|
+
at: String
|
|
1284
1286
|
}
|
|
1285
1287
|
|
|
1286
1288
|
type BlockletPayment {
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
+
price: [BlockletPaymentPrice!]
|
|
1290
|
+
share: [BlockletPaymentShare!]
|
|
1289
1291
|
}
|
|
1290
1292
|
|
|
1291
1293
|
type BlockletPaymentPrice {
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1294
|
+
address: String
|
|
1295
|
+
value: String
|
|
1296
|
+
symbol: String
|
|
1295
1297
|
}
|
|
1296
1298
|
|
|
1297
1299
|
type BlockletPaymentShare {
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1300
|
+
address: String
|
|
1301
|
+
name: String
|
|
1302
|
+
value: String
|
|
1301
1303
|
}
|
|
1302
1304
|
|
|
1303
1305
|
type BlockletPreUpdateInfo {
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
+
updateId: String
|
|
1307
|
+
updateList: [UpdateList!]
|
|
1306
1308
|
}
|
|
1307
1309
|
|
|
1308
1310
|
type BlockletRepository {
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
+
type: String
|
|
1312
|
+
url: String
|
|
1311
1313
|
}
|
|
1312
1314
|
|
|
1313
1315
|
type BlockletResource {
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1316
|
+
exportApi: String
|
|
1317
|
+
types: [BlockletResourceType!]
|
|
1318
|
+
bundles: [BlockletResourceBundle!]
|
|
1317
1319
|
}
|
|
1318
1320
|
|
|
1319
1321
|
type BlockletResourceBundle {
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1322
|
+
did: String
|
|
1323
|
+
type: String
|
|
1324
|
+
public: Boolean
|
|
1323
1325
|
}
|
|
1324
1326
|
|
|
1325
1327
|
type BlockletResourceType {
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
+
type: String
|
|
1329
|
+
description: String
|
|
1328
1330
|
}
|
|
1329
1331
|
|
|
1330
1332
|
type BlockletSettings {
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1333
|
+
initialized: Boolean
|
|
1334
|
+
enablePassportIssuance: Boolean
|
|
1335
|
+
trustedPassports: [TrustedPassport!]
|
|
1336
|
+
whoCanAccess: String
|
|
1337
|
+
owner: WalletInfo
|
|
1338
|
+
children: [SimpleBlockletState!]
|
|
1339
|
+
publicToStore: Boolean
|
|
1340
|
+
storeList: [BlockletStore!]
|
|
1341
|
+
navigations: [ConfigNavigation!]
|
|
1342
|
+
oauth: Any
|
|
1343
|
+
trustedFactories: [TrustedFactory!]
|
|
1344
|
+
notification: Any
|
|
1345
|
+
session: SessionConfig
|
|
1346
|
+
federated: FederatedConfig
|
|
1347
|
+
autoCheckUpdate: AutoCheckUpdate
|
|
1348
|
+
autoBackup: AutoBackup
|
|
1349
|
+
invite: InviteSettings
|
|
1348
1350
|
}
|
|
1349
1351
|
|
|
1350
1352
|
type BlockletState {
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1353
|
+
meta: BlockletMeta
|
|
1354
|
+
status: BlockletStatus
|
|
1355
|
+
createdAt: Uint32
|
|
1356
|
+
installedAt: Uint32
|
|
1357
|
+
startedAt: Uint32
|
|
1358
|
+
pausedAt: Uint32
|
|
1359
|
+
stoppedAt: Uint32
|
|
1360
|
+
updatedAt: Uint32
|
|
1361
|
+
environments: [ConfigEntry!]
|
|
1362
|
+
configs: [ConfigEntry!]
|
|
1363
|
+
diskInfo: DiskInfo
|
|
1364
|
+
runtimeInfo: RuntimeInfo
|
|
1365
|
+
appRuntimeInfo: RuntimeInfo
|
|
1366
|
+
source: BlockletSource
|
|
1367
|
+
deployedFrom: String
|
|
1368
|
+
bundleSource: Any
|
|
1369
|
+
port: Float32
|
|
1370
|
+
engine: BlockletEngine
|
|
1371
|
+
mode: String
|
|
1372
|
+
ports: Any
|
|
1373
|
+
children: [ComponentState!]
|
|
1374
|
+
optionalComponents: [OptionalComponentState!]
|
|
1375
|
+
trustedPassports: [TrustedPassport!]
|
|
1376
|
+
trustedFactories: [TrustedFactory!]
|
|
1377
|
+
enablePassportIssuance: Boolean
|
|
1378
|
+
dynamic: Boolean
|
|
1379
|
+
mountPoint: String
|
|
1380
|
+
settings: BlockletSettings
|
|
1381
|
+
appDid: String
|
|
1382
|
+
site: RoutingSite
|
|
1383
|
+
controller: BlockletController
|
|
1384
|
+
migratedFrom: [BlockletMigrateRecord!]
|
|
1385
|
+
appPid: String
|
|
1386
|
+
externalSk: Boolean
|
|
1387
|
+
externalSkSource: String
|
|
1388
|
+
structVersion: String
|
|
1387
1389
|
}
|
|
1388
1390
|
|
|
1389
1391
|
type BlockletStats {
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1392
|
+
downloads: Float32
|
|
1393
|
+
star: Float32
|
|
1394
|
+
purchases: Float32
|
|
1393
1395
|
}
|
|
1394
1396
|
|
|
1395
1397
|
type BlockletStore {
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1398
|
+
name: String
|
|
1399
|
+
description: String
|
|
1400
|
+
url: String
|
|
1401
|
+
logoUrl: String
|
|
1402
|
+
maintainer: String
|
|
1403
|
+
cdnUrl: String
|
|
1404
|
+
protected: Boolean
|
|
1405
|
+
id: String
|
|
1406
|
+
scope: String
|
|
1405
1407
|
}
|
|
1406
1408
|
|
|
1407
1409
|
type BooleanResponse {
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
+
code: StatusCode
|
|
1411
|
+
result: Boolean
|
|
1410
1412
|
}
|
|
1411
1413
|
|
|
1412
1414
|
type Certificate {
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1415
|
+
name: String
|
|
1416
|
+
domain: String
|
|
1417
|
+
id: String
|
|
1418
|
+
meta: CertificateMeta
|
|
1419
|
+
matchedSites: [MatchedSites!]
|
|
1420
|
+
createdAt: Uint32
|
|
1421
|
+
updatedAt: Uint32
|
|
1422
|
+
isProtected: Boolean
|
|
1423
|
+
source: String
|
|
1424
|
+
status: String
|
|
1423
1425
|
}
|
|
1424
1426
|
|
|
1425
1427
|
type CertificateIssuer {
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1428
|
+
countryName: String
|
|
1429
|
+
organizationName: String
|
|
1430
|
+
commonName: String
|
|
1429
1431
|
}
|
|
1430
1432
|
|
|
1431
1433
|
type CertificateMeta {
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1434
|
+
issuer: CertificateIssuer
|
|
1435
|
+
sans: [String!]
|
|
1436
|
+
validFrom: Int64
|
|
1437
|
+
validTo: Int64
|
|
1438
|
+
fingerprintAlg: String
|
|
1439
|
+
fingerprint: String
|
|
1440
|
+
validityPeriod: Int64
|
|
1439
1441
|
}
|
|
1440
1442
|
|
|
1441
1443
|
type ChildConfig {
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1444
|
+
name: String
|
|
1445
|
+
mountPoint: String
|
|
1446
|
+
required: Boolean
|
|
1445
1447
|
}
|
|
1446
1448
|
|
|
1447
1449
|
type ComponentState {
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1450
|
+
meta: BlockletMeta
|
|
1451
|
+
status: BlockletStatus
|
|
1452
|
+
createdAt: Uint32
|
|
1453
|
+
installedAt: Uint32
|
|
1454
|
+
startedAt: Uint32
|
|
1455
|
+
pausedAt: Uint32
|
|
1456
|
+
stoppedAt: Uint32
|
|
1457
|
+
environments: [ConfigEntry!]
|
|
1458
|
+
configs: [ConfigEntry!]
|
|
1459
|
+
diskInfo: DiskInfo
|
|
1460
|
+
runtimeInfo: RuntimeInfo
|
|
1461
|
+
source: BlockletSource
|
|
1462
|
+
deployedFrom: String
|
|
1463
|
+
bundleSource: Any
|
|
1464
|
+
port: Float32
|
|
1465
|
+
engine: BlockletEngine
|
|
1466
|
+
mode: String
|
|
1467
|
+
ports: Any
|
|
1468
|
+
children: [ComponentState!]
|
|
1469
|
+
dynamic: Boolean
|
|
1470
|
+
mountPoint: String
|
|
1471
|
+
dependents: [Dependent!]
|
|
1472
|
+
required: Boolean
|
|
1471
1473
|
}
|
|
1472
1474
|
|
|
1473
1475
|
type ConfigEntry {
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1476
|
+
key: String
|
|
1477
|
+
value: String
|
|
1478
|
+
required: Boolean
|
|
1479
|
+
description: String
|
|
1480
|
+
validation: String
|
|
1481
|
+
secure: Boolean
|
|
1482
|
+
custom: Boolean
|
|
1483
|
+
shared: Boolean
|
|
1482
1484
|
}
|
|
1483
1485
|
|
|
1484
1486
|
type ConfigNavigation {
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1487
|
+
id: String
|
|
1488
|
+
title: String
|
|
1489
|
+
link: String
|
|
1490
|
+
icon: String
|
|
1491
|
+
section: String
|
|
1492
|
+
component: String
|
|
1493
|
+
parent: String
|
|
1494
|
+
role: String
|
|
1495
|
+
visible: Boolean
|
|
1496
|
+
from: String
|
|
1495
1497
|
}
|
|
1496
1498
|
|
|
1497
1499
|
type ConnectedAccount {
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1500
|
+
provider: String
|
|
1501
|
+
did: String
|
|
1502
|
+
pk: String
|
|
1503
|
+
id: String
|
|
1504
|
+
lastLoginAt: Uint32
|
|
1505
|
+
userInfo: ConnectedAccountInfo
|
|
1506
|
+
extra: Any
|
|
1505
1507
|
}
|
|
1506
1508
|
|
|
1507
1509
|
type ConnectedAccountInfo {
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1510
|
+
name: String
|
|
1511
|
+
picture: String
|
|
1512
|
+
email: String
|
|
1513
|
+
emailVerified: Boolean
|
|
1514
|
+
sub: String
|
|
1515
|
+
extraData: Any
|
|
1514
1516
|
}
|
|
1515
1517
|
|
|
1516
1518
|
type ConnectedStore {
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1519
|
+
storeId: String
|
|
1520
|
+
storeName: String
|
|
1521
|
+
storeUrl: String
|
|
1522
|
+
accessToken: String
|
|
1523
|
+
developerDid: String
|
|
1524
|
+
developerEmail: String
|
|
1525
|
+
developerName: String
|
|
1526
|
+
scope: String
|
|
1525
1527
|
}
|
|
1526
1528
|
|
|
1527
1529
|
type CreateAccessKey {
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1530
|
+
accessKeyId: String
|
|
1531
|
+
accessKeySecret: String
|
|
1532
|
+
remark: String
|
|
1533
|
+
passport: String
|
|
1534
|
+
createdAt: Uint32
|
|
1535
|
+
lastUsedAt: Uint32
|
|
1534
1536
|
}
|
|
1535
1537
|
|
|
1536
1538
|
type DelegationState {
|
|
1537
|
-
|
|
1539
|
+
delegated: Boolean
|
|
1538
1540
|
}
|
|
1539
1541
|
|
|
1540
1542
|
type Dependent {
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
+
id: String
|
|
1544
|
+
required: Boolean
|
|
1543
1545
|
}
|
|
1544
1546
|
|
|
1545
1547
|
type DiskInfo {
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1548
|
+
app: Float32
|
|
1549
|
+
data: Float32
|
|
1550
|
+
log: Float32
|
|
1551
|
+
cache: Float32
|
|
1552
|
+
blocklets: Float32
|
|
1551
1553
|
}
|
|
1552
1554
|
|
|
1553
1555
|
type Environment {
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1556
|
+
name: String
|
|
1557
|
+
description: String
|
|
1558
|
+
default: String
|
|
1559
|
+
required: Boolean
|
|
1560
|
+
secure: Boolean
|
|
1561
|
+
validation: String
|
|
1562
|
+
shared: Boolean
|
|
1561
1563
|
}
|
|
1562
1564
|
|
|
1563
1565
|
type FederatedConfig {
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
+
config: FederatedConfigDetail
|
|
1567
|
+
sites: [FederatedConfigSite!]
|
|
1566
1568
|
}
|
|
1567
1569
|
|
|
1568
1570
|
type FederatedConfigDetail {
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1571
|
+
appId: String
|
|
1572
|
+
appPid: String
|
|
1573
|
+
delegation: String
|
|
1574
|
+
isMaster: Boolean
|
|
1575
|
+
autoLogin: Boolean
|
|
1574
1576
|
}
|
|
1575
1577
|
|
|
1576
1578
|
type FederatedConfigSite {
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1579
|
+
appId: String
|
|
1580
|
+
appPid: String
|
|
1581
|
+
aliasDid: [String!]
|
|
1582
|
+
appName: String
|
|
1583
|
+
appDescription: String
|
|
1584
|
+
appUrl: String
|
|
1585
|
+
aliasDomain: [String!]
|
|
1586
|
+
appLogo: String
|
|
1587
|
+
appLogoRect: String
|
|
1588
|
+
did: String
|
|
1589
|
+
pk: String
|
|
1590
|
+
version: String
|
|
1591
|
+
serverId: String
|
|
1592
|
+
serverVersion: String
|
|
1593
|
+
appliedAt: Uint32
|
|
1594
|
+
status: String
|
|
1595
|
+
isMaster: Boolean
|
|
1594
1596
|
}
|
|
1595
1597
|
|
|
1596
1598
|
type Fuel {
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1599
|
+
endpoint: String
|
|
1600
|
+
address: String
|
|
1601
|
+
value: String
|
|
1602
|
+
reason: String
|
|
1601
1603
|
}
|
|
1602
1604
|
|
|
1603
1605
|
type Gateway {
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
+
requestLimit: RequestLimit
|
|
1607
|
+
cacheEnabled: Boolean
|
|
1606
1608
|
}
|
|
1607
1609
|
|
|
1608
1610
|
type GeneralResponse {
|
|
1609
|
-
|
|
1611
|
+
code: StatusCode
|
|
1610
1612
|
}
|
|
1611
1613
|
|
|
1612
1614
|
type IPInfo {
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1615
|
+
internalV4: String
|
|
1616
|
+
externalV4: String
|
|
1617
|
+
internalV6: String
|
|
1618
|
+
externalV6: String
|
|
1617
1619
|
}
|
|
1618
1620
|
|
|
1619
1621
|
type InviteInfo {
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1622
|
+
inviteId: String
|
|
1623
|
+
role: String
|
|
1624
|
+
remark: String
|
|
1625
|
+
expireDate: String
|
|
1626
|
+
inviter: UserInfo
|
|
1627
|
+
teamDid: String
|
|
1628
|
+
interfaceName: String
|
|
1627
1629
|
}
|
|
1628
1630
|
|
|
1629
1631
|
type InviteSettings {
|
|
1630
|
-
|
|
1632
|
+
enabled: Boolean
|
|
1631
1633
|
}
|
|
1632
1634
|
|
|
1633
1635
|
type Issuer {
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1636
|
+
id: String
|
|
1637
|
+
name: String
|
|
1638
|
+
pk: String
|
|
1637
1639
|
}
|
|
1638
1640
|
|
|
1639
1641
|
type KeyValue {
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
+
key: String
|
|
1643
|
+
value: Any
|
|
1642
1644
|
}
|
|
1643
1645
|
|
|
1644
1646
|
type LauncherInfo {
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1647
|
+
did: String
|
|
1648
|
+
type: String
|
|
1649
|
+
provider: String
|
|
1650
|
+
url: String
|
|
1651
|
+
tag: String
|
|
1652
|
+
chainHost: String
|
|
1651
1653
|
}
|
|
1652
1654
|
|
|
1653
1655
|
type MatchedSites {
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
+
id: String
|
|
1657
|
+
domain: String
|
|
1656
1658
|
}
|
|
1657
1659
|
|
|
1658
1660
|
type NodeEnvInfo {
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1661
|
+
ip: IPInfo
|
|
1662
|
+
os: String
|
|
1663
|
+
location: String
|
|
1664
|
+
docker: Boolean
|
|
1665
|
+
image: Boolean
|
|
1666
|
+
blockletEngines: [BlockletEngine!]
|
|
1667
|
+
gitpod: Boolean
|
|
1668
|
+
disk: DiskInfo
|
|
1667
1669
|
}
|
|
1668
1670
|
|
|
1669
1671
|
type NodeHistoryItem {
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1672
|
+
date: Uint64
|
|
1673
|
+
cpu: Uint64
|
|
1674
|
+
mem: Uint64
|
|
1675
|
+
daemonMem: Uint64
|
|
1676
|
+
serviceMem: Uint64
|
|
1677
|
+
hubMem: Uint64
|
|
1676
1678
|
}
|
|
1677
1679
|
|
|
1678
1680
|
type NodeRouting {
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1681
|
+
provider: String
|
|
1682
|
+
snapshotHash: String
|
|
1683
|
+
adminPath: String
|
|
1684
|
+
requestLimit: RequestLimit
|
|
1685
|
+
cacheEnabled: Boolean
|
|
1684
1686
|
}
|
|
1685
1687
|
|
|
1686
1688
|
type NodeRuntimeConfig {
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1689
|
+
blockletMaxMemoryLimit: Uint32
|
|
1690
|
+
daemonMaxMemoryLimit: Uint32
|
|
1691
|
+
proxyMaxMemoryLimit: Uint32
|
|
1690
1692
|
}
|
|
1691
1693
|
|
|
1692
1694
|
type NodeState {
|
|
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
|
-
|
|
1695
|
+
did: String
|
|
1696
|
+
pk: String
|
|
1697
|
+
version: String
|
|
1698
|
+
name: String
|
|
1699
|
+
description: String
|
|
1700
|
+
port: String
|
|
1701
|
+
initialized: Boolean
|
|
1702
|
+
nodeOwner: WalletInfo
|
|
1703
|
+
createdAt: Uint32
|
|
1704
|
+
startedAt: Uint32
|
|
1705
|
+
initializedAt: Uint32
|
|
1706
|
+
mode: String
|
|
1707
|
+
routing: NodeRouting
|
|
1708
|
+
environments: [ConfigEntry!]
|
|
1709
|
+
uptime: Float32
|
|
1710
|
+
autoUpgrade: Boolean
|
|
1711
|
+
nextVersion: String
|
|
1712
|
+
upgradeSessionId: String
|
|
1713
|
+
registerUrl: String
|
|
1714
|
+
enableWelcomePage: Boolean
|
|
1715
|
+
webWalletUrl: String
|
|
1716
|
+
blockletRegistryList: [BlockletStore!]
|
|
1717
|
+
ownerNft: OwnerNft
|
|
1718
|
+
diskAlertThreshold: Uint32
|
|
1719
|
+
trustedPassports: [TrustedPassport!]
|
|
1720
|
+
launcher: LauncherInfo
|
|
1721
|
+
enablePassportIssuance: Boolean
|
|
1722
|
+
didRegistry: String
|
|
1723
|
+
didDomain: String
|
|
1724
|
+
status: Uint32
|
|
1725
|
+
trustedFactories: [TrustedFactory!]
|
|
1726
|
+
enableBetaRelease: Boolean
|
|
1727
|
+
runtimeConfig: NodeRuntimeConfig
|
|
1728
|
+
nftDomainUrl: String
|
|
1729
|
+
enableFileSystemIsolation: Boolean
|
|
1730
|
+
enableDocker: Boolean
|
|
1731
|
+
isDockerInstalled: Boolean
|
|
1728
1732
|
}
|
|
1729
1733
|
|
|
1730
1734
|
type Notification {
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1735
|
+
sender: String
|
|
1736
|
+
receiver: String
|
|
1737
|
+
title: String
|
|
1738
|
+
description: String
|
|
1739
|
+
action: String
|
|
1740
|
+
entityType: String
|
|
1741
|
+
entityId: String
|
|
1742
|
+
read: Boolean
|
|
1743
|
+
createdAt: Uint32
|
|
1744
|
+
updatedAt: Uint32
|
|
1745
|
+
id: String
|
|
1746
|
+
severity: String
|
|
1743
1747
|
}
|
|
1744
1748
|
|
|
1745
1749
|
type OptionalComponentState {
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1750
|
+
logoUrl: String
|
|
1751
|
+
dependencies: [OptionalDependencies!]
|
|
1752
|
+
meta: BlockletMeta
|
|
1749
1753
|
}
|
|
1750
1754
|
|
|
1751
1755
|
type OptionalDependencies {
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1756
|
+
parentDid: String
|
|
1757
|
+
parentName: String
|
|
1758
|
+
parentTitle: String
|
|
1759
|
+
mountPoint: String
|
|
1760
|
+
required: Boolean
|
|
1757
1761
|
}
|
|
1758
1762
|
|
|
1759
1763
|
type OwnerNft {
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
+
did: String
|
|
1765
|
+
holder: String
|
|
1766
|
+
issuer: String
|
|
1767
|
+
launcherSessionId: String
|
|
1764
1768
|
}
|
|
1765
1769
|
|
|
1766
1770
|
type Paging {
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
+
total: Uint32
|
|
1772
|
+
pageSize: Uint32
|
|
1773
|
+
pageCount: Uint32
|
|
1774
|
+
page: Uint32
|
|
1771
1775
|
}
|
|
1772
1776
|
|
|
1773
1777
|
type Passport {
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1778
|
+
id: String
|
|
1779
|
+
name: String
|
|
1780
|
+
title: String
|
|
1781
|
+
issuer: Issuer
|
|
1782
|
+
type: [String!]
|
|
1783
|
+
issuanceDate: Uint32
|
|
1784
|
+
expirationDate: Uint32
|
|
1785
|
+
status: String
|
|
1786
|
+
role: String
|
|
1787
|
+
lastLoginAt: Uint32
|
|
1784
1788
|
}
|
|
1785
1789
|
|
|
1786
1790
|
type PassportIssuanceInfo {
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1791
|
+
id: String
|
|
1792
|
+
name: String
|
|
1793
|
+
title: String
|
|
1794
|
+
expireDate: String
|
|
1795
|
+
teamDid: String
|
|
1796
|
+
ownerDid: String
|
|
1793
1797
|
}
|
|
1794
1798
|
|
|
1795
1799
|
type Permission {
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1800
|
+
name: String
|
|
1801
|
+
description: String
|
|
1802
|
+
isProtected: Boolean
|
|
1799
1803
|
}
|
|
1800
1804
|
|
|
1801
1805
|
type Project {
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1806
|
+
id: String
|
|
1807
|
+
type: PublishType
|
|
1808
|
+
blockletDid: String
|
|
1809
|
+
blockletVersion: String
|
|
1810
|
+
blockletTitle: String
|
|
1811
|
+
blockletDescription: String
|
|
1812
|
+
blockletLogo: String
|
|
1813
|
+
blockletIntroduction: String
|
|
1814
|
+
blockletScreenshots: [String!]
|
|
1815
|
+
createdAt: String
|
|
1816
|
+
updatedAt: String
|
|
1817
|
+
componentDid: String
|
|
1818
|
+
lastReleaseId: String
|
|
1819
|
+
lastReleaseFiles: [String!]
|
|
1820
|
+
connectedStores: [ConnectedStore!]
|
|
1821
|
+
tenantScope: String
|
|
1822
|
+
createdBy: String
|
|
1823
|
+
autoUpload: Boolean
|
|
1824
|
+
possibleSameStore: Boolean
|
|
1821
1825
|
}
|
|
1822
1826
|
|
|
1823
1827
|
type Release {
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1828
|
+
id: String
|
|
1829
|
+
projectId: String
|
|
1830
|
+
blockletDid: String
|
|
1831
|
+
blockletVersion: String
|
|
1832
|
+
blockletTitle: String
|
|
1833
|
+
blockletDescription: String
|
|
1834
|
+
blockletLogo: String
|
|
1835
|
+
blockletIntroduction: String
|
|
1836
|
+
blockletScreenshots: [String!]
|
|
1837
|
+
note: String
|
|
1838
|
+
files: [String!]
|
|
1839
|
+
status: ReleaseStatus
|
|
1840
|
+
createdAt: String
|
|
1841
|
+
updatedAt: String
|
|
1842
|
+
blockletComponents: [ReleaseComponent!]
|
|
1843
|
+
publishedStoreIds: [String!]
|
|
1844
|
+
uploadedResource: String
|
|
1841
1845
|
}
|
|
1842
1846
|
|
|
1843
1847
|
type ReleaseComponent {
|
|
1844
|
-
|
|
1845
|
-
|
|
1848
|
+
did: String
|
|
1849
|
+
required: Boolean
|
|
1846
1850
|
}
|
|
1847
1851
|
|
|
1848
1852
|
type RequestLimit {
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1853
|
+
enabled: Boolean
|
|
1854
|
+
rate: Uint32
|
|
1855
|
+
ipHeader: String
|
|
1852
1856
|
}
|
|
1853
1857
|
|
|
1854
1858
|
type Requirement {
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
+
server: String
|
|
1860
|
+
os: Any
|
|
1861
|
+
cpu: Any
|
|
1862
|
+
fuels: [Fuel!]
|
|
1859
1863
|
}
|
|
1860
1864
|
|
|
1861
1865
|
type ResponseAccessKeys {
|
|
1862
|
-
|
|
1863
|
-
|
|
1866
|
+
code: StatusCode
|
|
1867
|
+
list: [AccessKey!]
|
|
1864
1868
|
}
|
|
1865
1869
|
|
|
1866
1870
|
type ResponseAddLetsEncryptCert {
|
|
1867
|
-
|
|
1871
|
+
code: StatusCode
|
|
1868
1872
|
}
|
|
1869
1873
|
|
|
1870
1874
|
type ResponseAddNginxHttpsCert {
|
|
1871
|
-
|
|
1875
|
+
code: StatusCode
|
|
1872
1876
|
}
|
|
1873
1877
|
|
|
1874
1878
|
type ResponseBlocklet {
|
|
1875
|
-
|
|
1876
|
-
|
|
1879
|
+
code: StatusCode
|
|
1880
|
+
blocklet: BlockletState
|
|
1877
1881
|
}
|
|
1878
1882
|
|
|
1879
1883
|
type ResponseBlockletDiff {
|
|
1880
|
-
|
|
1881
|
-
|
|
1884
|
+
code: StatusCode
|
|
1885
|
+
blockletDiff: BlockletDiff
|
|
1882
1886
|
}
|
|
1883
1887
|
|
|
1884
1888
|
type ResponseBlockletMeta {
|
|
1885
|
-
|
|
1886
|
-
|
|
1889
|
+
code: StatusCode
|
|
1890
|
+
meta: Any
|
|
1887
1891
|
}
|
|
1888
1892
|
|
|
1889
1893
|
type ResponseBlockletMetaFromUrl {
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1894
|
+
code: StatusCode
|
|
1895
|
+
meta: BlockletMeta
|
|
1896
|
+
isFree: Boolean
|
|
1897
|
+
inStore: Boolean
|
|
1898
|
+
registryUrl: String
|
|
1895
1899
|
}
|
|
1896
1900
|
|
|
1897
1901
|
type ResponseBlockletRuntimeHistory {
|
|
1898
|
-
|
|
1899
|
-
|
|
1902
|
+
code: StatusCode
|
|
1903
|
+
history: [BlockletHistoryItem!]
|
|
1900
1904
|
}
|
|
1901
1905
|
|
|
1902
1906
|
type ResponseBlockletsFromBackup {
|
|
1903
|
-
|
|
1904
|
-
|
|
1907
|
+
code: StatusCode
|
|
1908
|
+
backups: [BlockletBackupState!]
|
|
1905
1909
|
}
|
|
1906
1910
|
|
|
1907
1911
|
type ResponseCheckComponentsForUpdates {
|
|
1908
|
-
|
|
1909
|
-
|
|
1912
|
+
code: StatusCode
|
|
1913
|
+
preUpdateInfo: BlockletPreUpdateInfo
|
|
1910
1914
|
}
|
|
1911
1915
|
|
|
1912
1916
|
type ResponseCheckDomains {
|
|
1913
|
-
|
|
1917
|
+
code: StatusCode
|
|
1914
1918
|
}
|
|
1915
1919
|
|
|
1916
1920
|
type ResponseCheckNodeVersion {
|
|
1917
|
-
|
|
1918
|
-
|
|
1921
|
+
code: StatusCode
|
|
1922
|
+
version: String
|
|
1919
1923
|
}
|
|
1920
1924
|
|
|
1921
1925
|
type ResponseClearCache {
|
|
1922
|
-
|
|
1923
|
-
|
|
1926
|
+
code: StatusCode
|
|
1927
|
+
removed: [String!]
|
|
1924
1928
|
}
|
|
1925
1929
|
|
|
1926
1930
|
type ResponseConnectByStudio {
|
|
1927
|
-
|
|
1928
|
-
|
|
1931
|
+
code: StatusCode
|
|
1932
|
+
url: String
|
|
1929
1933
|
}
|
|
1930
1934
|
|
|
1931
1935
|
type ResponseConnectToStore {
|
|
1932
|
-
|
|
1933
|
-
|
|
1936
|
+
code: StatusCode
|
|
1937
|
+
url: String
|
|
1934
1938
|
}
|
|
1935
1939
|
|
|
1936
1940
|
type ResponseCreateAccessKey {
|
|
1937
|
-
|
|
1938
|
-
|
|
1941
|
+
code: StatusCode
|
|
1942
|
+
data: CreateAccessKey
|
|
1939
1943
|
}
|
|
1940
1944
|
|
|
1941
1945
|
type ResponseCreateInvitation {
|
|
1942
|
-
|
|
1943
|
-
|
|
1946
|
+
code: StatusCode
|
|
1947
|
+
inviteInfo: InviteInfo
|
|
1944
1948
|
}
|
|
1945
1949
|
|
|
1946
1950
|
type ResponseCreatePassportIssuance {
|
|
1947
|
-
|
|
1948
|
-
|
|
1951
|
+
code: StatusCode
|
|
1952
|
+
info: PassportIssuanceInfo
|
|
1949
1953
|
}
|
|
1950
1954
|
|
|
1951
1955
|
type ResponseCreateTransferNodeInvitation {
|
|
1952
|
-
|
|
1953
|
-
|
|
1956
|
+
code: StatusCode
|
|
1957
|
+
inviteInfo: InviteInfo
|
|
1954
1958
|
}
|
|
1955
1959
|
|
|
1956
1960
|
type ResponseCreateWebHook {
|
|
1957
|
-
|
|
1958
|
-
|
|
1961
|
+
code: StatusCode
|
|
1962
|
+
webhook: WebHookSender
|
|
1959
1963
|
}
|
|
1960
1964
|
|
|
1961
1965
|
type ResponseDelegationState {
|
|
1962
|
-
|
|
1963
|
-
|
|
1966
|
+
code: StatusCode
|
|
1967
|
+
state: DelegationState
|
|
1964
1968
|
}
|
|
1965
1969
|
|
|
1966
1970
|
type ResponseDeleteAccessKey {
|
|
1967
|
-
|
|
1971
|
+
code: StatusCode
|
|
1968
1972
|
}
|
|
1969
1973
|
|
|
1970
1974
|
type ResponseDeleteNginxHttpsCert {
|
|
1971
|
-
|
|
1975
|
+
code: StatusCode
|
|
1972
1976
|
}
|
|
1973
1977
|
|
|
1974
1978
|
type ResponseDeleteWebHook {
|
|
1975
|
-
|
|
1979
|
+
code: StatusCode
|
|
1976
1980
|
}
|
|
1977
1981
|
|
|
1978
1982
|
type ResponseDisconnectFromStore {
|
|
1979
|
-
|
|
1983
|
+
code: StatusCode
|
|
1980
1984
|
}
|
|
1981
1985
|
|
|
1982
1986
|
type ResponseFindCertificateByDomain {
|
|
1983
|
-
|
|
1984
|
-
|
|
1987
|
+
code: StatusCode
|
|
1988
|
+
cert: Certificate
|
|
1985
1989
|
}
|
|
1986
1990
|
|
|
1987
1991
|
type ResponseGateway {
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1992
|
+
code: StatusCode
|
|
1993
|
+
gateway: Gateway
|
|
1994
|
+
cacheEnabled: Boolean
|
|
1991
1995
|
}
|
|
1992
1996
|
|
|
1993
1997
|
type ResponseGetAuditLogs {
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1998
|
+
code: StatusCode
|
|
1999
|
+
list: [AuditLog!]
|
|
2000
|
+
paging: Paging
|
|
1997
2001
|
}
|
|
1998
2002
|
|
|
1999
2003
|
type ResponseGetBlockletBackups {
|
|
2000
|
-
|
|
2001
|
-
|
|
2004
|
+
code: StatusCode
|
|
2005
|
+
backups: [Backup!]
|
|
2002
2006
|
}
|
|
2003
2007
|
|
|
2004
2008
|
type ResponseGetBlockletNotifications {
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2009
|
+
code: StatusCode
|
|
2010
|
+
list: [Notification!]
|
|
2011
|
+
paging: Paging
|
|
2008
2012
|
}
|
|
2009
2013
|
|
|
2010
2014
|
type ResponseGetBlockletSpaceGateways {
|
|
2011
|
-
|
|
2012
|
-
|
|
2015
|
+
code: StatusCode
|
|
2016
|
+
spaceGateways: [SpaceGateway!]
|
|
2013
2017
|
}
|
|
2014
2018
|
|
|
2015
2019
|
type ResponseGetBlocklets {
|
|
2016
|
-
|
|
2017
|
-
|
|
2020
|
+
code: StatusCode
|
|
2021
|
+
blocklets: [BlockletState!]
|
|
2018
2022
|
}
|
|
2019
2023
|
|
|
2020
2024
|
type ResponseGetCertificates {
|
|
2021
|
-
|
|
2022
|
-
|
|
2025
|
+
code: StatusCode
|
|
2026
|
+
certificates: [Certificate!]
|
|
2023
2027
|
}
|
|
2024
2028
|
|
|
2025
2029
|
type ResponseGetDynamicComponents {
|
|
2026
|
-
|
|
2027
|
-
|
|
2030
|
+
code: StatusCode
|
|
2031
|
+
components: [ComponentState!]
|
|
2028
2032
|
}
|
|
2029
2033
|
|
|
2030
2034
|
type ResponseGetInvitations {
|
|
2031
|
-
|
|
2032
|
-
|
|
2035
|
+
code: StatusCode
|
|
2036
|
+
invitations: [InviteInfo!]
|
|
2033
2037
|
}
|
|
2034
2038
|
|
|
2035
2039
|
type ResponseGetLauncherSession {
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2040
|
+
code: StatusCode
|
|
2041
|
+
error: String
|
|
2042
|
+
launcherSession: Any
|
|
2039
2043
|
}
|
|
2040
2044
|
|
|
2041
2045
|
type ResponseGetNodeEnv {
|
|
2042
|
-
|
|
2043
|
-
|
|
2046
|
+
code: StatusCode
|
|
2047
|
+
info: NodeEnvInfo
|
|
2044
2048
|
}
|
|
2045
2049
|
|
|
2046
2050
|
type ResponseGetNodeInfo {
|
|
2047
|
-
|
|
2048
|
-
|
|
2051
|
+
code: StatusCode
|
|
2052
|
+
info: NodeState
|
|
2049
2053
|
}
|
|
2050
2054
|
|
|
2051
2055
|
type ResponseGetNotifications {
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2056
|
+
code: StatusCode
|
|
2057
|
+
list: [Notification!]
|
|
2058
|
+
paging: Paging
|
|
2055
2059
|
}
|
|
2056
2060
|
|
|
2057
2061
|
type ResponseGetPassportIssuances {
|
|
2058
|
-
|
|
2059
|
-
|
|
2062
|
+
code: StatusCode
|
|
2063
|
+
list: [PassportIssuanceInfo!]
|
|
2060
2064
|
}
|
|
2061
2065
|
|
|
2062
2066
|
type ResponseGetProject {
|
|
2063
|
-
|
|
2064
|
-
|
|
2067
|
+
code: StatusCode
|
|
2068
|
+
project: Project
|
|
2065
2069
|
}
|
|
2066
2070
|
|
|
2067
2071
|
type ResponseGetProjects {
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2072
|
+
code: StatusCode
|
|
2073
|
+
projects: [Project!]
|
|
2074
|
+
paging: Paging
|
|
2071
2075
|
}
|
|
2072
2076
|
|
|
2073
2077
|
type ResponseGetRelease {
|
|
2074
|
-
|
|
2075
|
-
|
|
2078
|
+
code: StatusCode
|
|
2079
|
+
release: Release
|
|
2076
2080
|
}
|
|
2077
2081
|
|
|
2078
2082
|
type ResponseGetReleases {
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2083
|
+
code: StatusCode
|
|
2084
|
+
releases: [Release!]
|
|
2085
|
+
paging: Paging
|
|
2082
2086
|
}
|
|
2083
2087
|
|
|
2084
2088
|
type ResponseGetRoutingProviders {
|
|
2085
|
-
|
|
2086
|
-
|
|
2089
|
+
code: StatusCode
|
|
2090
|
+
providers: [RoutingProvider!]
|
|
2087
2091
|
}
|
|
2088
2092
|
|
|
2089
2093
|
type ResponseGetRoutingSites {
|
|
2090
|
-
|
|
2091
|
-
|
|
2094
|
+
code: StatusCode
|
|
2095
|
+
sites: [RoutingSite!]
|
|
2092
2096
|
}
|
|
2093
2097
|
|
|
2094
2098
|
type ResponseGetRoutingSnapshots {
|
|
2095
|
-
|
|
2096
|
-
|
|
2099
|
+
code: StatusCode
|
|
2100
|
+
snapshots: [RoutingSnapshot!]
|
|
2097
2101
|
}
|
|
2098
2102
|
|
|
2099
2103
|
type ResponseGetSelectedResources {
|
|
2100
|
-
|
|
2101
|
-
|
|
2104
|
+
code: StatusCode
|
|
2105
|
+
resources: [String!]
|
|
2102
2106
|
}
|
|
2103
2107
|
|
|
2104
2108
|
type ResponseGetSession {
|
|
2105
|
-
|
|
2106
|
-
|
|
2109
|
+
code: StatusCode
|
|
2110
|
+
session: Any
|
|
2107
2111
|
}
|
|
2108
2112
|
|
|
2109
2113
|
type ResponseGetSnapshotSites {
|
|
2110
|
-
|
|
2111
|
-
|
|
2114
|
+
code: StatusCode
|
|
2115
|
+
sites: [RoutingSite!]
|
|
2112
2116
|
}
|
|
2113
2117
|
|
|
2114
2118
|
type ResponseGetTrafficInsights {
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2119
|
+
code: StatusCode
|
|
2120
|
+
list: [TrafficInsight!]
|
|
2121
|
+
paging: Paging
|
|
2118
2122
|
}
|
|
2119
2123
|
|
|
2120
2124
|
type ResponseGetUsersCount {
|
|
2121
|
-
|
|
2122
|
-
|
|
2125
|
+
code: StatusCode
|
|
2126
|
+
count: Uint32
|
|
2123
2127
|
}
|
|
2124
2128
|
|
|
2125
2129
|
type ResponseGetUsersCountPerRole {
|
|
2126
|
-
|
|
2127
|
-
|
|
2130
|
+
code: StatusCode
|
|
2131
|
+
counts: [KeyValue!]
|
|
2128
2132
|
}
|
|
2129
2133
|
|
|
2130
2134
|
type ResponseIsDidDomain {
|
|
2131
|
-
|
|
2132
|
-
|
|
2135
|
+
code: StatusCode
|
|
2136
|
+
value: Boolean
|
|
2133
2137
|
}
|
|
2134
2138
|
|
|
2135
2139
|
type ResponseNodeRuntimeHistory {
|
|
2136
|
-
|
|
2137
|
-
|
|
2140
|
+
code: StatusCode
|
|
2141
|
+
history: [NodeHistoryItem!]
|
|
2138
2142
|
}
|
|
2139
2143
|
|
|
2140
2144
|
type ResponsePermission {
|
|
2141
|
-
|
|
2142
|
-
|
|
2145
|
+
code: StatusCode
|
|
2146
|
+
permission: Permission
|
|
2143
2147
|
}
|
|
2144
2148
|
|
|
2145
2149
|
type ResponsePermissions {
|
|
2146
|
-
|
|
2147
|
-
|
|
2150
|
+
code: StatusCode
|
|
2151
|
+
permissions: [Permission!]
|
|
2148
2152
|
}
|
|
2149
2153
|
|
|
2150
2154
|
type ResponseProject {
|
|
2151
|
-
|
|
2152
|
-
|
|
2155
|
+
code: StatusCode
|
|
2156
|
+
project: Project
|
|
2153
2157
|
}
|
|
2154
2158
|
|
|
2155
2159
|
type ResponsePublishToStore {
|
|
2156
|
-
|
|
2157
|
-
|
|
2160
|
+
code: StatusCode
|
|
2161
|
+
url: String
|
|
2158
2162
|
}
|
|
2159
2163
|
|
|
2160
2164
|
type ResponseReadBlockletNotifications {
|
|
2161
|
-
|
|
2162
|
-
|
|
2165
|
+
code: StatusCode
|
|
2166
|
+
numAffected: Int32
|
|
2163
2167
|
}
|
|
2164
2168
|
|
|
2165
2169
|
type ResponseReadNotifications {
|
|
2166
|
-
|
|
2167
|
-
|
|
2170
|
+
code: StatusCode
|
|
2171
|
+
numAffected: Int32
|
|
2168
2172
|
}
|
|
2169
2173
|
|
|
2170
2174
|
type ResponseRelease {
|
|
2171
|
-
|
|
2172
|
-
|
|
2175
|
+
code: StatusCode
|
|
2176
|
+
release: Release
|
|
2173
2177
|
}
|
|
2174
2178
|
|
|
2175
2179
|
type ResponseResetNode {
|
|
2176
|
-
|
|
2180
|
+
code: StatusCode
|
|
2177
2181
|
}
|
|
2178
2182
|
|
|
2179
2183
|
type ResponseRestartServer {
|
|
2180
|
-
|
|
2181
|
-
|
|
2184
|
+
code: StatusCode
|
|
2185
|
+
sessionId: String
|
|
2182
2186
|
}
|
|
2183
2187
|
|
|
2184
2188
|
type ResponseRole {
|
|
2185
|
-
|
|
2186
|
-
|
|
2189
|
+
code: StatusCode
|
|
2190
|
+
role: Role
|
|
2187
2191
|
}
|
|
2188
2192
|
|
|
2189
2193
|
type ResponseRoles {
|
|
2190
|
-
|
|
2191
|
-
|
|
2194
|
+
code: StatusCode
|
|
2195
|
+
roles: [Role!]
|
|
2192
2196
|
}
|
|
2193
2197
|
|
|
2194
2198
|
type ResponseRoutingSite {
|
|
2195
|
-
|
|
2196
|
-
|
|
2199
|
+
code: StatusCode
|
|
2200
|
+
site: RoutingSite
|
|
2197
2201
|
}
|
|
2198
2202
|
|
|
2199
2203
|
type ResponseSendMsg {
|
|
2200
|
-
|
|
2204
|
+
code: StatusCode
|
|
2201
2205
|
}
|
|
2202
2206
|
|
|
2203
2207
|
type ResponseSenderList {
|
|
2204
|
-
|
|
2205
|
-
|
|
2208
|
+
code: StatusCode
|
|
2209
|
+
senders: [WebHookSender!]
|
|
2206
2210
|
}
|
|
2207
2211
|
|
|
2208
2212
|
type ResponseTag {
|
|
2209
|
-
|
|
2210
|
-
|
|
2213
|
+
code: StatusCode
|
|
2214
|
+
tag: Tag
|
|
2211
2215
|
}
|
|
2212
2216
|
|
|
2213
2217
|
type ResponseTags {
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2218
|
+
code: StatusCode
|
|
2219
|
+
tags: [Tag!]
|
|
2220
|
+
paging: Paging
|
|
2217
2221
|
}
|
|
2218
2222
|
|
|
2219
2223
|
type ResponseTakeRoutingSnapshot {
|
|
2220
|
-
|
|
2221
|
-
|
|
2224
|
+
code: StatusCode
|
|
2225
|
+
hash: String
|
|
2222
2226
|
}
|
|
2223
2227
|
|
|
2224
2228
|
type ResponseUpdateAccessKey {
|
|
2225
|
-
|
|
2226
|
-
|
|
2229
|
+
code: StatusCode
|
|
2230
|
+
data: AccessKey
|
|
2227
2231
|
}
|
|
2228
2232
|
|
|
2229
2233
|
type ResponseUpdateNginxHttpsCert {
|
|
2230
|
-
|
|
2234
|
+
code: StatusCode
|
|
2231
2235
|
}
|
|
2232
2236
|
|
|
2233
2237
|
type ResponseUpgradeNodeVersion {
|
|
2234
|
-
|
|
2235
|
-
|
|
2238
|
+
code: StatusCode
|
|
2239
|
+
sessionId: String
|
|
2236
2240
|
}
|
|
2237
2241
|
|
|
2238
2242
|
type ResponseUser {
|
|
2239
|
-
|
|
2240
|
-
|
|
2243
|
+
code: StatusCode
|
|
2244
|
+
user: UserInfo
|
|
2241
2245
|
}
|
|
2242
2246
|
|
|
2243
2247
|
type ResponseUsers {
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2248
|
+
code: StatusCode
|
|
2249
|
+
users: [UserInfo!]
|
|
2250
|
+
paging: Paging
|
|
2247
2251
|
}
|
|
2248
2252
|
|
|
2249
2253
|
type ResponseWebHooks {
|
|
2250
|
-
|
|
2251
|
-
|
|
2254
|
+
code: StatusCode
|
|
2255
|
+
webhooks: [WebHook!]
|
|
2252
2256
|
}
|
|
2253
2257
|
|
|
2254
2258
|
type Role {
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2259
|
+
name: String
|
|
2260
|
+
description: String
|
|
2261
|
+
grants: [String!]
|
|
2262
|
+
title: String
|
|
2263
|
+
isProtected: Boolean
|
|
2264
|
+
extra: Any
|
|
2261
2265
|
}
|
|
2262
2266
|
|
|
2263
2267
|
type RoutingProvider {
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2268
|
+
name: String
|
|
2269
|
+
description: String
|
|
2270
|
+
running: Boolean
|
|
2271
|
+
available: Boolean
|
|
2272
|
+
error: String
|
|
2269
2273
|
}
|
|
2270
2274
|
|
|
2271
2275
|
type RoutingRule {
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
+
id: String
|
|
2277
|
+
from: RoutingRuleFrom
|
|
2278
|
+
to: RoutingRuleTo
|
|
2279
|
+
isProtected: Boolean
|
|
2276
2280
|
}
|
|
2277
2281
|
|
|
2278
2282
|
type RoutingRuleFrom {
|
|
2279
|
-
|
|
2280
|
-
|
|
2283
|
+
pathPrefix: String
|
|
2284
|
+
header: [RoutingRuleHeader!]
|
|
2281
2285
|
}
|
|
2282
2286
|
|
|
2283
2287
|
type RoutingRuleHeader {
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2288
|
+
key: String
|
|
2289
|
+
value: String
|
|
2290
|
+
type: HeaderMatchType
|
|
2287
2291
|
}
|
|
2288
2292
|
|
|
2289
2293
|
type RoutingRuleResponse {
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2294
|
+
status: Uint32
|
|
2295
|
+
contentType: String
|
|
2296
|
+
body: String
|
|
2293
2297
|
}
|
|
2294
2298
|
|
|
2295
2299
|
type RoutingRuleTo {
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2300
|
+
port: Uint32
|
|
2301
|
+
type: BackendServiceType
|
|
2302
|
+
did: String
|
|
2303
|
+
url: String
|
|
2304
|
+
redirectCode: Int32
|
|
2305
|
+
interfaceName: String
|
|
2306
|
+
componentId: String
|
|
2307
|
+
pageGroup: String
|
|
2308
|
+
response: RoutingRuleResponse
|
|
2305
2309
|
}
|
|
2306
2310
|
|
|
2307
2311
|
type RoutingSite {
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2312
|
+
id: String
|
|
2313
|
+
domain: String
|
|
2314
|
+
domainAliases: [Any!]
|
|
2315
|
+
rules: [RoutingRule!]
|
|
2316
|
+
isProtected: Boolean
|
|
2317
|
+
corsAllowedOrigins: [String!]
|
|
2314
2318
|
}
|
|
2315
2319
|
|
|
2316
2320
|
type RoutingSnapshot {
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2321
|
+
hash: String
|
|
2322
|
+
tree: String
|
|
2323
|
+
message: String
|
|
2324
|
+
author: String
|
|
2325
|
+
createdAt: Uint32
|
|
2322
2326
|
}
|
|
2323
2327
|
|
|
2324
2328
|
type RuntimeInfo {
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2329
|
+
pid: String
|
|
2330
|
+
port: String
|
|
2331
|
+
uptime: String
|
|
2332
|
+
memoryUsage: Float32
|
|
2333
|
+
cpuUsage: Float32
|
|
2330
2334
|
}
|
|
2331
2335
|
|
|
2332
2336
|
type SessionConfig {
|
|
2333
|
-
|
|
2334
|
-
|
|
2337
|
+
cacheTtl: Uint32
|
|
2338
|
+
ttl: Uint32
|
|
2335
2339
|
}
|
|
2336
2340
|
|
|
2337
2341
|
type SimpleBlockletMeta {
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2342
|
+
did: String
|
|
2343
|
+
name: String
|
|
2344
|
+
version: String
|
|
2345
|
+
description: String
|
|
2346
|
+
title: String
|
|
2347
|
+
bundleDid: String
|
|
2348
|
+
bundleName: String
|
|
2345
2349
|
}
|
|
2346
2350
|
|
|
2347
2351
|
type SimpleBlockletState {
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2352
|
+
meta: SimpleBlockletMeta
|
|
2353
|
+
status: BlockletStatus
|
|
2354
|
+
deployedFrom: String
|
|
2355
|
+
mountPoint: String
|
|
2356
|
+
deletedAt: Uint32
|
|
2353
2357
|
}
|
|
2354
2358
|
|
|
2355
2359
|
type SpaceGateway {
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2360
|
+
name: String
|
|
2361
|
+
url: String
|
|
2362
|
+
protected: String
|
|
2363
|
+
endpoint: String
|
|
2364
|
+
did: String
|
|
2361
2365
|
}
|
|
2362
2366
|
|
|
2363
2367
|
type Tag {
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2368
|
+
id: Uint32
|
|
2369
|
+
title: String
|
|
2370
|
+
description: String
|
|
2371
|
+
color: String
|
|
2372
|
+
createdAt: Uint32
|
|
2373
|
+
updatedAt: Uint32
|
|
2370
2374
|
}
|
|
2371
2375
|
|
|
2372
2376
|
type TrafficInsight {
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2377
|
+
did: String
|
|
2378
|
+
date: String
|
|
2379
|
+
totalRequests: Uint32
|
|
2380
|
+
validRequests: Uint32
|
|
2381
|
+
failedRequests: Uint32
|
|
2382
|
+
generationTime: Uint32
|
|
2383
|
+
uniqueVisitors: Uint32
|
|
2384
|
+
uniqueFiles: Uint32
|
|
2385
|
+
excludedHits: Uint32
|
|
2386
|
+
uniqueReferrers: Uint32
|
|
2387
|
+
uniqueNotFound: Uint32
|
|
2388
|
+
uniqueStaticFiles: Uint32
|
|
2389
|
+
logSize: Uint32
|
|
2390
|
+
bandwidth: Uint32
|
|
2387
2391
|
}
|
|
2388
2392
|
|
|
2389
2393
|
type TrustedFactory {
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2394
|
+
holderDid: String
|
|
2395
|
+
issuerDid: String
|
|
2396
|
+
factoryAddress: String
|
|
2397
|
+
remark: String
|
|
2398
|
+
passport: TrustedPassportMappingTo
|
|
2395
2399
|
}
|
|
2396
2400
|
|
|
2397
2401
|
type TrustedPassport {
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2402
|
+
issuerDid: String
|
|
2403
|
+
remark: String
|
|
2404
|
+
mappings: [TrustedPassportMapping!]
|
|
2401
2405
|
}
|
|
2402
2406
|
|
|
2403
2407
|
type TrustedPassportMapping {
|
|
2404
|
-
|
|
2405
|
-
|
|
2408
|
+
from: TrustedPassportMappingFrom
|
|
2409
|
+
to: TrustedPassportMappingTo
|
|
2406
2410
|
}
|
|
2407
2411
|
|
|
2408
2412
|
type TrustedPassportMappingFrom {
|
|
2409
|
-
|
|
2413
|
+
passport: String
|
|
2410
2414
|
}
|
|
2411
2415
|
|
|
2412
2416
|
type TrustedPassportMappingTo {
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2417
|
+
role: String
|
|
2418
|
+
ttl: String
|
|
2419
|
+
ttlPolicy: String
|
|
2416
2420
|
}
|
|
2417
2421
|
|
|
2418
2422
|
type UpdateList {
|
|
2419
|
-
|
|
2420
|
-
|
|
2423
|
+
id: String
|
|
2424
|
+
meta: BlockletMeta
|
|
2421
2425
|
}
|
|
2422
2426
|
|
|
2423
2427
|
type UserInfo {
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2428
|
+
did: String
|
|
2429
|
+
pk: String
|
|
2430
|
+
role: String
|
|
2431
|
+
avatar: String
|
|
2432
|
+
fullName: String
|
|
2433
|
+
email: String
|
|
2434
|
+
approved: Boolean
|
|
2435
|
+
createdAt: Uint32
|
|
2436
|
+
updatedAt: Uint32
|
|
2437
|
+
locale: String
|
|
2438
|
+
passports: [Passport!]
|
|
2439
|
+
firstLoginAt: Uint32
|
|
2440
|
+
lastLoginAt: Uint32
|
|
2441
|
+
remark: String
|
|
2442
|
+
lastLoginIp: String
|
|
2443
|
+
sourceProvider: String
|
|
2444
|
+
sourceAppPid: String
|
|
2445
|
+
connectedAccounts: [ConnectedAccount!]
|
|
2446
|
+
extra: Any
|
|
2447
|
+
tags: [Tag!]
|
|
2448
|
+
didSpace: Any
|
|
2449
|
+
userSessions: [UserSession!]
|
|
2450
|
+
url: String
|
|
2451
|
+
phone: String
|
|
2452
|
+
inviter: String
|
|
2453
|
+
generation: Uint32
|
|
2450
2454
|
}
|
|
2451
2455
|
|
|
2452
2456
|
type UserSession {
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2457
|
+
id: String
|
|
2458
|
+
visitorId: String
|
|
2459
|
+
appPid: String
|
|
2460
|
+
userDid: String
|
|
2461
|
+
ua: String
|
|
2462
|
+
passportId: String
|
|
2463
|
+
status: String
|
|
2464
|
+
lastLoginIp: String
|
|
2465
|
+
extra: Any
|
|
2466
|
+
createdAt: Uint32
|
|
2467
|
+
updatedAt: Uint32
|
|
2464
2468
|
}
|
|
2465
2469
|
|
|
2466
2470
|
type WalletInfo {
|
|
2467
|
-
|
|
2468
|
-
|
|
2471
|
+
did: String
|
|
2472
|
+
pk: String
|
|
2469
2473
|
}
|
|
2470
2474
|
|
|
2471
2475
|
type WebHook {
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2476
|
+
type: SenderType
|
|
2477
|
+
id: String
|
|
2478
|
+
params: [WebHookParam!]
|
|
2479
|
+
createdAt: Uint32
|
|
2480
|
+
updatedAt: Uint32
|
|
2477
2481
|
}
|
|
2478
2482
|
|
|
2479
2483
|
type WebHookParam {
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2484
|
+
name: String
|
|
2485
|
+
description: String
|
|
2486
|
+
required: Boolean
|
|
2487
|
+
defaultValue: String
|
|
2488
|
+
value: String
|
|
2489
|
+
type: String
|
|
2486
2490
|
}
|
|
2487
2491
|
|
|
2488
2492
|
type WebHookSender {
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
+
type: SenderType
|
|
2494
|
+
title: String
|
|
2495
|
+
description: String
|
|
2496
|
+
params: [WebHookParam!]
|
|
2493
2497
|
}
|
|
2494
2498
|
|
|
2495
2499
|
enum BackendServiceType {
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2500
|
+
daemon
|
|
2501
|
+
blocklet
|
|
2502
|
+
redirect
|
|
2503
|
+
none
|
|
2504
|
+
general_proxy
|
|
2505
|
+
direct_response
|
|
2506
|
+
rewrite
|
|
2507
|
+
component
|
|
2504
2508
|
}
|
|
2505
2509
|
|
|
2506
2510
|
enum BackupTo {
|
|
2507
|
-
|
|
2508
|
-
|
|
2511
|
+
spaces
|
|
2512
|
+
disk
|
|
2509
2513
|
}
|
|
2510
2514
|
|
|
2511
2515
|
enum BlockletSource {
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2516
|
+
registry
|
|
2517
|
+
local
|
|
2518
|
+
upload
|
|
2519
|
+
url
|
|
2520
|
+
custom
|
|
2517
2521
|
}
|
|
2518
2522
|
|
|
2519
2523
|
enum BlockletStatus {
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2524
|
+
added
|
|
2525
|
+
downloading
|
|
2526
|
+
downloaded
|
|
2527
|
+
installing
|
|
2528
|
+
installed
|
|
2529
|
+
starting
|
|
2530
|
+
running
|
|
2531
|
+
stopping
|
|
2532
|
+
stopped
|
|
2533
|
+
error
|
|
2534
|
+
upgrading
|
|
2535
|
+
restarting
|
|
2536
|
+
corrupted
|
|
2537
|
+
waiting
|
|
2538
|
+
deleted
|
|
2539
|
+
unknown
|
|
2536
2540
|
}
|
|
2537
2541
|
|
|
2538
2542
|
enum HeaderMatchType {
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2543
|
+
exact
|
|
2544
|
+
partial
|
|
2545
|
+
regexp
|
|
2542
2546
|
}
|
|
2543
2547
|
|
|
2544
2548
|
enum PublishType {
|
|
2545
|
-
|
|
2546
|
-
|
|
2549
|
+
resource
|
|
2550
|
+
pack
|
|
2547
2551
|
}
|
|
2548
2552
|
|
|
2549
2553
|
enum ReleaseStatus {
|
|
2550
|
-
|
|
2551
|
-
|
|
2554
|
+
draft
|
|
2555
|
+
published
|
|
2552
2556
|
}
|
|
2553
2557
|
|
|
2554
2558
|
enum SenderType {
|
|
2555
|
-
|
|
2556
|
-
|
|
2559
|
+
slack
|
|
2560
|
+
api
|
|
2557
2561
|
}
|
|
2558
2562
|
|
|
2559
2563
|
enum StatusCode {
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2564
|
+
ok
|
|
2565
|
+
blocklet_not_found
|
|
2566
|
+
blocklet_not_purchased
|
|
2567
|
+
forbidden
|
|
2568
|
+
internal
|
|
2569
|
+
timeout
|
|
2566
2570
|
}
|
|
2567
2571
|
|
|
2568
2572
|
scalar Upload
|
|
2569
2573
|
|
|
2570
2574
|
type Mutation {
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2575
|
+
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
2576
|
+
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
2577
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
2578
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
2579
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
2580
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
2581
|
+
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
2582
|
+
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
2583
|
+
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
2584
|
+
checkComponentsForUpdates(input: RequestBlockletInput): ResponseCheckComponentsForUpdates
|
|
2585
|
+
upgradeComponents(input: RequestUpdateComponentsInput): ResponseBlocklet
|
|
2586
|
+
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
2587
|
+
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
2588
|
+
configNavigations(input: RequestConfigNavigationsInput): ResponseBlocklet
|
|
2589
|
+
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
2590
|
+
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2591
|
+
sendEmail(input: RequestSendEmailInput): GeneralResponse
|
|
2592
|
+
sendPush(input: RequestSendPushInput): GeneralResponse
|
|
2593
|
+
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2594
|
+
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2595
|
+
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
|
2596
|
+
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2597
|
+
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
2598
|
+
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
2599
|
+
updateAppSessionConfig(input: RequestUpdateAppSessionConfigInput): ResponseBlocklet
|
|
2600
|
+
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
2601
|
+
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
2602
|
+
backupBlocklet(input: RequestBackupBlockletInput): GeneralResponse
|
|
2603
|
+
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
|
2604
|
+
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
|
2605
|
+
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
|
2606
|
+
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
|
2607
|
+
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
|
2608
|
+
updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
|
|
2609
|
+
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
|
2610
|
+
updateInviteSettings(input: RequestUpdateInviteSettingsInput): GeneralResponse
|
|
2611
|
+
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
2612
|
+
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
2613
|
+
upgradeNodeVersion: ResponseUpgradeNodeVersion
|
|
2614
|
+
restartServer: ResponseRestartServer
|
|
2615
|
+
resetNode(input: RequestResetNodeInput): ResponseResetNode
|
|
2616
|
+
updateGateway(input: RequestGatewayInput): ResponseGateway
|
|
2617
|
+
clearCache(input: RequestClearCacheInput): ResponseClearCache
|
|
2618
|
+
createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
|
|
2619
|
+
createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
|
2620
|
+
deleteInvitation(input: RequestDeleteInvitationInput): GeneralResponse
|
|
2621
|
+
createPassportIssuance(input: RequestCreatePassportIssuanceInput): ResponseCreatePassportIssuance
|
|
2622
|
+
deletePassportIssuance(input: RequestDeleteTeamSessionInput): GeneralResponse
|
|
2623
|
+
configTrustedPassports(input: RequestConfigTrustedPassportsInput): GeneralResponse
|
|
2624
|
+
configTrustedFactories(input: RequestConfigTrustedFactoriesInput): GeneralResponse
|
|
2625
|
+
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2626
|
+
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2627
|
+
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2628
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2629
|
+
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2630
|
+
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2631
|
+
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
2632
|
+
revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
2633
|
+
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
2634
|
+
removeUserPassport(input: RequestRevokeUserPassportInput): GeneralResponse
|
|
2635
|
+
switchProfile(input: RequestSwitchProfileInput): ResponseUser
|
|
2636
|
+
createRole(input: RequestCreateRoleInput): ResponseRole
|
|
2637
|
+
updateRole(input: RequestTeamRoleInput): ResponseRole
|
|
2638
|
+
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
|
2639
|
+
createPermission(input: RequestCreatePermissionInput): ResponsePermission
|
|
2640
|
+
updatePermission(input: RequestTeamPermissionInput): ResponsePermission
|
|
2641
|
+
deletePermission(input: RequestDeletePermissionInput): GeneralResponse
|
|
2642
|
+
grantPermissionForRole(input: RequestGrantPermissionForRoleInput): GeneralResponse
|
|
2643
|
+
revokePermissionFromRole(input: RequestRevokePermissionFromRoleInput): GeneralResponse
|
|
2644
|
+
updatePermissionsForRole(input: RequestUpdatePermissionsForRoleInput): ResponseRole
|
|
2645
|
+
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2646
|
+
addBlockletStore(input: RequestAddBlockletStoreInput): GeneralResponse
|
|
2647
|
+
deleteBlockletStore(input: RequestDeleteBlockletStoreInput): GeneralResponse
|
|
2648
|
+
createTag(input: RequestTagInput): ResponseTag
|
|
2649
|
+
updateTag(input: RequestTagInput): ResponseTag
|
|
2650
|
+
deleteTag(input: RequestTagInput): ResponseTag
|
|
2651
|
+
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2652
|
+
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2653
|
+
readBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
|
2654
|
+
unreadBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
|
2655
|
+
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
2656
|
+
addDomainAlias(input: RequestAddDomainAliasInput): ResponseRoutingSite
|
|
2657
|
+
deleteDomainAlias(input: RequestDeleteDomainAliasInput): ResponseRoutingSite
|
|
2658
|
+
deleteRoutingSite(input: RequestDeleteRoutingSiteInput): GeneralResponse
|
|
2659
|
+
updateRoutingSite(input: RequestUpdateRoutingSiteInput): ResponseRoutingSite
|
|
2660
|
+
addRoutingRule(input: RequestAddRoutingRuleInput): ResponseRoutingSite
|
|
2661
|
+
updateRoutingRule(input: RequestUpdateRoutingRuleInput): ResponseRoutingSite
|
|
2662
|
+
deleteRoutingRule(input: RequestDeleteRoutingRuleInput): ResponseRoutingSite
|
|
2663
|
+
takeRoutingSnapshot(input: RequestTakeRoutingSnapshotInput): ResponseTakeRoutingSnapshot
|
|
2664
|
+
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
2665
|
+
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
2666
|
+
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
2667
|
+
issueLetsEncryptCert(input: RequestAddLetsEncryptCertInput): ResponseAddLetsEncryptCert
|
|
2668
|
+
createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
|
|
2669
|
+
updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
|
|
2670
|
+
deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
|
|
2671
|
+
createWebHook(input: RequestCreateWebHookInput): ResponseCreateWebHook
|
|
2672
|
+
deleteWebHook(input: RequestDeleteWebHookInput): ResponseDeleteWebHook
|
|
2673
|
+
startSession(input: RequestStartSessionInput): ResponseGetSession
|
|
2674
|
+
updateSession(input: RequestUpdateSessionInput): ResponseGetSession
|
|
2675
|
+
endSession(input: RequestEndSessionInput): ResponseGetSession
|
|
2676
|
+
createProject(input: RequestCreateProjectInput): ResponseProject
|
|
2677
|
+
updateProject(input: RequestUpdateProjectInput): ResponseProject
|
|
2678
|
+
deleteProject(input: RequestProjectInput): GeneralResponse
|
|
2679
|
+
createRelease(input: RequestCreateReleaseInput): ResponseRelease
|
|
2680
|
+
deleteRelease(input: RequestReleaseInput): GeneralResponse
|
|
2681
|
+
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2682
|
+
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2683
|
+
disconnectFromStore(input: RequestDisconnectFromStoreInput): ResponseDisconnectFromStore
|
|
2684
|
+
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2685
|
+
connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
|
|
2682
2686
|
}
|
|
2683
2687
|
|
|
2684
2688
|
type Query {
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
}`;
|
|
2689
|
+
getBlocklet(input: RequestBlockletDetailInput): ResponseBlocklet
|
|
2690
|
+
getBlockletMetaFromUrl(input: RequestBlockletMetaFromUrlInput): ResponseBlockletMetaFromUrl
|
|
2691
|
+
getBlockletDiff(input: RequestBlockletDiffInput): ResponseBlockletDiff
|
|
2692
|
+
getBlocklets(input: RequestGetBlockletsInput): ResponseGetBlocklets
|
|
2693
|
+
getBlockletRuntimeHistory(input: RequestBlockletRuntimeHistoryInput): ResponseBlockletRuntimeHistory
|
|
2694
|
+
getBlockletsFromBackup: ResponseBlockletsFromBackup
|
|
2695
|
+
getDynamicComponents(input: RequestGetDynamicComponentsInput): ResponseGetDynamicComponents
|
|
2696
|
+
getNodeInfo: ResponseGetNodeInfo
|
|
2697
|
+
resetNodeStatus: ResponseGetNodeInfo
|
|
2698
|
+
getNodeEnv: ResponseGetNodeEnv
|
|
2699
|
+
checkNodeVersion: ResponseCheckNodeVersion
|
|
2700
|
+
getDelegationState: ResponseDelegationState
|
|
2701
|
+
getNodeRuntimeHistory(input: RequestNodeRuntimeHistoryInput): ResponseNodeRuntimeHistory
|
|
2702
|
+
getBlockletMeta(input: RequestBlockletMetaInput): ResponseBlockletMeta
|
|
2703
|
+
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
|
2704
|
+
getBlockletNotifications(input: RequestGetBlockletNotificationsInput): ResponseGetBlockletNotifications
|
|
2705
|
+
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
|
2706
|
+
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
|
2707
|
+
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
|
2708
|
+
getRoutingProviders: ResponseGetRoutingProviders
|
|
2709
|
+
isDidDomain(input: RequestIsDidDomainInput): ResponseIsDidDomain
|
|
2710
|
+
getCertificates: ResponseGetCertificates
|
|
2711
|
+
checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
|
|
2712
|
+
findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
|
|
2713
|
+
getAccessKeys: ResponseAccessKeys
|
|
2714
|
+
getWebHooks: ResponseWebHooks
|
|
2715
|
+
getWebhookSenders: ResponseSenderList
|
|
2716
|
+
sendTestMessage(input: RequestSendMsgInput): ResponseSendMsg
|
|
2717
|
+
getSession(input: RequestGetSessionInput): ResponseGetSession
|
|
2718
|
+
getRoles(input: TeamInput): ResponseRoles
|
|
2719
|
+
getRole(input: RequestTeamRoleInput): ResponseRole
|
|
2720
|
+
getPermissions(input: TeamInput): ResponsePermissions
|
|
2721
|
+
getInvitations(input: TeamInput): ResponseGetInvitations
|
|
2722
|
+
getUsers(input: RequestUsersInput): ResponseUsers
|
|
2723
|
+
getUser(input: RequestTeamUserInput): ResponseUser
|
|
2724
|
+
getUsersCount(input: TeamInput): ResponseGetUsersCount
|
|
2725
|
+
getUsersCountPerRole(input: TeamInput): ResponseGetUsersCountPerRole
|
|
2726
|
+
getOwner(input: TeamInput): ResponseUser
|
|
2727
|
+
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2728
|
+
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2729
|
+
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
2730
|
+
getTags(input: RequestTagsInput): ResponseTags
|
|
2731
|
+
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2732
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2733
|
+
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
|
2734
|
+
getBlockletSpaceGateways(input: RequestBlockletInput): ResponseGetBlockletSpaceGateways
|
|
2735
|
+
getTrafficInsights(input: RequestGetTrafficInsightsInput): ResponseGetTrafficInsights
|
|
2736
|
+
getProjects(input: RequestGetProjectsInput): ResponseGetProjects
|
|
2737
|
+
getProject(input: RequestProjectInput): ResponseGetProject
|
|
2738
|
+
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2739
|
+
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2740
|
+
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2741
|
+
}`;
|