@blocklet/server-js 1.17.7-beta-20251225-073259-cb6ecf68 → 1.17.7-beta-20251229-085620-84f09930
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/dist/browser.d.ts +52 -99
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +420 -637
- package/dist/types.js +90 -220
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +1651 -418
- package/lib/node.d.ts +52 -99
- package/lib/schema/graphql.json +420 -637
- package/lib/types.js +90 -220
- package/lib/types.js.map +1 -1
- package/package.json +4 -4
package/docs/QUERIES.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# ABT Node GraphQL API List
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
> Updated on 2025-12-28T00:43:23.886Z
|
|
4
5
|
|
|
5
6
|
## Table of Contents
|
|
6
7
|
|
|
@@ -1138,6 +1139,8 @@
|
|
|
1138
1139
|
uptime
|
|
1139
1140
|
}
|
|
1140
1141
|
settings {
|
|
1142
|
+
authentication
|
|
1143
|
+
didConnect
|
|
1141
1144
|
enablePassportIssuance
|
|
1142
1145
|
enableSessionHardening
|
|
1143
1146
|
initialized
|
|
@@ -2735,6 +2738,8 @@
|
|
|
2735
2738
|
uptime
|
|
2736
2739
|
}
|
|
2737
2740
|
settings {
|
|
2741
|
+
authentication
|
|
2742
|
+
didConnect
|
|
2738
2743
|
enablePassportIssuance
|
|
2739
2744
|
enableSessionHardening
|
|
2740
2745
|
initialized
|
|
@@ -3015,6 +3020,12 @@
|
|
|
3015
3020
|
sig
|
|
3016
3021
|
}
|
|
3017
3022
|
}
|
|
3023
|
+
paging {
|
|
3024
|
+
page
|
|
3025
|
+
pageCount
|
|
3026
|
+
pageSize
|
|
3027
|
+
total
|
|
3028
|
+
}
|
|
3018
3029
|
}
|
|
3019
3030
|
}
|
|
3020
3031
|
```
|
|
@@ -5578,79 +5589,6 @@ No arguments
|
|
|
5578
5589
|
}
|
|
5579
5590
|
```
|
|
5580
5591
|
|
|
5581
|
-
### getRoutingSnapshots
|
|
5582
|
-
|
|
5583
|
-
#### Arguments
|
|
5584
|
-
|
|
5585
|
-
* **input**, optional, null
|
|
5586
|
-
|
|
5587
|
-
#### Result Format
|
|
5588
|
-
|
|
5589
|
-
```graphql
|
|
5590
|
-
{
|
|
5591
|
-
getRoutingSnapshots {
|
|
5592
|
-
code
|
|
5593
|
-
snapshots {
|
|
5594
|
-
author
|
|
5595
|
-
createdAt
|
|
5596
|
-
hash
|
|
5597
|
-
message
|
|
5598
|
-
tree
|
|
5599
|
-
}
|
|
5600
|
-
}
|
|
5601
|
-
}
|
|
5602
|
-
```
|
|
5603
|
-
|
|
5604
|
-
### getSnapshotSites
|
|
5605
|
-
|
|
5606
|
-
#### Arguments
|
|
5607
|
-
|
|
5608
|
-
* **input**, optional, null
|
|
5609
|
-
|
|
5610
|
-
#### Result Format
|
|
5611
|
-
|
|
5612
|
-
```graphql
|
|
5613
|
-
{
|
|
5614
|
-
getSnapshotSites {
|
|
5615
|
-
code
|
|
5616
|
-
sites {
|
|
5617
|
-
corsAllowedOrigins
|
|
5618
|
-
domain
|
|
5619
|
-
domainAliases
|
|
5620
|
-
id
|
|
5621
|
-
isProtected
|
|
5622
|
-
rules {
|
|
5623
|
-
id
|
|
5624
|
-
isProtected
|
|
5625
|
-
from {
|
|
5626
|
-
pathPrefix
|
|
5627
|
-
header {
|
|
5628
|
-
key
|
|
5629
|
-
type
|
|
5630
|
-
value
|
|
5631
|
-
}
|
|
5632
|
-
}
|
|
5633
|
-
to {
|
|
5634
|
-
componentId
|
|
5635
|
-
did
|
|
5636
|
-
interfaceName
|
|
5637
|
-
pageGroup
|
|
5638
|
-
port
|
|
5639
|
-
redirectCode
|
|
5640
|
-
type
|
|
5641
|
-
url
|
|
5642
|
-
response {
|
|
5643
|
-
body
|
|
5644
|
-
contentType
|
|
5645
|
-
status
|
|
5646
|
-
}
|
|
5647
|
-
}
|
|
5648
|
-
}
|
|
5649
|
-
}
|
|
5650
|
-
}
|
|
5651
|
-
}
|
|
5652
|
-
```
|
|
5653
|
-
|
|
5654
5592
|
### getRoutingProviders
|
|
5655
5593
|
|
|
5656
5594
|
#### Arguments
|
|
@@ -10697,6 +10635,7 @@ No arguments
|
|
|
10697
10635
|
|
|
10698
10636
|
No Subscriptions supported yet.
|
|
10699
10637
|
|
|
10638
|
+
|
|
10700
10639
|
## Mutations
|
|
10701
10640
|
|
|
10702
10641
|
### installBlocklet
|
|
@@ -11831,6 +11770,8 @@ mutation {
|
|
|
11831
11770
|
uptime
|
|
11832
11771
|
}
|
|
11833
11772
|
settings {
|
|
11773
|
+
authentication
|
|
11774
|
+
didConnect
|
|
11834
11775
|
enablePassportIssuance
|
|
11835
11776
|
enableSessionHardening
|
|
11836
11777
|
initialized
|
|
@@ -13247,6 +13188,8 @@ mutation {
|
|
|
13247
13188
|
uptime
|
|
13248
13189
|
}
|
|
13249
13190
|
settings {
|
|
13191
|
+
authentication
|
|
13192
|
+
didConnect
|
|
13250
13193
|
enablePassportIssuance
|
|
13251
13194
|
enableSessionHardening
|
|
13252
13195
|
initialized
|
|
@@ -14663,6 +14606,8 @@ mutation {
|
|
|
14663
14606
|
uptime
|
|
14664
14607
|
}
|
|
14665
14608
|
settings {
|
|
14609
|
+
authentication
|
|
14610
|
+
didConnect
|
|
14666
14611
|
enablePassportIssuance
|
|
14667
14612
|
enableSessionHardening
|
|
14668
14613
|
initialized
|
|
@@ -16079,6 +16024,8 @@ mutation {
|
|
|
16079
16024
|
uptime
|
|
16080
16025
|
}
|
|
16081
16026
|
settings {
|
|
16027
|
+
authentication
|
|
16028
|
+
didConnect
|
|
16082
16029
|
enablePassportIssuance
|
|
16083
16030
|
enableSessionHardening
|
|
16084
16031
|
initialized
|
|
@@ -17495,6 +17442,8 @@ mutation {
|
|
|
17495
17442
|
uptime
|
|
17496
17443
|
}
|
|
17497
17444
|
settings {
|
|
17445
|
+
authentication
|
|
17446
|
+
didConnect
|
|
17498
17447
|
enablePassportIssuance
|
|
17499
17448
|
enableSessionHardening
|
|
17500
17449
|
initialized
|
|
@@ -18911,6 +18860,8 @@ mutation {
|
|
|
18911
18860
|
uptime
|
|
18912
18861
|
}
|
|
18913
18862
|
settings {
|
|
18863
|
+
authentication
|
|
18864
|
+
didConnect
|
|
18914
18865
|
enablePassportIssuance
|
|
18915
18866
|
enableSessionHardening
|
|
18916
18867
|
initialized
|
|
@@ -20327,6 +20278,8 @@ mutation {
|
|
|
20327
20278
|
uptime
|
|
20328
20279
|
}
|
|
20329
20280
|
settings {
|
|
20281
|
+
authentication
|
|
20282
|
+
didConnect
|
|
20330
20283
|
enablePassportIssuance
|
|
20331
20284
|
enableSessionHardening
|
|
20332
20285
|
initialized
|
|
@@ -21743,6 +21696,8 @@ mutation {
|
|
|
21743
21696
|
uptime
|
|
21744
21697
|
}
|
|
21745
21698
|
settings {
|
|
21699
|
+
authentication
|
|
21700
|
+
didConnect
|
|
21746
21701
|
enablePassportIssuance
|
|
21747
21702
|
enableSessionHardening
|
|
21748
21703
|
initialized
|
|
@@ -23159,6 +23114,1587 @@ mutation {
|
|
|
23159
23114
|
uptime
|
|
23160
23115
|
}
|
|
23161
23116
|
settings {
|
|
23117
|
+
authentication
|
|
23118
|
+
didConnect
|
|
23119
|
+
enablePassportIssuance
|
|
23120
|
+
enableSessionHardening
|
|
23121
|
+
initialized
|
|
23122
|
+
notification
|
|
23123
|
+
oauth
|
|
23124
|
+
publicToStore
|
|
23125
|
+
theme
|
|
23126
|
+
whoCanAccess
|
|
23127
|
+
aigne {
|
|
23128
|
+
accessKeyId
|
|
23129
|
+
key
|
|
23130
|
+
model
|
|
23131
|
+
provider
|
|
23132
|
+
secretAccessKey
|
|
23133
|
+
url
|
|
23134
|
+
validationResult
|
|
23135
|
+
}
|
|
23136
|
+
autoBackup {
|
|
23137
|
+
enabled
|
|
23138
|
+
}
|
|
23139
|
+
autoCheckUpdate {
|
|
23140
|
+
enabled
|
|
23141
|
+
}
|
|
23142
|
+
children {
|
|
23143
|
+
deletedAt
|
|
23144
|
+
deployedFrom
|
|
23145
|
+
mountPoint
|
|
23146
|
+
status
|
|
23147
|
+
meta {
|
|
23148
|
+
bundleDid
|
|
23149
|
+
bundleName
|
|
23150
|
+
description
|
|
23151
|
+
did
|
|
23152
|
+
name
|
|
23153
|
+
title
|
|
23154
|
+
version
|
|
23155
|
+
}
|
|
23156
|
+
}
|
|
23157
|
+
endpointList {
|
|
23158
|
+
appDescription
|
|
23159
|
+
appName
|
|
23160
|
+
endpoint
|
|
23161
|
+
id
|
|
23162
|
+
protected
|
|
23163
|
+
scope
|
|
23164
|
+
url
|
|
23165
|
+
}
|
|
23166
|
+
federated {
|
|
23167
|
+
config {
|
|
23168
|
+
appId
|
|
23169
|
+
appPid
|
|
23170
|
+
autoLogin
|
|
23171
|
+
delegation
|
|
23172
|
+
isMaster
|
|
23173
|
+
}
|
|
23174
|
+
sites {
|
|
23175
|
+
aliasDid
|
|
23176
|
+
aliasDomain
|
|
23177
|
+
appDescription
|
|
23178
|
+
appId
|
|
23179
|
+
appliedAt
|
|
23180
|
+
appLogo
|
|
23181
|
+
appLogoRect
|
|
23182
|
+
appName
|
|
23183
|
+
appPid
|
|
23184
|
+
appUrl
|
|
23185
|
+
did
|
|
23186
|
+
isMaster
|
|
23187
|
+
pk
|
|
23188
|
+
serverId
|
|
23189
|
+
serverVersion
|
|
23190
|
+
status
|
|
23191
|
+
version
|
|
23192
|
+
}
|
|
23193
|
+
}
|
|
23194
|
+
gateway {
|
|
23195
|
+
cacheEnabled
|
|
23196
|
+
blockPolicy {
|
|
23197
|
+
blacklist
|
|
23198
|
+
enabled
|
|
23199
|
+
autoBlocking {
|
|
23200
|
+
blockDuration
|
|
23201
|
+
enabled
|
|
23202
|
+
statusCodes
|
|
23203
|
+
windowQuota
|
|
23204
|
+
windowSize
|
|
23205
|
+
}
|
|
23206
|
+
}
|
|
23207
|
+
proxyPolicy {
|
|
23208
|
+
enabled
|
|
23209
|
+
realIpHeader
|
|
23210
|
+
trustedProxies
|
|
23211
|
+
trustRecursive
|
|
23212
|
+
}
|
|
23213
|
+
requestLimit {
|
|
23214
|
+
burstDelay
|
|
23215
|
+
burstFactor
|
|
23216
|
+
enabled
|
|
23217
|
+
global
|
|
23218
|
+
methods
|
|
23219
|
+
rate
|
|
23220
|
+
}
|
|
23221
|
+
wafPolicy {
|
|
23222
|
+
enabled
|
|
23223
|
+
inboundAnomalyScoreThreshold
|
|
23224
|
+
logLevel
|
|
23225
|
+
mode
|
|
23226
|
+
outboundAnomalyScoreThreshold
|
|
23227
|
+
}
|
|
23228
|
+
}
|
|
23229
|
+
invite {
|
|
23230
|
+
enabled
|
|
23231
|
+
}
|
|
23232
|
+
navigations {
|
|
23233
|
+
activeColor
|
|
23234
|
+
activeIcon
|
|
23235
|
+
color
|
|
23236
|
+
component
|
|
23237
|
+
description
|
|
23238
|
+
from
|
|
23239
|
+
icon
|
|
23240
|
+
id
|
|
23241
|
+
link
|
|
23242
|
+
parent
|
|
23243
|
+
private
|
|
23244
|
+
role
|
|
23245
|
+
section
|
|
23246
|
+
title
|
|
23247
|
+
visible
|
|
23248
|
+
}
|
|
23249
|
+
org {
|
|
23250
|
+
enabled
|
|
23251
|
+
maxMemberPerOrg
|
|
23252
|
+
maxOrgPerUser
|
|
23253
|
+
}
|
|
23254
|
+
owner {
|
|
23255
|
+
did
|
|
23256
|
+
pk
|
|
23257
|
+
}
|
|
23258
|
+
session {
|
|
23259
|
+
cacheTtl
|
|
23260
|
+
enableBlacklist
|
|
23261
|
+
salt
|
|
23262
|
+
ttl
|
|
23263
|
+
email {
|
|
23264
|
+
domainBlackList
|
|
23265
|
+
domainWhiteList
|
|
23266
|
+
enabled
|
|
23267
|
+
enableDomainBlackList
|
|
23268
|
+
enableDomainWhiteList
|
|
23269
|
+
requireUnique
|
|
23270
|
+
requireVerified
|
|
23271
|
+
trustOauthProviders
|
|
23272
|
+
trustedIssuers {
|
|
23273
|
+
id
|
|
23274
|
+
name
|
|
23275
|
+
pk
|
|
23276
|
+
}
|
|
23277
|
+
}
|
|
23278
|
+
phone {
|
|
23279
|
+
enabled
|
|
23280
|
+
enableRegionBlackList
|
|
23281
|
+
enableRegionWhiteList
|
|
23282
|
+
regionBlackList
|
|
23283
|
+
regionWhiteList
|
|
23284
|
+
requireUnique
|
|
23285
|
+
requireVerified
|
|
23286
|
+
trustedIssuers {
|
|
23287
|
+
id
|
|
23288
|
+
name
|
|
23289
|
+
pk
|
|
23290
|
+
}
|
|
23291
|
+
}
|
|
23292
|
+
}
|
|
23293
|
+
storeList {
|
|
23294
|
+
cdnUrl
|
|
23295
|
+
description
|
|
23296
|
+
id
|
|
23297
|
+
logoUrl
|
|
23298
|
+
maintainer
|
|
23299
|
+
name
|
|
23300
|
+
protected
|
|
23301
|
+
scope
|
|
23302
|
+
url
|
|
23303
|
+
}
|
|
23304
|
+
trustedFactories {
|
|
23305
|
+
factoryAddress
|
|
23306
|
+
holderDid
|
|
23307
|
+
issuerDid
|
|
23308
|
+
remark
|
|
23309
|
+
passport {
|
|
23310
|
+
role
|
|
23311
|
+
ttl
|
|
23312
|
+
ttlPolicy
|
|
23313
|
+
}
|
|
23314
|
+
}
|
|
23315
|
+
trustedPassports {
|
|
23316
|
+
issuerDid
|
|
23317
|
+
remark
|
|
23318
|
+
mappings {
|
|
23319
|
+
from {
|
|
23320
|
+
passport
|
|
23321
|
+
}
|
|
23322
|
+
to {
|
|
23323
|
+
role
|
|
23324
|
+
ttl
|
|
23325
|
+
ttlPolicy
|
|
23326
|
+
}
|
|
23327
|
+
}
|
|
23328
|
+
}
|
|
23329
|
+
}
|
|
23330
|
+
site {
|
|
23331
|
+
corsAllowedOrigins
|
|
23332
|
+
domain
|
|
23333
|
+
domainAliases
|
|
23334
|
+
id
|
|
23335
|
+
isProtected
|
|
23336
|
+
rules {
|
|
23337
|
+
id
|
|
23338
|
+
isProtected
|
|
23339
|
+
from {
|
|
23340
|
+
pathPrefix
|
|
23341
|
+
header {
|
|
23342
|
+
key
|
|
23343
|
+
type
|
|
23344
|
+
value
|
|
23345
|
+
}
|
|
23346
|
+
}
|
|
23347
|
+
to {
|
|
23348
|
+
componentId
|
|
23349
|
+
did
|
|
23350
|
+
interfaceName
|
|
23351
|
+
pageGroup
|
|
23352
|
+
port
|
|
23353
|
+
redirectCode
|
|
23354
|
+
type
|
|
23355
|
+
url
|
|
23356
|
+
response {
|
|
23357
|
+
body
|
|
23358
|
+
contentType
|
|
23359
|
+
status
|
|
23360
|
+
}
|
|
23361
|
+
}
|
|
23362
|
+
}
|
|
23363
|
+
}
|
|
23364
|
+
trustedFactories {
|
|
23365
|
+
factoryAddress
|
|
23366
|
+
holderDid
|
|
23367
|
+
issuerDid
|
|
23368
|
+
remark
|
|
23369
|
+
passport {
|
|
23370
|
+
role
|
|
23371
|
+
ttl
|
|
23372
|
+
ttlPolicy
|
|
23373
|
+
}
|
|
23374
|
+
}
|
|
23375
|
+
trustedPassports {
|
|
23376
|
+
issuerDid
|
|
23377
|
+
remark
|
|
23378
|
+
mappings {
|
|
23379
|
+
from {
|
|
23380
|
+
passport
|
|
23381
|
+
}
|
|
23382
|
+
to {
|
|
23383
|
+
role
|
|
23384
|
+
ttl
|
|
23385
|
+
ttlPolicy
|
|
23386
|
+
}
|
|
23387
|
+
}
|
|
23388
|
+
}
|
|
23389
|
+
vaults {
|
|
23390
|
+
approverDid
|
|
23391
|
+
approverPk
|
|
23392
|
+
approverSig
|
|
23393
|
+
at
|
|
23394
|
+
did
|
|
23395
|
+
pk
|
|
23396
|
+
sig
|
|
23397
|
+
}
|
|
23398
|
+
}
|
|
23399
|
+
}
|
|
23400
|
+
}
|
|
23401
|
+
```
|
|
23402
|
+
|
|
23403
|
+
### checkComponentsForUpdates
|
|
23404
|
+
|
|
23405
|
+
#### Arguments
|
|
23406
|
+
|
|
23407
|
+
* **input**, optional, null
|
|
23408
|
+
|
|
23409
|
+
#### Result Format
|
|
23410
|
+
|
|
23411
|
+
```graphql
|
|
23412
|
+
mutation {
|
|
23413
|
+
checkComponentsForUpdates {
|
|
23414
|
+
code
|
|
23415
|
+
preUpdateInfo {
|
|
23416
|
+
updateId
|
|
23417
|
+
updateList {
|
|
23418
|
+
id
|
|
23419
|
+
meta {
|
|
23420
|
+
bundleDid
|
|
23421
|
+
bundleName
|
|
23422
|
+
community
|
|
23423
|
+
description
|
|
23424
|
+
did
|
|
23425
|
+
documentation
|
|
23426
|
+
engine
|
|
23427
|
+
group
|
|
23428
|
+
homepage
|
|
23429
|
+
keywords
|
|
23430
|
+
lastPublishedAt
|
|
23431
|
+
logo
|
|
23432
|
+
main
|
|
23433
|
+
name
|
|
23434
|
+
navigation
|
|
23435
|
+
nftFactory
|
|
23436
|
+
path
|
|
23437
|
+
resources
|
|
23438
|
+
screenshots
|
|
23439
|
+
support
|
|
23440
|
+
title
|
|
23441
|
+
version
|
|
23442
|
+
author {
|
|
23443
|
+
email
|
|
23444
|
+
name
|
|
23445
|
+
url
|
|
23446
|
+
}
|
|
23447
|
+
capabilities {
|
|
23448
|
+
clusterMode
|
|
23449
|
+
component
|
|
23450
|
+
didSpace
|
|
23451
|
+
navigation
|
|
23452
|
+
resourceExportApi
|
|
23453
|
+
}
|
|
23454
|
+
components {
|
|
23455
|
+
mountPoint
|
|
23456
|
+
name
|
|
23457
|
+
required
|
|
23458
|
+
}
|
|
23459
|
+
contributors {
|
|
23460
|
+
email
|
|
23461
|
+
name
|
|
23462
|
+
url
|
|
23463
|
+
}
|
|
23464
|
+
dist {
|
|
23465
|
+
integrity
|
|
23466
|
+
tarball
|
|
23467
|
+
}
|
|
23468
|
+
docker {
|
|
23469
|
+
image
|
|
23470
|
+
installNodeModules
|
|
23471
|
+
runBaseScript
|
|
23472
|
+
shell
|
|
23473
|
+
}
|
|
23474
|
+
environments {
|
|
23475
|
+
default
|
|
23476
|
+
description
|
|
23477
|
+
name
|
|
23478
|
+
required
|
|
23479
|
+
secure
|
|
23480
|
+
shared
|
|
23481
|
+
validation
|
|
23482
|
+
}
|
|
23483
|
+
events {
|
|
23484
|
+
description
|
|
23485
|
+
type
|
|
23486
|
+
}
|
|
23487
|
+
interfaces {
|
|
23488
|
+
cacheable
|
|
23489
|
+
name
|
|
23490
|
+
pageGroups
|
|
23491
|
+
path
|
|
23492
|
+
port
|
|
23493
|
+
prefix
|
|
23494
|
+
protocol
|
|
23495
|
+
type
|
|
23496
|
+
services {
|
|
23497
|
+
config
|
|
23498
|
+
name
|
|
23499
|
+
}
|
|
23500
|
+
}
|
|
23501
|
+
maintainers {
|
|
23502
|
+
email
|
|
23503
|
+
name
|
|
23504
|
+
url
|
|
23505
|
+
}
|
|
23506
|
+
owner {
|
|
23507
|
+
avatar
|
|
23508
|
+
did
|
|
23509
|
+
email
|
|
23510
|
+
fullName
|
|
23511
|
+
}
|
|
23512
|
+
payment {
|
|
23513
|
+
price {
|
|
23514
|
+
address
|
|
23515
|
+
symbol
|
|
23516
|
+
value
|
|
23517
|
+
}
|
|
23518
|
+
share {
|
|
23519
|
+
address
|
|
23520
|
+
name
|
|
23521
|
+
value
|
|
23522
|
+
}
|
|
23523
|
+
}
|
|
23524
|
+
repository {
|
|
23525
|
+
type
|
|
23526
|
+
url
|
|
23527
|
+
}
|
|
23528
|
+
requirements {
|
|
23529
|
+
aigne
|
|
23530
|
+
cpu
|
|
23531
|
+
os
|
|
23532
|
+
server
|
|
23533
|
+
fuels {
|
|
23534
|
+
address
|
|
23535
|
+
endpoint
|
|
23536
|
+
reason
|
|
23537
|
+
value
|
|
23538
|
+
}
|
|
23539
|
+
}
|
|
23540
|
+
resource {
|
|
23541
|
+
exportApi
|
|
23542
|
+
bundles {
|
|
23543
|
+
did
|
|
23544
|
+
public
|
|
23545
|
+
type
|
|
23546
|
+
}
|
|
23547
|
+
types {
|
|
23548
|
+
description
|
|
23549
|
+
type
|
|
23550
|
+
}
|
|
23551
|
+
}
|
|
23552
|
+
stats {
|
|
23553
|
+
downloads
|
|
23554
|
+
purchases
|
|
23555
|
+
star
|
|
23556
|
+
}
|
|
23557
|
+
}
|
|
23558
|
+
}
|
|
23559
|
+
}
|
|
23560
|
+
}
|
|
23561
|
+
}
|
|
23562
|
+
```
|
|
23563
|
+
|
|
23564
|
+
### upgradeComponents
|
|
23565
|
+
|
|
23566
|
+
#### Arguments
|
|
23567
|
+
|
|
23568
|
+
* **input**, optional, null
|
|
23569
|
+
|
|
23570
|
+
#### Result Format
|
|
23571
|
+
|
|
23572
|
+
```graphql
|
|
23573
|
+
mutation {
|
|
23574
|
+
upgradeComponents {
|
|
23575
|
+
code
|
|
23576
|
+
blocklet {
|
|
23577
|
+
appDid
|
|
23578
|
+
appPid
|
|
23579
|
+
bundleSource
|
|
23580
|
+
createdAt
|
|
23581
|
+
deployedFrom
|
|
23582
|
+
dynamic
|
|
23583
|
+
enableDocker
|
|
23584
|
+
enableDockerNetwork
|
|
23585
|
+
enablePassportIssuance
|
|
23586
|
+
externalSk
|
|
23587
|
+
externalSkSource
|
|
23588
|
+
installedAt
|
|
23589
|
+
mode
|
|
23590
|
+
mountPoint
|
|
23591
|
+
pausedAt
|
|
23592
|
+
port
|
|
23593
|
+
ports
|
|
23594
|
+
source
|
|
23595
|
+
startedAt
|
|
23596
|
+
status
|
|
23597
|
+
stoppedAt
|
|
23598
|
+
structVersion
|
|
23599
|
+
updatedAt
|
|
23600
|
+
appRuntimeInfo {
|
|
23601
|
+
cpus
|
|
23602
|
+
cpuUsage
|
|
23603
|
+
memoryUsage
|
|
23604
|
+
pid
|
|
23605
|
+
port
|
|
23606
|
+
runningDocker
|
|
23607
|
+
uptime
|
|
23608
|
+
}
|
|
23609
|
+
children {
|
|
23610
|
+
bundleSource
|
|
23611
|
+
createdAt
|
|
23612
|
+
deployedFrom
|
|
23613
|
+
dynamic
|
|
23614
|
+
greenStatus
|
|
23615
|
+
installedAt
|
|
23616
|
+
mode
|
|
23617
|
+
mountPoint
|
|
23618
|
+
pausedAt
|
|
23619
|
+
port
|
|
23620
|
+
ports
|
|
23621
|
+
required
|
|
23622
|
+
source
|
|
23623
|
+
startedAt
|
|
23624
|
+
status
|
|
23625
|
+
stoppedAt
|
|
23626
|
+
appRuntimeInfo {
|
|
23627
|
+
cpus
|
|
23628
|
+
cpuUsage
|
|
23629
|
+
memoryUsage
|
|
23630
|
+
pid
|
|
23631
|
+
port
|
|
23632
|
+
runningDocker
|
|
23633
|
+
uptime
|
|
23634
|
+
}
|
|
23635
|
+
children {
|
|
23636
|
+
bundleSource
|
|
23637
|
+
createdAt
|
|
23638
|
+
deployedFrom
|
|
23639
|
+
dynamic
|
|
23640
|
+
greenStatus
|
|
23641
|
+
installedAt
|
|
23642
|
+
mode
|
|
23643
|
+
mountPoint
|
|
23644
|
+
pausedAt
|
|
23645
|
+
port
|
|
23646
|
+
ports
|
|
23647
|
+
required
|
|
23648
|
+
source
|
|
23649
|
+
startedAt
|
|
23650
|
+
status
|
|
23651
|
+
stoppedAt
|
|
23652
|
+
appRuntimeInfo {
|
|
23653
|
+
cpus
|
|
23654
|
+
cpuUsage
|
|
23655
|
+
memoryUsage
|
|
23656
|
+
pid
|
|
23657
|
+
port
|
|
23658
|
+
runningDocker
|
|
23659
|
+
uptime
|
|
23660
|
+
}
|
|
23661
|
+
children {
|
|
23662
|
+
bundleSource
|
|
23663
|
+
createdAt
|
|
23664
|
+
deployedFrom
|
|
23665
|
+
dynamic
|
|
23666
|
+
greenStatus
|
|
23667
|
+
installedAt
|
|
23668
|
+
mode
|
|
23669
|
+
mountPoint
|
|
23670
|
+
pausedAt
|
|
23671
|
+
port
|
|
23672
|
+
ports
|
|
23673
|
+
required
|
|
23674
|
+
source
|
|
23675
|
+
startedAt
|
|
23676
|
+
status
|
|
23677
|
+
stoppedAt
|
|
23678
|
+
appRuntimeInfo {
|
|
23679
|
+
cpus
|
|
23680
|
+
cpuUsage
|
|
23681
|
+
memoryUsage
|
|
23682
|
+
pid
|
|
23683
|
+
port
|
|
23684
|
+
runningDocker
|
|
23685
|
+
uptime
|
|
23686
|
+
}
|
|
23687
|
+
children {
|
|
23688
|
+
bundleSource
|
|
23689
|
+
createdAt
|
|
23690
|
+
deployedFrom
|
|
23691
|
+
dynamic
|
|
23692
|
+
greenStatus
|
|
23693
|
+
installedAt
|
|
23694
|
+
mode
|
|
23695
|
+
mountPoint
|
|
23696
|
+
pausedAt
|
|
23697
|
+
port
|
|
23698
|
+
ports
|
|
23699
|
+
required
|
|
23700
|
+
source
|
|
23701
|
+
startedAt
|
|
23702
|
+
status
|
|
23703
|
+
stoppedAt
|
|
23704
|
+
appRuntimeInfo {
|
|
23705
|
+
cpus
|
|
23706
|
+
cpuUsage
|
|
23707
|
+
memoryUsage
|
|
23708
|
+
pid
|
|
23709
|
+
port
|
|
23710
|
+
runningDocker
|
|
23711
|
+
uptime
|
|
23712
|
+
}
|
|
23713
|
+
children {
|
|
23714
|
+
bundleSource
|
|
23715
|
+
createdAt
|
|
23716
|
+
deployedFrom
|
|
23717
|
+
dynamic
|
|
23718
|
+
greenStatus
|
|
23719
|
+
installedAt
|
|
23720
|
+
mode
|
|
23721
|
+
mountPoint
|
|
23722
|
+
pausedAt
|
|
23723
|
+
port
|
|
23724
|
+
ports
|
|
23725
|
+
required
|
|
23726
|
+
source
|
|
23727
|
+
startedAt
|
|
23728
|
+
status
|
|
23729
|
+
stoppedAt
|
|
23730
|
+
}
|
|
23731
|
+
configs {
|
|
23732
|
+
custom
|
|
23733
|
+
description
|
|
23734
|
+
key
|
|
23735
|
+
required
|
|
23736
|
+
secure
|
|
23737
|
+
shared
|
|
23738
|
+
validation
|
|
23739
|
+
value
|
|
23740
|
+
}
|
|
23741
|
+
dependents {
|
|
23742
|
+
id
|
|
23743
|
+
required
|
|
23744
|
+
}
|
|
23745
|
+
diskInfo {
|
|
23746
|
+
app
|
|
23747
|
+
blocklets
|
|
23748
|
+
cache
|
|
23749
|
+
data
|
|
23750
|
+
log
|
|
23751
|
+
}
|
|
23752
|
+
engine {
|
|
23753
|
+
available
|
|
23754
|
+
description
|
|
23755
|
+
displayName
|
|
23756
|
+
logo
|
|
23757
|
+
name
|
|
23758
|
+
version
|
|
23759
|
+
visible
|
|
23760
|
+
}
|
|
23761
|
+
environments {
|
|
23762
|
+
custom
|
|
23763
|
+
description
|
|
23764
|
+
key
|
|
23765
|
+
required
|
|
23766
|
+
secure
|
|
23767
|
+
shared
|
|
23768
|
+
validation
|
|
23769
|
+
value
|
|
23770
|
+
}
|
|
23771
|
+
meta {
|
|
23772
|
+
bundleDid
|
|
23773
|
+
bundleName
|
|
23774
|
+
community
|
|
23775
|
+
description
|
|
23776
|
+
did
|
|
23777
|
+
documentation
|
|
23778
|
+
engine
|
|
23779
|
+
group
|
|
23780
|
+
homepage
|
|
23781
|
+
keywords
|
|
23782
|
+
lastPublishedAt
|
|
23783
|
+
logo
|
|
23784
|
+
main
|
|
23785
|
+
name
|
|
23786
|
+
navigation
|
|
23787
|
+
nftFactory
|
|
23788
|
+
path
|
|
23789
|
+
resources
|
|
23790
|
+
screenshots
|
|
23791
|
+
support
|
|
23792
|
+
title
|
|
23793
|
+
version
|
|
23794
|
+
}
|
|
23795
|
+
runtimeInfo {
|
|
23796
|
+
cpus
|
|
23797
|
+
cpuUsage
|
|
23798
|
+
memoryUsage
|
|
23799
|
+
pid
|
|
23800
|
+
port
|
|
23801
|
+
runningDocker
|
|
23802
|
+
uptime
|
|
23803
|
+
}
|
|
23804
|
+
}
|
|
23805
|
+
configs {
|
|
23806
|
+
custom
|
|
23807
|
+
description
|
|
23808
|
+
key
|
|
23809
|
+
required
|
|
23810
|
+
secure
|
|
23811
|
+
shared
|
|
23812
|
+
validation
|
|
23813
|
+
value
|
|
23814
|
+
}
|
|
23815
|
+
dependents {
|
|
23816
|
+
id
|
|
23817
|
+
required
|
|
23818
|
+
}
|
|
23819
|
+
diskInfo {
|
|
23820
|
+
app
|
|
23821
|
+
blocklets
|
|
23822
|
+
cache
|
|
23823
|
+
data
|
|
23824
|
+
log
|
|
23825
|
+
}
|
|
23826
|
+
engine {
|
|
23827
|
+
available
|
|
23828
|
+
description
|
|
23829
|
+
displayName
|
|
23830
|
+
logo
|
|
23831
|
+
name
|
|
23832
|
+
version
|
|
23833
|
+
visible
|
|
23834
|
+
}
|
|
23835
|
+
environments {
|
|
23836
|
+
custom
|
|
23837
|
+
description
|
|
23838
|
+
key
|
|
23839
|
+
required
|
|
23840
|
+
secure
|
|
23841
|
+
shared
|
|
23842
|
+
validation
|
|
23843
|
+
value
|
|
23844
|
+
}
|
|
23845
|
+
meta {
|
|
23846
|
+
bundleDid
|
|
23847
|
+
bundleName
|
|
23848
|
+
community
|
|
23849
|
+
description
|
|
23850
|
+
did
|
|
23851
|
+
documentation
|
|
23852
|
+
engine
|
|
23853
|
+
group
|
|
23854
|
+
homepage
|
|
23855
|
+
keywords
|
|
23856
|
+
lastPublishedAt
|
|
23857
|
+
logo
|
|
23858
|
+
main
|
|
23859
|
+
name
|
|
23860
|
+
navigation
|
|
23861
|
+
nftFactory
|
|
23862
|
+
path
|
|
23863
|
+
resources
|
|
23864
|
+
screenshots
|
|
23865
|
+
support
|
|
23866
|
+
title
|
|
23867
|
+
version
|
|
23868
|
+
author {
|
|
23869
|
+
email
|
|
23870
|
+
name
|
|
23871
|
+
url
|
|
23872
|
+
}
|
|
23873
|
+
capabilities {
|
|
23874
|
+
clusterMode
|
|
23875
|
+
component
|
|
23876
|
+
didSpace
|
|
23877
|
+
navigation
|
|
23878
|
+
resourceExportApi
|
|
23879
|
+
}
|
|
23880
|
+
components {
|
|
23881
|
+
mountPoint
|
|
23882
|
+
name
|
|
23883
|
+
required
|
|
23884
|
+
}
|
|
23885
|
+
contributors {
|
|
23886
|
+
email
|
|
23887
|
+
name
|
|
23888
|
+
url
|
|
23889
|
+
}
|
|
23890
|
+
dist {
|
|
23891
|
+
integrity
|
|
23892
|
+
tarball
|
|
23893
|
+
}
|
|
23894
|
+
docker {
|
|
23895
|
+
image
|
|
23896
|
+
installNodeModules
|
|
23897
|
+
runBaseScript
|
|
23898
|
+
shell
|
|
23899
|
+
}
|
|
23900
|
+
environments {
|
|
23901
|
+
default
|
|
23902
|
+
description
|
|
23903
|
+
name
|
|
23904
|
+
required
|
|
23905
|
+
secure
|
|
23906
|
+
shared
|
|
23907
|
+
validation
|
|
23908
|
+
}
|
|
23909
|
+
events {
|
|
23910
|
+
description
|
|
23911
|
+
type
|
|
23912
|
+
}
|
|
23913
|
+
interfaces {
|
|
23914
|
+
cacheable
|
|
23915
|
+
name
|
|
23916
|
+
pageGroups
|
|
23917
|
+
path
|
|
23918
|
+
port
|
|
23919
|
+
prefix
|
|
23920
|
+
protocol
|
|
23921
|
+
type
|
|
23922
|
+
}
|
|
23923
|
+
maintainers {
|
|
23924
|
+
email
|
|
23925
|
+
name
|
|
23926
|
+
url
|
|
23927
|
+
}
|
|
23928
|
+
owner {
|
|
23929
|
+
avatar
|
|
23930
|
+
did
|
|
23931
|
+
email
|
|
23932
|
+
fullName
|
|
23933
|
+
}
|
|
23934
|
+
repository {
|
|
23935
|
+
type
|
|
23936
|
+
url
|
|
23937
|
+
}
|
|
23938
|
+
requirements {
|
|
23939
|
+
aigne
|
|
23940
|
+
cpu
|
|
23941
|
+
os
|
|
23942
|
+
server
|
|
23943
|
+
}
|
|
23944
|
+
resource {
|
|
23945
|
+
exportApi
|
|
23946
|
+
}
|
|
23947
|
+
stats {
|
|
23948
|
+
downloads
|
|
23949
|
+
purchases
|
|
23950
|
+
star
|
|
23951
|
+
}
|
|
23952
|
+
}
|
|
23953
|
+
runtimeInfo {
|
|
23954
|
+
cpus
|
|
23955
|
+
cpuUsage
|
|
23956
|
+
memoryUsage
|
|
23957
|
+
pid
|
|
23958
|
+
port
|
|
23959
|
+
runningDocker
|
|
23960
|
+
uptime
|
|
23961
|
+
}
|
|
23962
|
+
}
|
|
23963
|
+
configs {
|
|
23964
|
+
custom
|
|
23965
|
+
description
|
|
23966
|
+
key
|
|
23967
|
+
required
|
|
23968
|
+
secure
|
|
23969
|
+
shared
|
|
23970
|
+
validation
|
|
23971
|
+
value
|
|
23972
|
+
}
|
|
23973
|
+
dependents {
|
|
23974
|
+
id
|
|
23975
|
+
required
|
|
23976
|
+
}
|
|
23977
|
+
diskInfo {
|
|
23978
|
+
app
|
|
23979
|
+
blocklets
|
|
23980
|
+
cache
|
|
23981
|
+
data
|
|
23982
|
+
log
|
|
23983
|
+
}
|
|
23984
|
+
engine {
|
|
23985
|
+
available
|
|
23986
|
+
description
|
|
23987
|
+
displayName
|
|
23988
|
+
logo
|
|
23989
|
+
name
|
|
23990
|
+
version
|
|
23991
|
+
visible
|
|
23992
|
+
}
|
|
23993
|
+
environments {
|
|
23994
|
+
custom
|
|
23995
|
+
description
|
|
23996
|
+
key
|
|
23997
|
+
required
|
|
23998
|
+
secure
|
|
23999
|
+
shared
|
|
24000
|
+
validation
|
|
24001
|
+
value
|
|
24002
|
+
}
|
|
24003
|
+
meta {
|
|
24004
|
+
bundleDid
|
|
24005
|
+
bundleName
|
|
24006
|
+
community
|
|
24007
|
+
description
|
|
24008
|
+
did
|
|
24009
|
+
documentation
|
|
24010
|
+
engine
|
|
24011
|
+
group
|
|
24012
|
+
homepage
|
|
24013
|
+
keywords
|
|
24014
|
+
lastPublishedAt
|
|
24015
|
+
logo
|
|
24016
|
+
main
|
|
24017
|
+
name
|
|
24018
|
+
navigation
|
|
24019
|
+
nftFactory
|
|
24020
|
+
path
|
|
24021
|
+
resources
|
|
24022
|
+
screenshots
|
|
24023
|
+
support
|
|
24024
|
+
title
|
|
24025
|
+
version
|
|
24026
|
+
author {
|
|
24027
|
+
email
|
|
24028
|
+
name
|
|
24029
|
+
url
|
|
24030
|
+
}
|
|
24031
|
+
capabilities {
|
|
24032
|
+
clusterMode
|
|
24033
|
+
component
|
|
24034
|
+
didSpace
|
|
24035
|
+
navigation
|
|
24036
|
+
resourceExportApi
|
|
24037
|
+
}
|
|
24038
|
+
components {
|
|
24039
|
+
mountPoint
|
|
24040
|
+
name
|
|
24041
|
+
required
|
|
24042
|
+
}
|
|
24043
|
+
contributors {
|
|
24044
|
+
email
|
|
24045
|
+
name
|
|
24046
|
+
url
|
|
24047
|
+
}
|
|
24048
|
+
dist {
|
|
24049
|
+
integrity
|
|
24050
|
+
tarball
|
|
24051
|
+
}
|
|
24052
|
+
docker {
|
|
24053
|
+
image
|
|
24054
|
+
installNodeModules
|
|
24055
|
+
runBaseScript
|
|
24056
|
+
shell
|
|
24057
|
+
}
|
|
24058
|
+
environments {
|
|
24059
|
+
default
|
|
24060
|
+
description
|
|
24061
|
+
name
|
|
24062
|
+
required
|
|
24063
|
+
secure
|
|
24064
|
+
shared
|
|
24065
|
+
validation
|
|
24066
|
+
}
|
|
24067
|
+
events {
|
|
24068
|
+
description
|
|
24069
|
+
type
|
|
24070
|
+
}
|
|
24071
|
+
interfaces {
|
|
24072
|
+
cacheable
|
|
24073
|
+
name
|
|
24074
|
+
pageGroups
|
|
24075
|
+
path
|
|
24076
|
+
port
|
|
24077
|
+
prefix
|
|
24078
|
+
protocol
|
|
24079
|
+
type
|
|
24080
|
+
services {
|
|
24081
|
+
config
|
|
24082
|
+
name
|
|
24083
|
+
}
|
|
24084
|
+
}
|
|
24085
|
+
maintainers {
|
|
24086
|
+
email
|
|
24087
|
+
name
|
|
24088
|
+
url
|
|
24089
|
+
}
|
|
24090
|
+
owner {
|
|
24091
|
+
avatar
|
|
24092
|
+
did
|
|
24093
|
+
email
|
|
24094
|
+
fullName
|
|
24095
|
+
}
|
|
24096
|
+
payment {
|
|
24097
|
+
price {
|
|
24098
|
+
address
|
|
24099
|
+
symbol
|
|
24100
|
+
value
|
|
24101
|
+
}
|
|
24102
|
+
share {
|
|
24103
|
+
address
|
|
24104
|
+
name
|
|
24105
|
+
value
|
|
24106
|
+
}
|
|
24107
|
+
}
|
|
24108
|
+
repository {
|
|
24109
|
+
type
|
|
24110
|
+
url
|
|
24111
|
+
}
|
|
24112
|
+
requirements {
|
|
24113
|
+
aigne
|
|
24114
|
+
cpu
|
|
24115
|
+
os
|
|
24116
|
+
server
|
|
24117
|
+
fuels {
|
|
24118
|
+
address
|
|
24119
|
+
endpoint
|
|
24120
|
+
reason
|
|
24121
|
+
value
|
|
24122
|
+
}
|
|
24123
|
+
}
|
|
24124
|
+
resource {
|
|
24125
|
+
exportApi
|
|
24126
|
+
bundles {
|
|
24127
|
+
did
|
|
24128
|
+
public
|
|
24129
|
+
type
|
|
24130
|
+
}
|
|
24131
|
+
types {
|
|
24132
|
+
description
|
|
24133
|
+
type
|
|
24134
|
+
}
|
|
24135
|
+
}
|
|
24136
|
+
stats {
|
|
24137
|
+
downloads
|
|
24138
|
+
purchases
|
|
24139
|
+
star
|
|
24140
|
+
}
|
|
24141
|
+
}
|
|
24142
|
+
runtimeInfo {
|
|
24143
|
+
cpus
|
|
24144
|
+
cpuUsage
|
|
24145
|
+
memoryUsage
|
|
24146
|
+
pid
|
|
24147
|
+
port
|
|
24148
|
+
runningDocker
|
|
24149
|
+
uptime
|
|
24150
|
+
}
|
|
24151
|
+
}
|
|
24152
|
+
configs {
|
|
24153
|
+
custom
|
|
24154
|
+
description
|
|
24155
|
+
key
|
|
24156
|
+
required
|
|
24157
|
+
secure
|
|
24158
|
+
shared
|
|
24159
|
+
validation
|
|
24160
|
+
value
|
|
24161
|
+
}
|
|
24162
|
+
dependents {
|
|
24163
|
+
id
|
|
24164
|
+
required
|
|
24165
|
+
}
|
|
24166
|
+
diskInfo {
|
|
24167
|
+
app
|
|
24168
|
+
blocklets
|
|
24169
|
+
cache
|
|
24170
|
+
data
|
|
24171
|
+
log
|
|
24172
|
+
}
|
|
24173
|
+
engine {
|
|
24174
|
+
available
|
|
24175
|
+
description
|
|
24176
|
+
displayName
|
|
24177
|
+
logo
|
|
24178
|
+
name
|
|
24179
|
+
version
|
|
24180
|
+
visible
|
|
24181
|
+
}
|
|
24182
|
+
environments {
|
|
24183
|
+
custom
|
|
24184
|
+
description
|
|
24185
|
+
key
|
|
24186
|
+
required
|
|
24187
|
+
secure
|
|
24188
|
+
shared
|
|
24189
|
+
validation
|
|
24190
|
+
value
|
|
24191
|
+
}
|
|
24192
|
+
meta {
|
|
24193
|
+
bundleDid
|
|
24194
|
+
bundleName
|
|
24195
|
+
community
|
|
24196
|
+
description
|
|
24197
|
+
did
|
|
24198
|
+
documentation
|
|
24199
|
+
engine
|
|
24200
|
+
group
|
|
24201
|
+
homepage
|
|
24202
|
+
keywords
|
|
24203
|
+
lastPublishedAt
|
|
24204
|
+
logo
|
|
24205
|
+
main
|
|
24206
|
+
name
|
|
24207
|
+
navigation
|
|
24208
|
+
nftFactory
|
|
24209
|
+
path
|
|
24210
|
+
resources
|
|
24211
|
+
screenshots
|
|
24212
|
+
support
|
|
24213
|
+
title
|
|
24214
|
+
version
|
|
24215
|
+
author {
|
|
24216
|
+
email
|
|
24217
|
+
name
|
|
24218
|
+
url
|
|
24219
|
+
}
|
|
24220
|
+
capabilities {
|
|
24221
|
+
clusterMode
|
|
24222
|
+
component
|
|
24223
|
+
didSpace
|
|
24224
|
+
navigation
|
|
24225
|
+
resourceExportApi
|
|
24226
|
+
}
|
|
24227
|
+
components {
|
|
24228
|
+
mountPoint
|
|
24229
|
+
name
|
|
24230
|
+
required
|
|
24231
|
+
}
|
|
24232
|
+
contributors {
|
|
24233
|
+
email
|
|
24234
|
+
name
|
|
24235
|
+
url
|
|
24236
|
+
}
|
|
24237
|
+
dist {
|
|
24238
|
+
integrity
|
|
24239
|
+
tarball
|
|
24240
|
+
}
|
|
24241
|
+
docker {
|
|
24242
|
+
image
|
|
24243
|
+
installNodeModules
|
|
24244
|
+
runBaseScript
|
|
24245
|
+
shell
|
|
24246
|
+
}
|
|
24247
|
+
environments {
|
|
24248
|
+
default
|
|
24249
|
+
description
|
|
24250
|
+
name
|
|
24251
|
+
required
|
|
24252
|
+
secure
|
|
24253
|
+
shared
|
|
24254
|
+
validation
|
|
24255
|
+
}
|
|
24256
|
+
events {
|
|
24257
|
+
description
|
|
24258
|
+
type
|
|
24259
|
+
}
|
|
24260
|
+
interfaces {
|
|
24261
|
+
cacheable
|
|
24262
|
+
name
|
|
24263
|
+
pageGroups
|
|
24264
|
+
path
|
|
24265
|
+
port
|
|
24266
|
+
prefix
|
|
24267
|
+
protocol
|
|
24268
|
+
type
|
|
24269
|
+
services {
|
|
24270
|
+
config
|
|
24271
|
+
name
|
|
24272
|
+
}
|
|
24273
|
+
}
|
|
24274
|
+
maintainers {
|
|
24275
|
+
email
|
|
24276
|
+
name
|
|
24277
|
+
url
|
|
24278
|
+
}
|
|
24279
|
+
owner {
|
|
24280
|
+
avatar
|
|
24281
|
+
did
|
|
24282
|
+
email
|
|
24283
|
+
fullName
|
|
24284
|
+
}
|
|
24285
|
+
payment {
|
|
24286
|
+
price {
|
|
24287
|
+
address
|
|
24288
|
+
symbol
|
|
24289
|
+
value
|
|
24290
|
+
}
|
|
24291
|
+
share {
|
|
24292
|
+
address
|
|
24293
|
+
name
|
|
24294
|
+
value
|
|
24295
|
+
}
|
|
24296
|
+
}
|
|
24297
|
+
repository {
|
|
24298
|
+
type
|
|
24299
|
+
url
|
|
24300
|
+
}
|
|
24301
|
+
requirements {
|
|
24302
|
+
aigne
|
|
24303
|
+
cpu
|
|
24304
|
+
os
|
|
24305
|
+
server
|
|
24306
|
+
fuels {
|
|
24307
|
+
address
|
|
24308
|
+
endpoint
|
|
24309
|
+
reason
|
|
24310
|
+
value
|
|
24311
|
+
}
|
|
24312
|
+
}
|
|
24313
|
+
resource {
|
|
24314
|
+
exportApi
|
|
24315
|
+
bundles {
|
|
24316
|
+
did
|
|
24317
|
+
public
|
|
24318
|
+
type
|
|
24319
|
+
}
|
|
24320
|
+
types {
|
|
24321
|
+
description
|
|
24322
|
+
type
|
|
24323
|
+
}
|
|
24324
|
+
}
|
|
24325
|
+
stats {
|
|
24326
|
+
downloads
|
|
24327
|
+
purchases
|
|
24328
|
+
star
|
|
24329
|
+
}
|
|
24330
|
+
}
|
|
24331
|
+
runtimeInfo {
|
|
24332
|
+
cpus
|
|
24333
|
+
cpuUsage
|
|
24334
|
+
memoryUsage
|
|
24335
|
+
pid
|
|
24336
|
+
port
|
|
24337
|
+
runningDocker
|
|
24338
|
+
uptime
|
|
24339
|
+
}
|
|
24340
|
+
}
|
|
24341
|
+
configs {
|
|
24342
|
+
custom
|
|
24343
|
+
description
|
|
24344
|
+
key
|
|
24345
|
+
required
|
|
24346
|
+
secure
|
|
24347
|
+
shared
|
|
24348
|
+
validation
|
|
24349
|
+
value
|
|
24350
|
+
}
|
|
24351
|
+
controller {
|
|
24352
|
+
chainHost
|
|
24353
|
+
consumedAt
|
|
24354
|
+
expireDate
|
|
24355
|
+
id
|
|
24356
|
+
launcherSessionId
|
|
24357
|
+
launcherUrl
|
|
24358
|
+
nftId
|
|
24359
|
+
nftOwner
|
|
24360
|
+
ownerDid
|
|
24361
|
+
status {
|
|
24362
|
+
reason
|
|
24363
|
+
value
|
|
24364
|
+
}
|
|
24365
|
+
}
|
|
24366
|
+
diskInfo {
|
|
24367
|
+
app
|
|
24368
|
+
blocklets
|
|
24369
|
+
cache
|
|
24370
|
+
data
|
|
24371
|
+
log
|
|
24372
|
+
}
|
|
24373
|
+
engine {
|
|
24374
|
+
available
|
|
24375
|
+
description
|
|
24376
|
+
displayName
|
|
24377
|
+
logo
|
|
24378
|
+
name
|
|
24379
|
+
version
|
|
24380
|
+
visible
|
|
24381
|
+
}
|
|
24382
|
+
environments {
|
|
24383
|
+
custom
|
|
24384
|
+
description
|
|
24385
|
+
key
|
|
24386
|
+
required
|
|
24387
|
+
secure
|
|
24388
|
+
shared
|
|
24389
|
+
validation
|
|
24390
|
+
value
|
|
24391
|
+
}
|
|
24392
|
+
meta {
|
|
24393
|
+
bundleDid
|
|
24394
|
+
bundleName
|
|
24395
|
+
community
|
|
24396
|
+
description
|
|
24397
|
+
did
|
|
24398
|
+
documentation
|
|
24399
|
+
engine
|
|
24400
|
+
group
|
|
24401
|
+
homepage
|
|
24402
|
+
keywords
|
|
24403
|
+
lastPublishedAt
|
|
24404
|
+
logo
|
|
24405
|
+
main
|
|
24406
|
+
name
|
|
24407
|
+
navigation
|
|
24408
|
+
nftFactory
|
|
24409
|
+
path
|
|
24410
|
+
resources
|
|
24411
|
+
screenshots
|
|
24412
|
+
support
|
|
24413
|
+
title
|
|
24414
|
+
version
|
|
24415
|
+
author {
|
|
24416
|
+
email
|
|
24417
|
+
name
|
|
24418
|
+
url
|
|
24419
|
+
}
|
|
24420
|
+
capabilities {
|
|
24421
|
+
clusterMode
|
|
24422
|
+
component
|
|
24423
|
+
didSpace
|
|
24424
|
+
navigation
|
|
24425
|
+
resourceExportApi
|
|
24426
|
+
}
|
|
24427
|
+
components {
|
|
24428
|
+
mountPoint
|
|
24429
|
+
name
|
|
24430
|
+
required
|
|
24431
|
+
}
|
|
24432
|
+
contributors {
|
|
24433
|
+
email
|
|
24434
|
+
name
|
|
24435
|
+
url
|
|
24436
|
+
}
|
|
24437
|
+
dist {
|
|
24438
|
+
integrity
|
|
24439
|
+
tarball
|
|
24440
|
+
}
|
|
24441
|
+
docker {
|
|
24442
|
+
image
|
|
24443
|
+
installNodeModules
|
|
24444
|
+
runBaseScript
|
|
24445
|
+
shell
|
|
24446
|
+
}
|
|
24447
|
+
environments {
|
|
24448
|
+
default
|
|
24449
|
+
description
|
|
24450
|
+
name
|
|
24451
|
+
required
|
|
24452
|
+
secure
|
|
24453
|
+
shared
|
|
24454
|
+
validation
|
|
24455
|
+
}
|
|
24456
|
+
events {
|
|
24457
|
+
description
|
|
24458
|
+
type
|
|
24459
|
+
}
|
|
24460
|
+
interfaces {
|
|
24461
|
+
cacheable
|
|
24462
|
+
name
|
|
24463
|
+
pageGroups
|
|
24464
|
+
path
|
|
24465
|
+
port
|
|
24466
|
+
prefix
|
|
24467
|
+
protocol
|
|
24468
|
+
type
|
|
24469
|
+
services {
|
|
24470
|
+
config
|
|
24471
|
+
name
|
|
24472
|
+
}
|
|
24473
|
+
}
|
|
24474
|
+
maintainers {
|
|
24475
|
+
email
|
|
24476
|
+
name
|
|
24477
|
+
url
|
|
24478
|
+
}
|
|
24479
|
+
owner {
|
|
24480
|
+
avatar
|
|
24481
|
+
did
|
|
24482
|
+
email
|
|
24483
|
+
fullName
|
|
24484
|
+
}
|
|
24485
|
+
payment {
|
|
24486
|
+
price {
|
|
24487
|
+
address
|
|
24488
|
+
symbol
|
|
24489
|
+
value
|
|
24490
|
+
}
|
|
24491
|
+
share {
|
|
24492
|
+
address
|
|
24493
|
+
name
|
|
24494
|
+
value
|
|
24495
|
+
}
|
|
24496
|
+
}
|
|
24497
|
+
repository {
|
|
24498
|
+
type
|
|
24499
|
+
url
|
|
24500
|
+
}
|
|
24501
|
+
requirements {
|
|
24502
|
+
aigne
|
|
24503
|
+
cpu
|
|
24504
|
+
os
|
|
24505
|
+
server
|
|
24506
|
+
fuels {
|
|
24507
|
+
address
|
|
24508
|
+
endpoint
|
|
24509
|
+
reason
|
|
24510
|
+
value
|
|
24511
|
+
}
|
|
24512
|
+
}
|
|
24513
|
+
resource {
|
|
24514
|
+
exportApi
|
|
24515
|
+
bundles {
|
|
24516
|
+
did
|
|
24517
|
+
public
|
|
24518
|
+
type
|
|
24519
|
+
}
|
|
24520
|
+
types {
|
|
24521
|
+
description
|
|
24522
|
+
type
|
|
24523
|
+
}
|
|
24524
|
+
}
|
|
24525
|
+
stats {
|
|
24526
|
+
downloads
|
|
24527
|
+
purchases
|
|
24528
|
+
star
|
|
24529
|
+
}
|
|
24530
|
+
}
|
|
24531
|
+
migratedFrom {
|
|
24532
|
+
appDid
|
|
24533
|
+
appSk
|
|
24534
|
+
at
|
|
24535
|
+
}
|
|
24536
|
+
optionalComponents {
|
|
24537
|
+
bundleSource
|
|
24538
|
+
logoUrl
|
|
24539
|
+
dependencies {
|
|
24540
|
+
mountPoint
|
|
24541
|
+
parentDid
|
|
24542
|
+
parentName
|
|
24543
|
+
parentTitle
|
|
24544
|
+
required
|
|
24545
|
+
}
|
|
24546
|
+
meta {
|
|
24547
|
+
bundleDid
|
|
24548
|
+
bundleName
|
|
24549
|
+
community
|
|
24550
|
+
description
|
|
24551
|
+
did
|
|
24552
|
+
documentation
|
|
24553
|
+
engine
|
|
24554
|
+
group
|
|
24555
|
+
homepage
|
|
24556
|
+
keywords
|
|
24557
|
+
lastPublishedAt
|
|
24558
|
+
logo
|
|
24559
|
+
main
|
|
24560
|
+
name
|
|
24561
|
+
navigation
|
|
24562
|
+
nftFactory
|
|
24563
|
+
path
|
|
24564
|
+
resources
|
|
24565
|
+
screenshots
|
|
24566
|
+
support
|
|
24567
|
+
title
|
|
24568
|
+
version
|
|
24569
|
+
author {
|
|
24570
|
+
email
|
|
24571
|
+
name
|
|
24572
|
+
url
|
|
24573
|
+
}
|
|
24574
|
+
capabilities {
|
|
24575
|
+
clusterMode
|
|
24576
|
+
component
|
|
24577
|
+
didSpace
|
|
24578
|
+
navigation
|
|
24579
|
+
resourceExportApi
|
|
24580
|
+
}
|
|
24581
|
+
components {
|
|
24582
|
+
mountPoint
|
|
24583
|
+
name
|
|
24584
|
+
required
|
|
24585
|
+
}
|
|
24586
|
+
contributors {
|
|
24587
|
+
email
|
|
24588
|
+
name
|
|
24589
|
+
url
|
|
24590
|
+
}
|
|
24591
|
+
dist {
|
|
24592
|
+
integrity
|
|
24593
|
+
tarball
|
|
24594
|
+
}
|
|
24595
|
+
docker {
|
|
24596
|
+
image
|
|
24597
|
+
installNodeModules
|
|
24598
|
+
runBaseScript
|
|
24599
|
+
shell
|
|
24600
|
+
}
|
|
24601
|
+
environments {
|
|
24602
|
+
default
|
|
24603
|
+
description
|
|
24604
|
+
name
|
|
24605
|
+
required
|
|
24606
|
+
secure
|
|
24607
|
+
shared
|
|
24608
|
+
validation
|
|
24609
|
+
}
|
|
24610
|
+
events {
|
|
24611
|
+
description
|
|
24612
|
+
type
|
|
24613
|
+
}
|
|
24614
|
+
interfaces {
|
|
24615
|
+
cacheable
|
|
24616
|
+
name
|
|
24617
|
+
pageGroups
|
|
24618
|
+
path
|
|
24619
|
+
port
|
|
24620
|
+
prefix
|
|
24621
|
+
protocol
|
|
24622
|
+
type
|
|
24623
|
+
services {
|
|
24624
|
+
config
|
|
24625
|
+
name
|
|
24626
|
+
}
|
|
24627
|
+
}
|
|
24628
|
+
maintainers {
|
|
24629
|
+
email
|
|
24630
|
+
name
|
|
24631
|
+
url
|
|
24632
|
+
}
|
|
24633
|
+
owner {
|
|
24634
|
+
avatar
|
|
24635
|
+
did
|
|
24636
|
+
email
|
|
24637
|
+
fullName
|
|
24638
|
+
}
|
|
24639
|
+
payment {
|
|
24640
|
+
price {
|
|
24641
|
+
address
|
|
24642
|
+
symbol
|
|
24643
|
+
value
|
|
24644
|
+
}
|
|
24645
|
+
share {
|
|
24646
|
+
address
|
|
24647
|
+
name
|
|
24648
|
+
value
|
|
24649
|
+
}
|
|
24650
|
+
}
|
|
24651
|
+
repository {
|
|
24652
|
+
type
|
|
24653
|
+
url
|
|
24654
|
+
}
|
|
24655
|
+
requirements {
|
|
24656
|
+
aigne
|
|
24657
|
+
cpu
|
|
24658
|
+
os
|
|
24659
|
+
server
|
|
24660
|
+
fuels {
|
|
24661
|
+
address
|
|
24662
|
+
endpoint
|
|
24663
|
+
reason
|
|
24664
|
+
value
|
|
24665
|
+
}
|
|
24666
|
+
}
|
|
24667
|
+
resource {
|
|
24668
|
+
exportApi
|
|
24669
|
+
bundles {
|
|
24670
|
+
did
|
|
24671
|
+
public
|
|
24672
|
+
type
|
|
24673
|
+
}
|
|
24674
|
+
types {
|
|
24675
|
+
description
|
|
24676
|
+
type
|
|
24677
|
+
}
|
|
24678
|
+
}
|
|
24679
|
+
stats {
|
|
24680
|
+
downloads
|
|
24681
|
+
purchases
|
|
24682
|
+
star
|
|
24683
|
+
}
|
|
24684
|
+
}
|
|
24685
|
+
}
|
|
24686
|
+
runtimeInfo {
|
|
24687
|
+
cpus
|
|
24688
|
+
cpuUsage
|
|
24689
|
+
memoryUsage
|
|
24690
|
+
pid
|
|
24691
|
+
port
|
|
24692
|
+
runningDocker
|
|
24693
|
+
uptime
|
|
24694
|
+
}
|
|
24695
|
+
settings {
|
|
24696
|
+
authentication
|
|
24697
|
+
didConnect
|
|
23162
24698
|
enablePassportIssuance
|
|
23163
24699
|
enableSessionHardening
|
|
23164
24700
|
initialized
|
|
@@ -23443,168 +24979,7 @@ mutation {
|
|
|
23443
24979
|
}
|
|
23444
24980
|
```
|
|
23445
24981
|
|
|
23446
|
-
###
|
|
23447
|
-
|
|
23448
|
-
#### Arguments
|
|
23449
|
-
|
|
23450
|
-
* **input**, optional, null
|
|
23451
|
-
|
|
23452
|
-
#### Result Format
|
|
23453
|
-
|
|
23454
|
-
```graphql
|
|
23455
|
-
mutation {
|
|
23456
|
-
checkComponentsForUpdates {
|
|
23457
|
-
code
|
|
23458
|
-
preUpdateInfo {
|
|
23459
|
-
updateId
|
|
23460
|
-
updateList {
|
|
23461
|
-
id
|
|
23462
|
-
meta {
|
|
23463
|
-
bundleDid
|
|
23464
|
-
bundleName
|
|
23465
|
-
community
|
|
23466
|
-
description
|
|
23467
|
-
did
|
|
23468
|
-
documentation
|
|
23469
|
-
engine
|
|
23470
|
-
group
|
|
23471
|
-
homepage
|
|
23472
|
-
keywords
|
|
23473
|
-
lastPublishedAt
|
|
23474
|
-
logo
|
|
23475
|
-
main
|
|
23476
|
-
name
|
|
23477
|
-
navigation
|
|
23478
|
-
nftFactory
|
|
23479
|
-
path
|
|
23480
|
-
resources
|
|
23481
|
-
screenshots
|
|
23482
|
-
support
|
|
23483
|
-
title
|
|
23484
|
-
version
|
|
23485
|
-
author {
|
|
23486
|
-
email
|
|
23487
|
-
name
|
|
23488
|
-
url
|
|
23489
|
-
}
|
|
23490
|
-
capabilities {
|
|
23491
|
-
clusterMode
|
|
23492
|
-
component
|
|
23493
|
-
didSpace
|
|
23494
|
-
navigation
|
|
23495
|
-
resourceExportApi
|
|
23496
|
-
}
|
|
23497
|
-
components {
|
|
23498
|
-
mountPoint
|
|
23499
|
-
name
|
|
23500
|
-
required
|
|
23501
|
-
}
|
|
23502
|
-
contributors {
|
|
23503
|
-
email
|
|
23504
|
-
name
|
|
23505
|
-
url
|
|
23506
|
-
}
|
|
23507
|
-
dist {
|
|
23508
|
-
integrity
|
|
23509
|
-
tarball
|
|
23510
|
-
}
|
|
23511
|
-
docker {
|
|
23512
|
-
image
|
|
23513
|
-
installNodeModules
|
|
23514
|
-
runBaseScript
|
|
23515
|
-
shell
|
|
23516
|
-
}
|
|
23517
|
-
environments {
|
|
23518
|
-
default
|
|
23519
|
-
description
|
|
23520
|
-
name
|
|
23521
|
-
required
|
|
23522
|
-
secure
|
|
23523
|
-
shared
|
|
23524
|
-
validation
|
|
23525
|
-
}
|
|
23526
|
-
events {
|
|
23527
|
-
description
|
|
23528
|
-
type
|
|
23529
|
-
}
|
|
23530
|
-
interfaces {
|
|
23531
|
-
cacheable
|
|
23532
|
-
name
|
|
23533
|
-
pageGroups
|
|
23534
|
-
path
|
|
23535
|
-
port
|
|
23536
|
-
prefix
|
|
23537
|
-
protocol
|
|
23538
|
-
type
|
|
23539
|
-
services {
|
|
23540
|
-
config
|
|
23541
|
-
name
|
|
23542
|
-
}
|
|
23543
|
-
}
|
|
23544
|
-
maintainers {
|
|
23545
|
-
email
|
|
23546
|
-
name
|
|
23547
|
-
url
|
|
23548
|
-
}
|
|
23549
|
-
owner {
|
|
23550
|
-
avatar
|
|
23551
|
-
did
|
|
23552
|
-
email
|
|
23553
|
-
fullName
|
|
23554
|
-
}
|
|
23555
|
-
payment {
|
|
23556
|
-
price {
|
|
23557
|
-
address
|
|
23558
|
-
symbol
|
|
23559
|
-
value
|
|
23560
|
-
}
|
|
23561
|
-
share {
|
|
23562
|
-
address
|
|
23563
|
-
name
|
|
23564
|
-
value
|
|
23565
|
-
}
|
|
23566
|
-
}
|
|
23567
|
-
repository {
|
|
23568
|
-
type
|
|
23569
|
-
url
|
|
23570
|
-
}
|
|
23571
|
-
requirements {
|
|
23572
|
-
aigne
|
|
23573
|
-
cpu
|
|
23574
|
-
os
|
|
23575
|
-
server
|
|
23576
|
-
fuels {
|
|
23577
|
-
address
|
|
23578
|
-
endpoint
|
|
23579
|
-
reason
|
|
23580
|
-
value
|
|
23581
|
-
}
|
|
23582
|
-
}
|
|
23583
|
-
resource {
|
|
23584
|
-
exportApi
|
|
23585
|
-
bundles {
|
|
23586
|
-
did
|
|
23587
|
-
public
|
|
23588
|
-
type
|
|
23589
|
-
}
|
|
23590
|
-
types {
|
|
23591
|
-
description
|
|
23592
|
-
type
|
|
23593
|
-
}
|
|
23594
|
-
}
|
|
23595
|
-
stats {
|
|
23596
|
-
downloads
|
|
23597
|
-
purchases
|
|
23598
|
-
star
|
|
23599
|
-
}
|
|
23600
|
-
}
|
|
23601
|
-
}
|
|
23602
|
-
}
|
|
23603
|
-
}
|
|
23604
|
-
}
|
|
23605
|
-
```
|
|
23606
|
-
|
|
23607
|
-
### upgradeComponents
|
|
24982
|
+
### configBlocklet
|
|
23608
24983
|
|
|
23609
24984
|
#### Arguments
|
|
23610
24985
|
|
|
@@ -23614,7 +24989,7 @@ mutation {
|
|
|
23614
24989
|
|
|
23615
24990
|
```graphql
|
|
23616
24991
|
mutation {
|
|
23617
|
-
|
|
24992
|
+
configBlocklet {
|
|
23618
24993
|
code
|
|
23619
24994
|
blocklet {
|
|
23620
24995
|
appDid
|
|
@@ -24736,6 +26111,8 @@ mutation {
|
|
|
24736
26111
|
uptime
|
|
24737
26112
|
}
|
|
24738
26113
|
settings {
|
|
26114
|
+
authentication
|
|
26115
|
+
didConnect
|
|
24739
26116
|
enablePassportIssuance
|
|
24740
26117
|
enableSessionHardening
|
|
24741
26118
|
initialized
|
|
@@ -25020,7 +26397,7 @@ mutation {
|
|
|
25020
26397
|
}
|
|
25021
26398
|
```
|
|
25022
26399
|
|
|
25023
|
-
###
|
|
26400
|
+
### configPublicToStore
|
|
25024
26401
|
|
|
25025
26402
|
#### Arguments
|
|
25026
26403
|
|
|
@@ -25030,7 +26407,7 @@ mutation {
|
|
|
25030
26407
|
|
|
25031
26408
|
```graphql
|
|
25032
26409
|
mutation {
|
|
25033
|
-
|
|
26410
|
+
configPublicToStore {
|
|
25034
26411
|
code
|
|
25035
26412
|
blocklet {
|
|
25036
26413
|
appDid
|
|
@@ -26152,6 +27529,8 @@ mutation {
|
|
|
26152
27529
|
uptime
|
|
26153
27530
|
}
|
|
26154
27531
|
settings {
|
|
27532
|
+
authentication
|
|
27533
|
+
didConnect
|
|
26155
27534
|
enablePassportIssuance
|
|
26156
27535
|
enableSessionHardening
|
|
26157
27536
|
initialized
|
|
@@ -26436,7 +27815,7 @@ mutation {
|
|
|
26436
27815
|
}
|
|
26437
27816
|
```
|
|
26438
27817
|
|
|
26439
|
-
###
|
|
27818
|
+
### configNavigations
|
|
26440
27819
|
|
|
26441
27820
|
#### Arguments
|
|
26442
27821
|
|
|
@@ -26446,7 +27825,7 @@ mutation {
|
|
|
26446
27825
|
|
|
26447
27826
|
```graphql
|
|
26448
27827
|
mutation {
|
|
26449
|
-
|
|
27828
|
+
configNavigations {
|
|
26450
27829
|
code
|
|
26451
27830
|
blocklet {
|
|
26452
27831
|
appDid
|
|
@@ -27568,6 +28947,8 @@ mutation {
|
|
|
27568
28947
|
uptime
|
|
27569
28948
|
}
|
|
27570
28949
|
settings {
|
|
28950
|
+
authentication
|
|
28951
|
+
didConnect
|
|
27571
28952
|
enablePassportIssuance
|
|
27572
28953
|
enableSessionHardening
|
|
27573
28954
|
initialized
|
|
@@ -27852,7 +29233,7 @@ mutation {
|
|
|
27852
29233
|
}
|
|
27853
29234
|
```
|
|
27854
29235
|
|
|
27855
|
-
###
|
|
29236
|
+
### configAuthentication
|
|
27856
29237
|
|
|
27857
29238
|
#### Arguments
|
|
27858
29239
|
|
|
@@ -27862,7 +29243,7 @@ mutation {
|
|
|
27862
29243
|
|
|
27863
29244
|
```graphql
|
|
27864
29245
|
mutation {
|
|
27865
|
-
|
|
29246
|
+
configAuthentication {
|
|
27866
29247
|
code
|
|
27867
29248
|
blocklet {
|
|
27868
29249
|
appDid
|
|
@@ -28984,6 +30365,8 @@ mutation {
|
|
|
28984
30365
|
uptime
|
|
28985
30366
|
}
|
|
28986
30367
|
settings {
|
|
30368
|
+
authentication
|
|
30369
|
+
didConnect
|
|
28987
30370
|
enablePassportIssuance
|
|
28988
30371
|
enableSessionHardening
|
|
28989
30372
|
initialized
|
|
@@ -29268,7 +30651,7 @@ mutation {
|
|
|
29268
30651
|
}
|
|
29269
30652
|
```
|
|
29270
30653
|
|
|
29271
|
-
###
|
|
30654
|
+
### configDidConnect
|
|
29272
30655
|
|
|
29273
30656
|
#### Arguments
|
|
29274
30657
|
|
|
@@ -29278,7 +30661,7 @@ mutation {
|
|
|
29278
30661
|
|
|
29279
30662
|
```graphql
|
|
29280
30663
|
mutation {
|
|
29281
|
-
|
|
30664
|
+
configDidConnect {
|
|
29282
30665
|
code
|
|
29283
30666
|
blocklet {
|
|
29284
30667
|
appDid
|
|
@@ -30400,6 +31783,8 @@ mutation {
|
|
|
30400
31783
|
uptime
|
|
30401
31784
|
}
|
|
30402
31785
|
settings {
|
|
31786
|
+
authentication
|
|
31787
|
+
didConnect
|
|
30403
31788
|
enablePassportIssuance
|
|
30404
31789
|
enableSessionHardening
|
|
30405
31790
|
initialized
|
|
@@ -31816,6 +33201,8 @@ mutation {
|
|
|
31816
33201
|
uptime
|
|
31817
33202
|
}
|
|
31818
33203
|
settings {
|
|
33204
|
+
authentication
|
|
33205
|
+
didConnect
|
|
31819
33206
|
enablePassportIssuance
|
|
31820
33207
|
enableSessionHardening
|
|
31821
33208
|
initialized
|
|
@@ -33281,6 +34668,8 @@ mutation {
|
|
|
33281
34668
|
uptime
|
|
33282
34669
|
}
|
|
33283
34670
|
settings {
|
|
34671
|
+
authentication
|
|
34672
|
+
didConnect
|
|
33284
34673
|
enablePassportIssuance
|
|
33285
34674
|
enableSessionHardening
|
|
33286
34675
|
initialized
|
|
@@ -34697,6 +36086,8 @@ mutation {
|
|
|
34697
36086
|
uptime
|
|
34698
36087
|
}
|
|
34699
36088
|
settings {
|
|
36089
|
+
authentication
|
|
36090
|
+
didConnect
|
|
34700
36091
|
enablePassportIssuance
|
|
34701
36092
|
enableSessionHardening
|
|
34702
36093
|
initialized
|
|
@@ -36113,6 +37504,8 @@ mutation {
|
|
|
36113
37504
|
uptime
|
|
36114
37505
|
}
|
|
36115
37506
|
settings {
|
|
37507
|
+
authentication
|
|
37508
|
+
didConnect
|
|
36116
37509
|
enablePassportIssuance
|
|
36117
37510
|
enableSessionHardening
|
|
36118
37511
|
initialized
|
|
@@ -37529,6 +38922,8 @@ mutation {
|
|
|
37529
38922
|
uptime
|
|
37530
38923
|
}
|
|
37531
38924
|
settings {
|
|
38925
|
+
authentication
|
|
38926
|
+
didConnect
|
|
37532
38927
|
enablePassportIssuance
|
|
37533
38928
|
enableSessionHardening
|
|
37534
38929
|
initialized
|
|
@@ -38945,6 +40340,8 @@ mutation {
|
|
|
38945
40340
|
uptime
|
|
38946
40341
|
}
|
|
38947
40342
|
settings {
|
|
40343
|
+
authentication
|
|
40344
|
+
didConnect
|
|
38948
40345
|
enablePassportIssuance
|
|
38949
40346
|
enableSessionHardening
|
|
38950
40347
|
initialized
|
|
@@ -40361,6 +41758,8 @@ mutation {
|
|
|
40361
41758
|
uptime
|
|
40362
41759
|
}
|
|
40363
41760
|
settings {
|
|
41761
|
+
authentication
|
|
41762
|
+
didConnect
|
|
40364
41763
|
enablePassportIssuance
|
|
40365
41764
|
enableSessionHardening
|
|
40366
41765
|
initialized
|
|
@@ -41777,6 +43176,8 @@ mutation {
|
|
|
41777
43176
|
uptime
|
|
41778
43177
|
}
|
|
41779
43178
|
settings {
|
|
43179
|
+
authentication
|
|
43180
|
+
didConnect
|
|
41780
43181
|
enablePassportIssuance
|
|
41781
43182
|
enableSessionHardening
|
|
41782
43183
|
initialized
|
|
@@ -43193,6 +44594,8 @@ mutation {
|
|
|
43193
44594
|
uptime
|
|
43194
44595
|
}
|
|
43195
44596
|
settings {
|
|
44597
|
+
authentication
|
|
44598
|
+
didConnect
|
|
43196
44599
|
enablePassportIssuance
|
|
43197
44600
|
enableSessionHardening
|
|
43198
44601
|
initialized
|
|
@@ -44609,6 +46012,8 @@ mutation {
|
|
|
44609
46012
|
uptime
|
|
44610
46013
|
}
|
|
44611
46014
|
settings {
|
|
46015
|
+
authentication
|
|
46016
|
+
didConnect
|
|
44612
46017
|
enablePassportIssuance
|
|
44613
46018
|
enableSessionHardening
|
|
44614
46019
|
initialized
|
|
@@ -45242,161 +46647,6 @@ mutation {
|
|
|
45242
46647
|
}
|
|
45243
46648
|
```
|
|
45244
46649
|
|
|
45245
|
-
### updateNodeRouting
|
|
45246
|
-
|
|
45247
|
-
#### Arguments
|
|
45248
|
-
|
|
45249
|
-
* **input**, optional, null
|
|
45250
|
-
|
|
45251
|
-
#### Result Format
|
|
45252
|
-
|
|
45253
|
-
```graphql
|
|
45254
|
-
mutation {
|
|
45255
|
-
updateNodeRouting {
|
|
45256
|
-
code
|
|
45257
|
-
info {
|
|
45258
|
-
autoUpgrade
|
|
45259
|
-
createdAt
|
|
45260
|
-
description
|
|
45261
|
-
did
|
|
45262
|
-
didDomain
|
|
45263
|
-
didRegistry
|
|
45264
|
-
diskAlertThreshold
|
|
45265
|
-
enableBetaRelease
|
|
45266
|
-
enableDocker
|
|
45267
|
-
enableDockerNetwork
|
|
45268
|
-
enableFileSystemIsolation
|
|
45269
|
-
enablePassportIssuance
|
|
45270
|
-
enableSessionHardening
|
|
45271
|
-
enableWelcomePage
|
|
45272
|
-
initialized
|
|
45273
|
-
initializedAt
|
|
45274
|
-
isDockerInstalled
|
|
45275
|
-
mode
|
|
45276
|
-
name
|
|
45277
|
-
nextVersion
|
|
45278
|
-
nftDomainUrl
|
|
45279
|
-
pk
|
|
45280
|
-
port
|
|
45281
|
-
registerUrl
|
|
45282
|
-
sessionSalt
|
|
45283
|
-
startedAt
|
|
45284
|
-
status
|
|
45285
|
-
upgradeSessionId
|
|
45286
|
-
uptime
|
|
45287
|
-
version
|
|
45288
|
-
webWalletUrl
|
|
45289
|
-
blockletRegistryList {
|
|
45290
|
-
cdnUrl
|
|
45291
|
-
description
|
|
45292
|
-
id
|
|
45293
|
-
logoUrl
|
|
45294
|
-
maintainer
|
|
45295
|
-
name
|
|
45296
|
-
protected
|
|
45297
|
-
scope
|
|
45298
|
-
url
|
|
45299
|
-
}
|
|
45300
|
-
environments {
|
|
45301
|
-
custom
|
|
45302
|
-
description
|
|
45303
|
-
key
|
|
45304
|
-
required
|
|
45305
|
-
secure
|
|
45306
|
-
shared
|
|
45307
|
-
validation
|
|
45308
|
-
value
|
|
45309
|
-
}
|
|
45310
|
-
launcher {
|
|
45311
|
-
chainHost
|
|
45312
|
-
did
|
|
45313
|
-
provider
|
|
45314
|
-
tag
|
|
45315
|
-
type
|
|
45316
|
-
url
|
|
45317
|
-
}
|
|
45318
|
-
nodeOwner {
|
|
45319
|
-
did
|
|
45320
|
-
pk
|
|
45321
|
-
}
|
|
45322
|
-
ownerNft {
|
|
45323
|
-
did
|
|
45324
|
-
holder
|
|
45325
|
-
issuer
|
|
45326
|
-
launcherSessionId
|
|
45327
|
-
}
|
|
45328
|
-
routing {
|
|
45329
|
-
adminPath
|
|
45330
|
-
cacheEnabled
|
|
45331
|
-
provider
|
|
45332
|
-
snapshotHash
|
|
45333
|
-
blockPolicy {
|
|
45334
|
-
blacklist
|
|
45335
|
-
enabled
|
|
45336
|
-
autoBlocking {
|
|
45337
|
-
blockDuration
|
|
45338
|
-
enabled
|
|
45339
|
-
statusCodes
|
|
45340
|
-
windowQuota
|
|
45341
|
-
windowSize
|
|
45342
|
-
}
|
|
45343
|
-
}
|
|
45344
|
-
proxyPolicy {
|
|
45345
|
-
enabled
|
|
45346
|
-
realIpHeader
|
|
45347
|
-
trustedProxies
|
|
45348
|
-
trustRecursive
|
|
45349
|
-
}
|
|
45350
|
-
requestLimit {
|
|
45351
|
-
burstDelay
|
|
45352
|
-
burstFactor
|
|
45353
|
-
enabled
|
|
45354
|
-
global
|
|
45355
|
-
methods
|
|
45356
|
-
rate
|
|
45357
|
-
}
|
|
45358
|
-
wafPolicy {
|
|
45359
|
-
enabled
|
|
45360
|
-
inboundAnomalyScoreThreshold
|
|
45361
|
-
logLevel
|
|
45362
|
-
mode
|
|
45363
|
-
outboundAnomalyScoreThreshold
|
|
45364
|
-
}
|
|
45365
|
-
}
|
|
45366
|
-
runtimeConfig {
|
|
45367
|
-
blockletMaxMemoryLimit
|
|
45368
|
-
daemonMaxMemoryLimit
|
|
45369
|
-
}
|
|
45370
|
-
trustedFactories {
|
|
45371
|
-
factoryAddress
|
|
45372
|
-
holderDid
|
|
45373
|
-
issuerDid
|
|
45374
|
-
remark
|
|
45375
|
-
passport {
|
|
45376
|
-
role
|
|
45377
|
-
ttl
|
|
45378
|
-
ttlPolicy
|
|
45379
|
-
}
|
|
45380
|
-
}
|
|
45381
|
-
trustedPassports {
|
|
45382
|
-
issuerDid
|
|
45383
|
-
remark
|
|
45384
|
-
mappings {
|
|
45385
|
-
from {
|
|
45386
|
-
passport
|
|
45387
|
-
}
|
|
45388
|
-
to {
|
|
45389
|
-
role
|
|
45390
|
-
ttl
|
|
45391
|
-
ttlPolicy
|
|
45392
|
-
}
|
|
45393
|
-
}
|
|
45394
|
-
}
|
|
45395
|
-
}
|
|
45396
|
-
}
|
|
45397
|
-
}
|
|
45398
|
-
```
|
|
45399
|
-
|
|
45400
46650
|
### upgradeNodeVersion
|
|
45401
46651
|
|
|
45402
46652
|
#### Arguments
|
|
@@ -48287,23 +49537,6 @@ mutation {
|
|
|
48287
49537
|
}
|
|
48288
49538
|
```
|
|
48289
49539
|
|
|
48290
|
-
### takeRoutingSnapshot
|
|
48291
|
-
|
|
48292
|
-
#### Arguments
|
|
48293
|
-
|
|
48294
|
-
* **input**, optional, null
|
|
48295
|
-
|
|
48296
|
-
#### Result Format
|
|
48297
|
-
|
|
48298
|
-
```graphql
|
|
48299
|
-
mutation {
|
|
48300
|
-
takeRoutingSnapshot {
|
|
48301
|
-
code
|
|
48302
|
-
hash
|
|
48303
|
-
}
|
|
48304
|
-
}
|
|
48305
|
-
```
|
|
48306
|
-
|
|
48307
49540
|
### updateCertificate
|
|
48308
49541
|
|
|
48309
49542
|
#### Arguments
|
|
@@ -50466,4 +51699,4 @@ mutation {
|
|
|
50466
51699
|
}
|
|
50467
51700
|
}
|
|
50468
51701
|
}
|
|
50469
|
-
```
|
|
51702
|
+
```
|