@abtnode/schema 1.16.11-beta-0ae58a71 → 1.16.11-beta-f74663ac
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 +27 -25
- package/lib/schema.graphqls +27 -25
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -15,25 +15,6 @@ scalar Uint32
|
|
|
15
15
|
|
|
16
16
|
scalar Uint64
|
|
17
17
|
|
|
18
|
-
input BlockletControllerInput {
|
|
19
|
-
id: String
|
|
20
|
-
nftId: String
|
|
21
|
-
nftOwner: String
|
|
22
|
-
chainHost: String
|
|
23
|
-
expireDate: Uint32
|
|
24
|
-
consumedAt: String
|
|
25
|
-
status: BlockletControllerStatusInput
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
input BlockletControllerStatusInput {
|
|
29
|
-
value: Uint32
|
|
30
|
-
reason: String
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
input BlockletQueryInput {
|
|
34
|
-
controller: BlockletControllerInput
|
|
35
|
-
}
|
|
36
|
-
|
|
37
18
|
input BlockletStoreInput {
|
|
38
19
|
name: String
|
|
39
20
|
description: String
|
|
@@ -215,6 +196,11 @@ input RequestCheckDomainsInput {
|
|
|
215
196
|
did: String
|
|
216
197
|
}
|
|
217
198
|
|
|
199
|
+
input RequestComponentsInput {
|
|
200
|
+
did: String
|
|
201
|
+
componentDids: [String!]
|
|
202
|
+
}
|
|
203
|
+
|
|
218
204
|
input RequestConfigBlockletInput {
|
|
219
205
|
did: [String!]
|
|
220
206
|
configs: [ConfigEntryInput!]
|
|
@@ -310,7 +296,7 @@ input RequestDeleteBlockletInput {
|
|
|
310
296
|
|
|
311
297
|
input RequestDeleteBlockletSpaceGatewayInput {
|
|
312
298
|
did: String
|
|
313
|
-
|
|
299
|
+
spaceGatewayDid: String
|
|
314
300
|
}
|
|
315
301
|
|
|
316
302
|
input RequestDeleteComponentInput {
|
|
@@ -389,7 +375,11 @@ input RequestGetBlockletBackupsInput {
|
|
|
389
375
|
|
|
390
376
|
input RequestGetBlockletsInput {
|
|
391
377
|
useCache: Boolean
|
|
392
|
-
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
input RequestGetLauncherSessionInput {
|
|
381
|
+
launcherSessionId: String
|
|
382
|
+
launcherUrl: String
|
|
393
383
|
}
|
|
394
384
|
|
|
395
385
|
input RequestGetNotificationsInput {
|
|
@@ -673,6 +663,7 @@ input SpaceGatewayInput {
|
|
|
673
663
|
url: String
|
|
674
664
|
protected: String
|
|
675
665
|
endpoint: String
|
|
666
|
+
did: String
|
|
676
667
|
}
|
|
677
668
|
|
|
678
669
|
input TeamInput {
|
|
@@ -827,6 +818,9 @@ type BlockletController {
|
|
|
827
818
|
chainHost: String
|
|
828
819
|
expireDate: Uint32
|
|
829
820
|
consumedAt: String
|
|
821
|
+
launcherUrl: String
|
|
822
|
+
launcherSessionId: String
|
|
823
|
+
ownerDid: String
|
|
830
824
|
status: BlockletControllerStatus
|
|
831
825
|
}
|
|
832
826
|
|
|
@@ -1494,6 +1488,12 @@ type ResponseGetInvitations {
|
|
|
1494
1488
|
invitations: [InviteInfo!]
|
|
1495
1489
|
}
|
|
1496
1490
|
|
|
1491
|
+
type ResponseGetLauncherSession {
|
|
1492
|
+
code: StatusCode
|
|
1493
|
+
error: String
|
|
1494
|
+
launcherSession: Any
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
1497
|
type ResponseGetNodeEnv {
|
|
1498
1498
|
code: StatusCode
|
|
1499
1499
|
info: NodeEnvInfo
|
|
@@ -1725,6 +1725,7 @@ type SpaceGateway {
|
|
|
1725
1725
|
url: String
|
|
1726
1726
|
protected: String
|
|
1727
1727
|
endpoint: String
|
|
1728
|
+
did: String
|
|
1728
1729
|
}
|
|
1729
1730
|
|
|
1730
1731
|
type TrustedFactory {
|
|
@@ -1879,10 +1880,10 @@ scalar Upload
|
|
|
1879
1880
|
type Mutation {
|
|
1880
1881
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1881
1882
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1882
|
-
startBlocklet(input:
|
|
1883
|
-
stopBlocklet(input:
|
|
1884
|
-
reloadBlocklet(input:
|
|
1885
|
-
restartBlocklet(input:
|
|
1883
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1884
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1885
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1886
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1886
1887
|
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1887
1888
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1888
1889
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
@@ -1999,4 +2000,5 @@ type Query {
|
|
|
1999
2000
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2000
2001
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2001
2002
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2003
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2002
2004
|
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -15,25 +15,6 @@ scalar Uint32
|
|
|
15
15
|
|
|
16
16
|
scalar Uint64
|
|
17
17
|
|
|
18
|
-
input BlockletControllerInput {
|
|
19
|
-
id: String
|
|
20
|
-
nftId: String
|
|
21
|
-
nftOwner: String
|
|
22
|
-
chainHost: String
|
|
23
|
-
expireDate: Uint32
|
|
24
|
-
consumedAt: String
|
|
25
|
-
status: BlockletControllerStatusInput
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
input BlockletControllerStatusInput {
|
|
29
|
-
value: Uint32
|
|
30
|
-
reason: String
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
input BlockletQueryInput {
|
|
34
|
-
controller: BlockletControllerInput
|
|
35
|
-
}
|
|
36
|
-
|
|
37
18
|
input BlockletStoreInput {
|
|
38
19
|
name: String
|
|
39
20
|
description: String
|
|
@@ -215,6 +196,11 @@ input RequestCheckDomainsInput {
|
|
|
215
196
|
did: String
|
|
216
197
|
}
|
|
217
198
|
|
|
199
|
+
input RequestComponentsInput {
|
|
200
|
+
did: String
|
|
201
|
+
componentDids: [String!]
|
|
202
|
+
}
|
|
203
|
+
|
|
218
204
|
input RequestConfigBlockletInput {
|
|
219
205
|
did: [String!]
|
|
220
206
|
configs: [ConfigEntryInput!]
|
|
@@ -310,7 +296,7 @@ input RequestDeleteBlockletInput {
|
|
|
310
296
|
|
|
311
297
|
input RequestDeleteBlockletSpaceGatewayInput {
|
|
312
298
|
did: String
|
|
313
|
-
|
|
299
|
+
spaceGatewayDid: String
|
|
314
300
|
}
|
|
315
301
|
|
|
316
302
|
input RequestDeleteComponentInput {
|
|
@@ -389,7 +375,11 @@ input RequestGetBlockletBackupsInput {
|
|
|
389
375
|
|
|
390
376
|
input RequestGetBlockletsInput {
|
|
391
377
|
useCache: Boolean
|
|
392
|
-
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
input RequestGetLauncherSessionInput {
|
|
381
|
+
launcherSessionId: String
|
|
382
|
+
launcherUrl: String
|
|
393
383
|
}
|
|
394
384
|
|
|
395
385
|
input RequestGetNotificationsInput {
|
|
@@ -673,6 +663,7 @@ input SpaceGatewayInput {
|
|
|
673
663
|
url: String
|
|
674
664
|
protected: String
|
|
675
665
|
endpoint: String
|
|
666
|
+
did: String
|
|
676
667
|
}
|
|
677
668
|
|
|
678
669
|
input TeamInput {
|
|
@@ -827,6 +818,9 @@ type BlockletController {
|
|
|
827
818
|
chainHost: String
|
|
828
819
|
expireDate: Uint32
|
|
829
820
|
consumedAt: String
|
|
821
|
+
launcherUrl: String
|
|
822
|
+
launcherSessionId: String
|
|
823
|
+
ownerDid: String
|
|
830
824
|
status: BlockletControllerStatus
|
|
831
825
|
}
|
|
832
826
|
|
|
@@ -1494,6 +1488,12 @@ type ResponseGetInvitations {
|
|
|
1494
1488
|
invitations: [InviteInfo!]
|
|
1495
1489
|
}
|
|
1496
1490
|
|
|
1491
|
+
type ResponseGetLauncherSession {
|
|
1492
|
+
code: StatusCode
|
|
1493
|
+
error: String
|
|
1494
|
+
launcherSession: Any
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
1497
|
type ResponseGetNodeEnv {
|
|
1498
1498
|
code: StatusCode
|
|
1499
1499
|
info: NodeEnvInfo
|
|
@@ -1725,6 +1725,7 @@ type SpaceGateway {
|
|
|
1725
1725
|
url: String
|
|
1726
1726
|
protected: String
|
|
1727
1727
|
endpoint: String
|
|
1728
|
+
did: String
|
|
1728
1729
|
}
|
|
1729
1730
|
|
|
1730
1731
|
type TrustedFactory {
|
|
@@ -1881,10 +1882,10 @@ enum Upload {
|
|
|
1881
1882
|
type Mutation {
|
|
1882
1883
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1883
1884
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1884
|
-
startBlocklet(input:
|
|
1885
|
-
stopBlocklet(input:
|
|
1886
|
-
reloadBlocklet(input:
|
|
1887
|
-
restartBlocklet(input:
|
|
1885
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1886
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1887
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1888
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1888
1889
|
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1889
1890
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1890
1891
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
@@ -2001,5 +2002,6 @@ type Query {
|
|
|
2001
2002
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2002
2003
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2003
2004
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2005
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2004
2006
|
}
|
|
2005
2007
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.11-beta-
|
|
6
|
+
"version": "1.16.11-beta-f74663ac",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "c59bc852f73b9e216af9d806b9c9e24b2e37ae27",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|