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