@abtnode/schema 1.16.28-next-5a717317 → 1.16.29-beta-0070353c
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 +16 -0
- package/lib/schema.graphqls +16 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -32,6 +32,7 @@ input BlockletStoreInput {
|
|
|
32
32
|
cdnUrl: String
|
|
33
33
|
protected: Boolean
|
|
34
34
|
id: String
|
|
35
|
+
scope: String
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
input ConfigEntryInput {
|
|
@@ -104,6 +105,7 @@ input NodeInfoInput {
|
|
|
104
105
|
diskAlertThreshold: Uint32
|
|
105
106
|
enableBetaRelease: Boolean
|
|
106
107
|
nftDomainUrl: String
|
|
108
|
+
enableFileSystemIsolation: Boolean
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
input PagingInput {
|
|
@@ -140,6 +142,7 @@ input RequestAddBlockletSpaceGatewayInput {
|
|
|
140
142
|
input RequestAddBlockletStoreInput {
|
|
141
143
|
teamDid: String
|
|
142
144
|
url: String
|
|
145
|
+
scope: String
|
|
143
146
|
}
|
|
144
147
|
|
|
145
148
|
input RequestAddDomainAliasInput {
|
|
@@ -346,6 +349,7 @@ input RequestCreateReleaseInput {
|
|
|
346
349
|
note: String
|
|
347
350
|
status: String
|
|
348
351
|
blockletComponents: [String!]
|
|
352
|
+
uploadedResource: String
|
|
349
353
|
}
|
|
350
354
|
|
|
351
355
|
input RequestCreateRoleInput {
|
|
@@ -850,6 +854,13 @@ input RequestUpdateUserExtraInput {
|
|
|
850
854
|
extra: String
|
|
851
855
|
}
|
|
852
856
|
|
|
857
|
+
input RequestUpdateUserProfileInput {
|
|
858
|
+
teamDid: String
|
|
859
|
+
did: String
|
|
860
|
+
remark: String
|
|
861
|
+
locale: String
|
|
862
|
+
}
|
|
863
|
+
|
|
853
864
|
input RequestUpdateUserTagsInput {
|
|
854
865
|
teamDid: String
|
|
855
866
|
did: String
|
|
@@ -1359,6 +1370,7 @@ type BlockletStore {
|
|
|
1359
1370
|
cdnUrl: String
|
|
1360
1371
|
protected: Boolean
|
|
1361
1372
|
id: String
|
|
1373
|
+
scope: String
|
|
1362
1374
|
}
|
|
1363
1375
|
|
|
1364
1376
|
type BooleanResponse {
|
|
@@ -1478,6 +1490,7 @@ type ConnectedStore {
|
|
|
1478
1490
|
developerDid: String
|
|
1479
1491
|
developerEmail: String
|
|
1480
1492
|
developerName: String
|
|
1493
|
+
scope: String
|
|
1481
1494
|
}
|
|
1482
1495
|
|
|
1483
1496
|
type CreateAccessKey {
|
|
@@ -1676,6 +1689,7 @@ type NodeState {
|
|
|
1676
1689
|
enableBetaRelease: Boolean
|
|
1677
1690
|
runtimeConfig: NodeRuntimeConfig
|
|
1678
1691
|
nftDomainUrl: String
|
|
1692
|
+
enableFileSystemIsolation: Boolean
|
|
1679
1693
|
}
|
|
1680
1694
|
|
|
1681
1695
|
type Notification {
|
|
@@ -1786,6 +1800,7 @@ type Release {
|
|
|
1786
1800
|
updatedAt: String
|
|
1787
1801
|
blockletComponents: [ReleaseComponent!]
|
|
1788
1802
|
publishedStoreIds: [String!]
|
|
1803
|
+
uploadedResource: String
|
|
1789
1804
|
}
|
|
1790
1805
|
|
|
1791
1806
|
type ReleaseComponent {
|
|
@@ -2570,6 +2585,7 @@ type Mutation {
|
|
|
2570
2585
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2571
2586
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2572
2587
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2588
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2573
2589
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2574
2590
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2575
2591
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
package/lib/schema.graphqls
CHANGED
|
@@ -32,6 +32,7 @@ input BlockletStoreInput {
|
|
|
32
32
|
cdnUrl: String
|
|
33
33
|
protected: Boolean
|
|
34
34
|
id: String
|
|
35
|
+
scope: String
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
input ConfigEntryInput {
|
|
@@ -104,6 +105,7 @@ input NodeInfoInput {
|
|
|
104
105
|
diskAlertThreshold: Uint32
|
|
105
106
|
enableBetaRelease: Boolean
|
|
106
107
|
nftDomainUrl: String
|
|
108
|
+
enableFileSystemIsolation: Boolean
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
input PagingInput {
|
|
@@ -140,6 +142,7 @@ input RequestAddBlockletSpaceGatewayInput {
|
|
|
140
142
|
input RequestAddBlockletStoreInput {
|
|
141
143
|
teamDid: String
|
|
142
144
|
url: String
|
|
145
|
+
scope: String
|
|
143
146
|
}
|
|
144
147
|
|
|
145
148
|
input RequestAddDomainAliasInput {
|
|
@@ -346,6 +349,7 @@ input RequestCreateReleaseInput {
|
|
|
346
349
|
note: String
|
|
347
350
|
status: String
|
|
348
351
|
blockletComponents: [String!]
|
|
352
|
+
uploadedResource: String
|
|
349
353
|
}
|
|
350
354
|
|
|
351
355
|
input RequestCreateRoleInput {
|
|
@@ -850,6 +854,13 @@ input RequestUpdateUserExtraInput {
|
|
|
850
854
|
extra: String
|
|
851
855
|
}
|
|
852
856
|
|
|
857
|
+
input RequestUpdateUserProfileInput {
|
|
858
|
+
teamDid: String
|
|
859
|
+
did: String
|
|
860
|
+
remark: String
|
|
861
|
+
locale: String
|
|
862
|
+
}
|
|
863
|
+
|
|
853
864
|
input RequestUpdateUserTagsInput {
|
|
854
865
|
teamDid: String
|
|
855
866
|
did: String
|
|
@@ -1359,6 +1370,7 @@ type BlockletStore {
|
|
|
1359
1370
|
cdnUrl: String
|
|
1360
1371
|
protected: Boolean
|
|
1361
1372
|
id: String
|
|
1373
|
+
scope: String
|
|
1362
1374
|
}
|
|
1363
1375
|
|
|
1364
1376
|
type BooleanResponse {
|
|
@@ -1478,6 +1490,7 @@ type ConnectedStore {
|
|
|
1478
1490
|
developerDid: String
|
|
1479
1491
|
developerEmail: String
|
|
1480
1492
|
developerName: String
|
|
1493
|
+
scope: String
|
|
1481
1494
|
}
|
|
1482
1495
|
|
|
1483
1496
|
type CreateAccessKey {
|
|
@@ -1676,6 +1689,7 @@ type NodeState {
|
|
|
1676
1689
|
enableBetaRelease: Boolean
|
|
1677
1690
|
runtimeConfig: NodeRuntimeConfig
|
|
1678
1691
|
nftDomainUrl: String
|
|
1692
|
+
enableFileSystemIsolation: Boolean
|
|
1679
1693
|
}
|
|
1680
1694
|
|
|
1681
1695
|
type Notification {
|
|
@@ -1786,6 +1800,7 @@ type Release {
|
|
|
1786
1800
|
updatedAt: String
|
|
1787
1801
|
blockletComponents: [ReleaseComponent!]
|
|
1788
1802
|
publishedStoreIds: [String!]
|
|
1803
|
+
uploadedResource: String
|
|
1789
1804
|
}
|
|
1790
1805
|
|
|
1791
1806
|
type ReleaseComponent {
|
|
@@ -2572,6 +2587,7 @@ type Mutation {
|
|
|
2572
2587
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2573
2588
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2574
2589
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2590
|
+
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
|
2575
2591
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2576
2592
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2577
2593
|
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.
|
|
6
|
+
"version": "1.16.29-beta-0070353c",
|
|
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": "7e3562be3a8af477749420cc022938a1059484d4",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|