@abtnode/schema 1.16.14 → 1.16.15-beta-04d1e821
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 +14 -0
- package/lib/schema.graphqls +14 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -538,6 +538,12 @@ input RequestStartSessionInput {
|
|
|
538
538
|
data: String
|
|
539
539
|
}
|
|
540
540
|
|
|
541
|
+
input RequestSwitchProfileInput {
|
|
542
|
+
teamDid: String
|
|
543
|
+
userDid: String
|
|
544
|
+
profile: UserProfileInput
|
|
545
|
+
}
|
|
546
|
+
|
|
541
547
|
input RequestTakeRoutingSnapshotInput {
|
|
542
548
|
dryRun: Boolean
|
|
543
549
|
message: String
|
|
@@ -760,6 +766,13 @@ input UserInfoInput {
|
|
|
760
766
|
extraConfigs: Any
|
|
761
767
|
}
|
|
762
768
|
|
|
769
|
+
input UserProfileInput {
|
|
770
|
+
did: String
|
|
771
|
+
avatar: String
|
|
772
|
+
fullName: String
|
|
773
|
+
email: String
|
|
774
|
+
}
|
|
775
|
+
|
|
763
776
|
input UserQueryInput {
|
|
764
777
|
role: String
|
|
765
778
|
approved: Boolean
|
|
@@ -2037,6 +2050,7 @@ type Mutation {
|
|
|
2037
2050
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
2038
2051
|
revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
2039
2052
|
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
2053
|
+
switchProfile(input: RequestSwitchProfileInput): ResponseUser
|
|
2040
2054
|
createRole(input: RequestCreateRoleInput): ResponseRole
|
|
2041
2055
|
updateRole(input: RequestTeamRoleInput): ResponseRole
|
|
2042
2056
|
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
package/lib/schema.graphqls
CHANGED
|
@@ -538,6 +538,12 @@ input RequestStartSessionInput {
|
|
|
538
538
|
data: String
|
|
539
539
|
}
|
|
540
540
|
|
|
541
|
+
input RequestSwitchProfileInput {
|
|
542
|
+
teamDid: String
|
|
543
|
+
userDid: String
|
|
544
|
+
profile: UserProfileInput
|
|
545
|
+
}
|
|
546
|
+
|
|
541
547
|
input RequestTakeRoutingSnapshotInput {
|
|
542
548
|
dryRun: Boolean
|
|
543
549
|
message: String
|
|
@@ -760,6 +766,13 @@ input UserInfoInput {
|
|
|
760
766
|
extraConfigs: Any
|
|
761
767
|
}
|
|
762
768
|
|
|
769
|
+
input UserProfileInput {
|
|
770
|
+
did: String
|
|
771
|
+
avatar: String
|
|
772
|
+
fullName: String
|
|
773
|
+
email: String
|
|
774
|
+
}
|
|
775
|
+
|
|
763
776
|
input UserQueryInput {
|
|
764
777
|
role: String
|
|
765
778
|
approved: Boolean
|
|
@@ -2039,6 +2052,7 @@ type Mutation {
|
|
|
2039
2052
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
2040
2053
|
revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
2041
2054
|
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
|
2055
|
+
switchProfile(input: RequestSwitchProfileInput): ResponseUser
|
|
2042
2056
|
createRole(input: RequestCreateRoleInput): ResponseRole
|
|
2043
2057
|
updateRole(input: RequestTeamRoleInput): ResponseRole
|
|
2044
2058
|
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.15-beta-04d1e821",
|
|
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": "42e1523e5b92a3a57d9083ae29455df429afb0f6",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|