@abtnode/schema 1.16.17-beta-6f0c7674 → 1.16.17-beta-952ef53d
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 +8 -6
- package/lib/schema.graphqls +8 -6
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -317,6 +317,7 @@ input RequestCreateRoleInput {
|
|
|
317
317
|
description: String
|
|
318
318
|
childName: String
|
|
319
319
|
permissions: [String!]
|
|
320
|
+
extra: String
|
|
320
321
|
}
|
|
321
322
|
|
|
322
323
|
input RequestCreateTransferNodeInvitationInput {
|
|
@@ -638,7 +639,7 @@ input RequestTeamPermissionInput {
|
|
|
638
639
|
|
|
639
640
|
input RequestTeamRoleInput {
|
|
640
641
|
teamDid: String
|
|
641
|
-
role:
|
|
642
|
+
role: RoleUpdateInput
|
|
642
643
|
}
|
|
643
644
|
|
|
644
645
|
input RequestTeamUserInput {
|
|
@@ -741,7 +742,7 @@ input RequestUpdateUserExtraInput {
|
|
|
741
742
|
teamDid: String
|
|
742
743
|
did: String
|
|
743
744
|
remark: String
|
|
744
|
-
extra:
|
|
745
|
+
extra: String
|
|
745
746
|
}
|
|
746
747
|
|
|
747
748
|
input RequestUpdateUserTagsInput {
|
|
@@ -777,12 +778,11 @@ input RequestVersionedBlockletInput {
|
|
|
777
778
|
downloadTokenList: [DownloadTokenInput!]
|
|
778
779
|
}
|
|
779
780
|
|
|
780
|
-
input
|
|
781
|
+
input RoleUpdateInput {
|
|
781
782
|
name: String
|
|
782
|
-
description: String
|
|
783
|
-
grants: [String!]
|
|
784
783
|
title: String
|
|
785
|
-
|
|
784
|
+
description: String
|
|
785
|
+
extra: String
|
|
786
786
|
}
|
|
787
787
|
|
|
788
788
|
input RoutingRuleInput {
|
|
@@ -1972,6 +1972,7 @@ type Role {
|
|
|
1972
1972
|
grants: [String!]
|
|
1973
1973
|
title: String
|
|
1974
1974
|
isProtected: Boolean
|
|
1975
|
+
extra: Any
|
|
1975
1976
|
}
|
|
1976
1977
|
|
|
1977
1978
|
type RoutingProvider {
|
|
@@ -2387,6 +2388,7 @@ type Query {
|
|
|
2387
2388
|
sendTestMessage(input: RequestSendMsgInput): ResponseSendMsg
|
|
2388
2389
|
getSession(input: RequestGetSessionInput): ResponseGetSession
|
|
2389
2390
|
getRoles(input: TeamInput): ResponseRoles
|
|
2391
|
+
getRole(input: RequestTeamRoleInput): ResponseRole
|
|
2390
2392
|
getPermissions(input: TeamInput): ResponsePermissions
|
|
2391
2393
|
getInvitations(input: TeamInput): ResponseGetInvitations
|
|
2392
2394
|
getUsers(input: RequestUsersInput): ResponseUsers
|
package/lib/schema.graphqls
CHANGED
|
@@ -317,6 +317,7 @@ input RequestCreateRoleInput {
|
|
|
317
317
|
description: String
|
|
318
318
|
childName: String
|
|
319
319
|
permissions: [String!]
|
|
320
|
+
extra: String
|
|
320
321
|
}
|
|
321
322
|
|
|
322
323
|
input RequestCreateTransferNodeInvitationInput {
|
|
@@ -638,7 +639,7 @@ input RequestTeamPermissionInput {
|
|
|
638
639
|
|
|
639
640
|
input RequestTeamRoleInput {
|
|
640
641
|
teamDid: String
|
|
641
|
-
role:
|
|
642
|
+
role: RoleUpdateInput
|
|
642
643
|
}
|
|
643
644
|
|
|
644
645
|
input RequestTeamUserInput {
|
|
@@ -741,7 +742,7 @@ input RequestUpdateUserExtraInput {
|
|
|
741
742
|
teamDid: String
|
|
742
743
|
did: String
|
|
743
744
|
remark: String
|
|
744
|
-
extra:
|
|
745
|
+
extra: String
|
|
745
746
|
}
|
|
746
747
|
|
|
747
748
|
input RequestUpdateUserTagsInput {
|
|
@@ -777,12 +778,11 @@ input RequestVersionedBlockletInput {
|
|
|
777
778
|
downloadTokenList: [DownloadTokenInput!]
|
|
778
779
|
}
|
|
779
780
|
|
|
780
|
-
input
|
|
781
|
+
input RoleUpdateInput {
|
|
781
782
|
name: String
|
|
782
|
-
description: String
|
|
783
|
-
grants: [String!]
|
|
784
783
|
title: String
|
|
785
|
-
|
|
784
|
+
description: String
|
|
785
|
+
extra: String
|
|
786
786
|
}
|
|
787
787
|
|
|
788
788
|
input RoutingRuleInput {
|
|
@@ -1972,6 +1972,7 @@ type Role {
|
|
|
1972
1972
|
grants: [String!]
|
|
1973
1973
|
title: String
|
|
1974
1974
|
isProtected: Boolean
|
|
1975
|
+
extra: Any
|
|
1975
1976
|
}
|
|
1976
1977
|
|
|
1977
1978
|
type RoutingProvider {
|
|
@@ -2389,6 +2390,7 @@ type Query {
|
|
|
2389
2390
|
sendTestMessage(input: RequestSendMsgInput): ResponseSendMsg
|
|
2390
2391
|
getSession(input: RequestGetSessionInput): ResponseGetSession
|
|
2391
2392
|
getRoles(input: TeamInput): ResponseRoles
|
|
2393
|
+
getRole(input: RequestTeamRoleInput): ResponseRole
|
|
2392
2394
|
getPermissions(input: TeamInput): ResponsePermissions
|
|
2393
2395
|
getInvitations(input: TeamInput): ResponseGetInvitations
|
|
2394
2396
|
getUsers(input: RequestUsersInput): ResponseUsers
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.17-beta-
|
|
6
|
+
"version": "1.16.17-beta-952ef53d",
|
|
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": "a575050c7ffd08961a5f4072f4048f6e37976810",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|