@abtnode/schema 1.16.28-next-5a717317 → 1.16.28
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 +12 -0
- package/lib/schema.graphqls +12 -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 {
|
|
@@ -346,6 +347,7 @@ input RequestCreateReleaseInput {
|
|
|
346
347
|
note: String
|
|
347
348
|
status: String
|
|
348
349
|
blockletComponents: [String!]
|
|
350
|
+
uploadedResource: String
|
|
349
351
|
}
|
|
350
352
|
|
|
351
353
|
input RequestCreateRoleInput {
|
|
@@ -850,6 +852,13 @@ input RequestUpdateUserExtraInput {
|
|
|
850
852
|
extra: String
|
|
851
853
|
}
|
|
852
854
|
|
|
855
|
+
input RequestUpdateUserProfileInput {
|
|
856
|
+
teamDid: String
|
|
857
|
+
did: String
|
|
858
|
+
remark: String
|
|
859
|
+
locale: String
|
|
860
|
+
}
|
|
861
|
+
|
|
853
862
|
input RequestUpdateUserTagsInput {
|
|
854
863
|
teamDid: String
|
|
855
864
|
did: String
|
|
@@ -1676,6 +1685,7 @@ type NodeState {
|
|
|
1676
1685
|
enableBetaRelease: Boolean
|
|
1677
1686
|
runtimeConfig: NodeRuntimeConfig
|
|
1678
1687
|
nftDomainUrl: String
|
|
1688
|
+
enableFileSystemIsolation: Boolean
|
|
1679
1689
|
}
|
|
1680
1690
|
|
|
1681
1691
|
type Notification {
|
|
@@ -1786,6 +1796,7 @@ type Release {
|
|
|
1786
1796
|
updatedAt: String
|
|
1787
1797
|
blockletComponents: [ReleaseComponent!]
|
|
1788
1798
|
publishedStoreIds: [String!]
|
|
1799
|
+
uploadedResource: String
|
|
1789
1800
|
}
|
|
1790
1801
|
|
|
1791
1802
|
type ReleaseComponent {
|
|
@@ -2570,6 +2581,7 @@ type Mutation {
|
|
|
2570
2581
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2571
2582
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2572
2583
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2584
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2573
2585
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2574
2586
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2575
2587
|
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 {
|
|
@@ -346,6 +347,7 @@ input RequestCreateReleaseInput {
|
|
|
346
347
|
note: String
|
|
347
348
|
status: String
|
|
348
349
|
blockletComponents: [String!]
|
|
350
|
+
uploadedResource: String
|
|
349
351
|
}
|
|
350
352
|
|
|
351
353
|
input RequestCreateRoleInput {
|
|
@@ -850,6 +852,13 @@ input RequestUpdateUserExtraInput {
|
|
|
850
852
|
extra: String
|
|
851
853
|
}
|
|
852
854
|
|
|
855
|
+
input RequestUpdateUserProfileInput {
|
|
856
|
+
teamDid: String
|
|
857
|
+
did: String
|
|
858
|
+
remark: String
|
|
859
|
+
locale: String
|
|
860
|
+
}
|
|
861
|
+
|
|
853
862
|
input RequestUpdateUserTagsInput {
|
|
854
863
|
teamDid: String
|
|
855
864
|
did: String
|
|
@@ -1676,6 +1685,7 @@ type NodeState {
|
|
|
1676
1685
|
enableBetaRelease: Boolean
|
|
1677
1686
|
runtimeConfig: NodeRuntimeConfig
|
|
1678
1687
|
nftDomainUrl: String
|
|
1688
|
+
enableFileSystemIsolation: Boolean
|
|
1679
1689
|
}
|
|
1680
1690
|
|
|
1681
1691
|
type Notification {
|
|
@@ -1786,6 +1796,7 @@ type Release {
|
|
|
1786
1796
|
updatedAt: String
|
|
1787
1797
|
blockletComponents: [ReleaseComponent!]
|
|
1788
1798
|
publishedStoreIds: [String!]
|
|
1799
|
+
uploadedResource: String
|
|
1789
1800
|
}
|
|
1790
1801
|
|
|
1791
1802
|
type ReleaseComponent {
|
|
@@ -2572,6 +2583,7 @@ type Mutation {
|
|
|
2572
2583
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2573
2584
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2574
2585
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2586
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2575
2587
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2576
2588
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2577
2589
|
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
|
|
6
|
+
"version": "1.16.28",
|
|
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": "54db076a7e520bbc260f8cbf0af31dd50b86aef1",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|