@abtnode/schema 1.16.11-beta-069c3537 → 1.16.11-next-a232f5fb
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 +18 -0
- package/lib/schema.graphqls +18 -0
- 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 {
|
|
@@ -386,6 +389,11 @@ input RequestGetBlockletsInput {
|
|
|
386
389
|
query: BlockletQueryInput
|
|
387
390
|
}
|
|
388
391
|
|
|
392
|
+
input RequestGetLauncherSessionInput {
|
|
393
|
+
launcherSessionId: String
|
|
394
|
+
launcherUrl: String
|
|
395
|
+
}
|
|
396
|
+
|
|
389
397
|
input RequestGetNotificationsInput {
|
|
390
398
|
receiver: String
|
|
391
399
|
sender: String
|
|
@@ -821,6 +829,9 @@ type BlockletController {
|
|
|
821
829
|
chainHost: String
|
|
822
830
|
expireDate: Uint32
|
|
823
831
|
consumedAt: String
|
|
832
|
+
launcherUrl: String
|
|
833
|
+
launcherSessionId: String
|
|
834
|
+
ownerDid: String
|
|
824
835
|
}
|
|
825
836
|
|
|
826
837
|
type BlockletDiff {
|
|
@@ -1482,6 +1493,12 @@ type ResponseGetInvitations {
|
|
|
1482
1493
|
invitations: [InviteInfo!]
|
|
1483
1494
|
}
|
|
1484
1495
|
|
|
1496
|
+
type ResponseGetLauncherSession {
|
|
1497
|
+
code: StatusCode
|
|
1498
|
+
error: String
|
|
1499
|
+
launcherSession: Any
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1485
1502
|
type ResponseGetNodeEnv {
|
|
1486
1503
|
code: StatusCode
|
|
1487
1504
|
info: NodeEnvInfo
|
|
@@ -1987,4 +2004,5 @@ type Query {
|
|
|
1987
2004
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
1988
2005
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
1989
2006
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2007
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
1990
2008
|
}`;
|
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 {
|
|
@@ -386,6 +389,11 @@ input RequestGetBlockletsInput {
|
|
|
386
389
|
query: BlockletQueryInput
|
|
387
390
|
}
|
|
388
391
|
|
|
392
|
+
input RequestGetLauncherSessionInput {
|
|
393
|
+
launcherSessionId: String
|
|
394
|
+
launcherUrl: String
|
|
395
|
+
}
|
|
396
|
+
|
|
389
397
|
input RequestGetNotificationsInput {
|
|
390
398
|
receiver: String
|
|
391
399
|
sender: String
|
|
@@ -821,6 +829,9 @@ type BlockletController {
|
|
|
821
829
|
chainHost: String
|
|
822
830
|
expireDate: Uint32
|
|
823
831
|
consumedAt: String
|
|
832
|
+
launcherUrl: String
|
|
833
|
+
launcherSessionId: String
|
|
834
|
+
ownerDid: String
|
|
824
835
|
}
|
|
825
836
|
|
|
826
837
|
type BlockletDiff {
|
|
@@ -1482,6 +1493,12 @@ type ResponseGetInvitations {
|
|
|
1482
1493
|
invitations: [InviteInfo!]
|
|
1483
1494
|
}
|
|
1484
1495
|
|
|
1496
|
+
type ResponseGetLauncherSession {
|
|
1497
|
+
code: StatusCode
|
|
1498
|
+
error: String
|
|
1499
|
+
launcherSession: Any
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1485
1502
|
type ResponseGetNodeEnv {
|
|
1486
1503
|
code: StatusCode
|
|
1487
1504
|
info: NodeEnvInfo
|
|
@@ -1989,5 +2006,6 @@ type Query {
|
|
|
1989
2006
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
1990
2007
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
1991
2008
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2009
|
+
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
1992
2010
|
}
|
|
1993
2011
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.11-
|
|
6
|
+
"version": "1.16.11-next-a232f5fb",
|
|
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": "1af264e9b6648aa191fbf23c67717262ac717697",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|