@abtnode/schema 1.16.11-next-069c3537 → 1.16.11-next-3d2b39f7
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 -4
- package/lib/schema.graphqls +27 -4
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -22,6 +22,9 @@ input BlockletControllerInput {
|
|
|
22
22
|
chainHost: String
|
|
23
23
|
expireDate: Uint32
|
|
24
24
|
consumedAt: String
|
|
25
|
+
launcherUrl: String
|
|
26
|
+
launcherSessionId: String
|
|
27
|
+
ownerDid: String
|
|
25
28
|
}
|
|
26
29
|
|
|
27
30
|
input BlockletQueryInput {
|
|
@@ -209,6 +212,11 @@ input RequestCheckDomainsInput {
|
|
|
209
212
|
did: String
|
|
210
213
|
}
|
|
211
214
|
|
|
215
|
+
input RequestComponentsInput {
|
|
216
|
+
did: String
|
|
217
|
+
componentDids: [String!]
|
|
218
|
+
}
|
|
219
|
+
|
|
212
220
|
input RequestConfigBlockletInput {
|
|
213
221
|
did: [String!]
|
|
214
222
|
configs: [ConfigEntryInput!]
|
|
@@ -386,6 +394,11 @@ input RequestGetBlockletsInput {
|
|
|
386
394
|
query: BlockletQueryInput
|
|
387
395
|
}
|
|
388
396
|
|
|
397
|
+
input RequestGetLauncherSessionInput {
|
|
398
|
+
launcherSessionId: String
|
|
399
|
+
launcherUrl: String
|
|
400
|
+
}
|
|
401
|
+
|
|
389
402
|
input RequestGetNotificationsInput {
|
|
390
403
|
receiver: String
|
|
391
404
|
sender: String
|
|
@@ -821,6 +834,9 @@ type BlockletController {
|
|
|
821
834
|
chainHost: String
|
|
822
835
|
expireDate: Uint32
|
|
823
836
|
consumedAt: String
|
|
837
|
+
launcherUrl: String
|
|
838
|
+
launcherSessionId: String
|
|
839
|
+
ownerDid: String
|
|
824
840
|
}
|
|
825
841
|
|
|
826
842
|
type BlockletDiff {
|
|
@@ -1482,6 +1498,12 @@ type ResponseGetInvitations {
|
|
|
1482
1498
|
invitations: [InviteInfo!]
|
|
1483
1499
|
}
|
|
1484
1500
|
|
|
1501
|
+
type ResponseGetLauncherSession {
|
|
1502
|
+
code: StatusCode
|
|
1503
|
+
error: String
|
|
1504
|
+
launcherSession: Any
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1485
1507
|
type ResponseGetNodeEnv {
|
|
1486
1508
|
code: StatusCode
|
|
1487
1509
|
info: NodeEnvInfo
|
|
@@ -1867,10 +1889,10 @@ scalar Upload
|
|
|
1867
1889
|
type Mutation {
|
|
1868
1890
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1869
1891
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1870
|
-
startBlocklet(input:
|
|
1871
|
-
stopBlocklet(input:
|
|
1872
|
-
reloadBlocklet(input:
|
|
1873
|
-
restartBlocklet(input:
|
|
1892
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1893
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1894
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1895
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1874
1896
|
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1875
1897
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1876
1898
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
@@ -1987,4 +2009,5 @@ type Query {
|
|
|
1987
2009
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
1988
2010
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
1989
2011
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2012
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
1990
2013
|
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -22,6 +22,9 @@ input BlockletControllerInput {
|
|
|
22
22
|
chainHost: String
|
|
23
23
|
expireDate: Uint32
|
|
24
24
|
consumedAt: String
|
|
25
|
+
launcherUrl: String
|
|
26
|
+
launcherSessionId: String
|
|
27
|
+
ownerDid: String
|
|
25
28
|
}
|
|
26
29
|
|
|
27
30
|
input BlockletQueryInput {
|
|
@@ -209,6 +212,11 @@ input RequestCheckDomainsInput {
|
|
|
209
212
|
did: String
|
|
210
213
|
}
|
|
211
214
|
|
|
215
|
+
input RequestComponentsInput {
|
|
216
|
+
did: String
|
|
217
|
+
componentDids: [String!]
|
|
218
|
+
}
|
|
219
|
+
|
|
212
220
|
input RequestConfigBlockletInput {
|
|
213
221
|
did: [String!]
|
|
214
222
|
configs: [ConfigEntryInput!]
|
|
@@ -386,6 +394,11 @@ input RequestGetBlockletsInput {
|
|
|
386
394
|
query: BlockletQueryInput
|
|
387
395
|
}
|
|
388
396
|
|
|
397
|
+
input RequestGetLauncherSessionInput {
|
|
398
|
+
launcherSessionId: String
|
|
399
|
+
launcherUrl: String
|
|
400
|
+
}
|
|
401
|
+
|
|
389
402
|
input RequestGetNotificationsInput {
|
|
390
403
|
receiver: String
|
|
391
404
|
sender: String
|
|
@@ -821,6 +834,9 @@ type BlockletController {
|
|
|
821
834
|
chainHost: String
|
|
822
835
|
expireDate: Uint32
|
|
823
836
|
consumedAt: String
|
|
837
|
+
launcherUrl: String
|
|
838
|
+
launcherSessionId: String
|
|
839
|
+
ownerDid: String
|
|
824
840
|
}
|
|
825
841
|
|
|
826
842
|
type BlockletDiff {
|
|
@@ -1482,6 +1498,12 @@ type ResponseGetInvitations {
|
|
|
1482
1498
|
invitations: [InviteInfo!]
|
|
1483
1499
|
}
|
|
1484
1500
|
|
|
1501
|
+
type ResponseGetLauncherSession {
|
|
1502
|
+
code: StatusCode
|
|
1503
|
+
error: String
|
|
1504
|
+
launcherSession: Any
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1485
1507
|
type ResponseGetNodeEnv {
|
|
1486
1508
|
code: StatusCode
|
|
1487
1509
|
info: NodeEnvInfo
|
|
@@ -1869,10 +1891,10 @@ enum Upload {
|
|
|
1869
1891
|
type Mutation {
|
|
1870
1892
|
installBlocklet(input: RequestVersionedBlockletInput): ResponseBlocklet
|
|
1871
1893
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
1872
|
-
startBlocklet(input:
|
|
1873
|
-
stopBlocklet(input:
|
|
1874
|
-
reloadBlocklet(input:
|
|
1875
|
-
restartBlocklet(input:
|
|
1894
|
+
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1895
|
+
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1896
|
+
reloadBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1897
|
+
restartBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
1876
1898
|
deleteBlocklet(input: RequestDeleteBlockletInput): ResponseBlocklet
|
|
1877
1899
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1878
1900
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
@@ -1989,5 +2011,6 @@ type Query {
|
|
|
1989
2011
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
1990
2012
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
1991
2013
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2014
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
1992
2015
|
}
|
|
1993
2016
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.11-next-
|
|
6
|
+
"version": "1.16.11-next-3d2b39f7",
|
|
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": "d0142bd2d1e49b94dcb5542d78e294a7b2258faa",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|