@abtnode/schema 1.16.28-beta-17c98819 → 1.16.28-beta-10ca1aad
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 +10 -0
- package/lib/schema.graphqls +10 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -104,6 +104,7 @@ input NodeInfoInput {
|
|
|
104
104
|
diskAlertThreshold: Uint32
|
|
105
105
|
enableBetaRelease: Boolean
|
|
106
106
|
nftDomainUrl: String
|
|
107
|
+
enableFileSystemIsolation: Boolean
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
input PagingInput {
|
|
@@ -850,6 +851,13 @@ input RequestUpdateUserExtraInput {
|
|
|
850
851
|
extra: String
|
|
851
852
|
}
|
|
852
853
|
|
|
854
|
+
input RequestUpdateUserProfileInput {
|
|
855
|
+
teamDid: String
|
|
856
|
+
did: String
|
|
857
|
+
remark: String
|
|
858
|
+
locale: String
|
|
859
|
+
}
|
|
860
|
+
|
|
853
861
|
input RequestUpdateUserTagsInput {
|
|
854
862
|
teamDid: String
|
|
855
863
|
did: String
|
|
@@ -1676,6 +1684,7 @@ type NodeState {
|
|
|
1676
1684
|
enableBetaRelease: Boolean
|
|
1677
1685
|
runtimeConfig: NodeRuntimeConfig
|
|
1678
1686
|
nftDomainUrl: String
|
|
1687
|
+
enableFileSystemIsolation: Boolean
|
|
1679
1688
|
}
|
|
1680
1689
|
|
|
1681
1690
|
type Notification {
|
|
@@ -2570,6 +2579,7 @@ type Mutation {
|
|
|
2570
2579
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2571
2580
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2572
2581
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2582
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2573
2583
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2574
2584
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2575
2585
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
package/lib/schema.graphqls
CHANGED
|
@@ -104,6 +104,7 @@ input NodeInfoInput {
|
|
|
104
104
|
diskAlertThreshold: Uint32
|
|
105
105
|
enableBetaRelease: Boolean
|
|
106
106
|
nftDomainUrl: String
|
|
107
|
+
enableFileSystemIsolation: Boolean
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
input PagingInput {
|
|
@@ -850,6 +851,13 @@ input RequestUpdateUserExtraInput {
|
|
|
850
851
|
extra: String
|
|
851
852
|
}
|
|
852
853
|
|
|
854
|
+
input RequestUpdateUserProfileInput {
|
|
855
|
+
teamDid: String
|
|
856
|
+
did: String
|
|
857
|
+
remark: String
|
|
858
|
+
locale: String
|
|
859
|
+
}
|
|
860
|
+
|
|
853
861
|
input RequestUpdateUserTagsInput {
|
|
854
862
|
teamDid: String
|
|
855
863
|
did: String
|
|
@@ -1676,6 +1684,7 @@ type NodeState {
|
|
|
1676
1684
|
enableBetaRelease: Boolean
|
|
1677
1685
|
runtimeConfig: NodeRuntimeConfig
|
|
1678
1686
|
nftDomainUrl: String
|
|
1687
|
+
enableFileSystemIsolation: Boolean
|
|
1679
1688
|
}
|
|
1680
1689
|
|
|
1681
1690
|
type Notification {
|
|
@@ -2572,6 +2581,7 @@ type Mutation {
|
|
|
2572
2581
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2573
2582
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2574
2583
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2584
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2575
2585
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2576
2586
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2577
2587
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.28-beta-
|
|
6
|
+
"version": "1.16.28-beta-10ca1aad",
|
|
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": "ed0958b6b5414ae5a3f4066bdf138a157d046b59",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|