@abtnode/schema 1.17.8-beta-20260119-102944-6ba93a16 → 1.17.8-beta-20260125-093329-64b43854
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 +19 -1
- package/lib/schema.graphqls +18 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -318,6 +318,7 @@ input OrgInput {
|
|
|
318
318
|
membersCount: Uint32
|
|
319
319
|
passports: [PassportInput!]
|
|
320
320
|
metadata: Any
|
|
321
|
+
avatar: String
|
|
321
322
|
}
|
|
322
323
|
|
|
323
324
|
input OrgSettingsInput {
|
|
@@ -549,6 +550,7 @@ input RequestBlockletSettingsInput {
|
|
|
549
550
|
gateway: BlockletGatewayInput
|
|
550
551
|
aigne: AigneConfigInput
|
|
551
552
|
org: OrgSettingsInput
|
|
553
|
+
subService: SubServiceConfigInput
|
|
552
554
|
}
|
|
553
555
|
|
|
554
556
|
input RequestCheckDomainsInput {
|
|
@@ -1705,6 +1707,12 @@ input SpaceGatewayInput {
|
|
|
1705
1707
|
did: String
|
|
1706
1708
|
}
|
|
1707
1709
|
|
|
1710
|
+
input SubServiceConfigInput {
|
|
1711
|
+
enabled: Boolean
|
|
1712
|
+
domain: String
|
|
1713
|
+
staticRoot: String
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1708
1716
|
input TagInput {
|
|
1709
1717
|
id: Uint32
|
|
1710
1718
|
title: String
|
|
@@ -1806,6 +1814,7 @@ input UserInfoInput {
|
|
|
1806
1814
|
address: UserAddressInput
|
|
1807
1815
|
userSessionsCount: Uint32
|
|
1808
1816
|
isFollowing: Boolean
|
|
1817
|
+
name: String
|
|
1809
1818
|
}
|
|
1810
1819
|
|
|
1811
1820
|
input UserMetadataInput {
|
|
@@ -2328,6 +2337,7 @@ type BlockletSettings {
|
|
|
2328
2337
|
didConnect: Any
|
|
2329
2338
|
oauth: Any
|
|
2330
2339
|
actionConfig: Any
|
|
2340
|
+
subService: SubServiceConfig
|
|
2331
2341
|
}
|
|
2332
2342
|
|
|
2333
2343
|
type BlockletState {
|
|
@@ -2985,6 +2995,7 @@ type Org {
|
|
|
2985
2995
|
membersCount: Uint32
|
|
2986
2996
|
passports: [Passport!]
|
|
2987
2997
|
metadata: Any
|
|
2998
|
+
avatar: String
|
|
2988
2999
|
}
|
|
2989
3000
|
|
|
2990
3001
|
type OrgResourceResult {
|
|
@@ -3873,6 +3884,12 @@ type Statistics {
|
|
|
3873
3884
|
failed: Uint32
|
|
3874
3885
|
}
|
|
3875
3886
|
|
|
3887
|
+
type SubServiceConfig {
|
|
3888
|
+
enabled: Boolean
|
|
3889
|
+
domain: String
|
|
3890
|
+
staticRoot: String
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3876
3893
|
type TUTM {
|
|
3877
3894
|
source: String
|
|
3878
3895
|
medium: String
|
|
@@ -4002,6 +4019,7 @@ type UserInfo {
|
|
|
4002
4019
|
address: UserAddress
|
|
4003
4020
|
userSessionsCount: Uint32
|
|
4004
4021
|
isFollowing: Boolean
|
|
4022
|
+
name: String
|
|
4005
4023
|
}
|
|
4006
4024
|
|
|
4007
4025
|
type UserMetadata {
|
|
@@ -4548,4 +4566,4 @@ type Query {
|
|
|
4548
4566
|
getOrgMembers(input: RequestGetOrgDataInput): ResponseOrgUsers
|
|
4549
4567
|
getOrgInvitableUsers(input: RequestInvitableUsersInput): ResponseUsers
|
|
4550
4568
|
getOrgResource(input: RequestGetOrgResourceInput): ResponseGetOrgResource
|
|
4551
|
-
}`;
|
|
4569
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -318,6 +318,7 @@ input OrgInput {
|
|
|
318
318
|
membersCount: Uint32
|
|
319
319
|
passports: [PassportInput!]
|
|
320
320
|
metadata: Any
|
|
321
|
+
avatar: String
|
|
321
322
|
}
|
|
322
323
|
|
|
323
324
|
input OrgSettingsInput {
|
|
@@ -549,6 +550,7 @@ input RequestBlockletSettingsInput {
|
|
|
549
550
|
gateway: BlockletGatewayInput
|
|
550
551
|
aigne: AigneConfigInput
|
|
551
552
|
org: OrgSettingsInput
|
|
553
|
+
subService: SubServiceConfigInput
|
|
552
554
|
}
|
|
553
555
|
|
|
554
556
|
input RequestCheckDomainsInput {
|
|
@@ -1705,6 +1707,12 @@ input SpaceGatewayInput {
|
|
|
1705
1707
|
did: String
|
|
1706
1708
|
}
|
|
1707
1709
|
|
|
1710
|
+
input SubServiceConfigInput {
|
|
1711
|
+
enabled: Boolean
|
|
1712
|
+
domain: String
|
|
1713
|
+
staticRoot: String
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1708
1716
|
input TagInput {
|
|
1709
1717
|
id: Uint32
|
|
1710
1718
|
title: String
|
|
@@ -1806,6 +1814,7 @@ input UserInfoInput {
|
|
|
1806
1814
|
address: UserAddressInput
|
|
1807
1815
|
userSessionsCount: Uint32
|
|
1808
1816
|
isFollowing: Boolean
|
|
1817
|
+
name: String
|
|
1809
1818
|
}
|
|
1810
1819
|
|
|
1811
1820
|
input UserMetadataInput {
|
|
@@ -2328,6 +2337,7 @@ type BlockletSettings {
|
|
|
2328
2337
|
didConnect: Any
|
|
2329
2338
|
oauth: Any
|
|
2330
2339
|
actionConfig: Any
|
|
2340
|
+
subService: SubServiceConfig
|
|
2331
2341
|
}
|
|
2332
2342
|
|
|
2333
2343
|
type BlockletState {
|
|
@@ -2985,6 +2995,7 @@ type Org {
|
|
|
2985
2995
|
membersCount: Uint32
|
|
2986
2996
|
passports: [Passport!]
|
|
2987
2997
|
metadata: Any
|
|
2998
|
+
avatar: String
|
|
2988
2999
|
}
|
|
2989
3000
|
|
|
2990
3001
|
type OrgResourceResult {
|
|
@@ -3873,6 +3884,12 @@ type Statistics {
|
|
|
3873
3884
|
failed: Uint32
|
|
3874
3885
|
}
|
|
3875
3886
|
|
|
3887
|
+
type SubServiceConfig {
|
|
3888
|
+
enabled: Boolean
|
|
3889
|
+
domain: String
|
|
3890
|
+
staticRoot: String
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3876
3893
|
type TUTM {
|
|
3877
3894
|
source: String
|
|
3878
3895
|
medium: String
|
|
@@ -4002,6 +4019,7 @@ type UserInfo {
|
|
|
4002
4019
|
address: UserAddress
|
|
4003
4020
|
userSessionsCount: Uint32
|
|
4004
4021
|
isFollowing: Boolean
|
|
4022
|
+
name: String
|
|
4005
4023
|
}
|
|
4006
4024
|
|
|
4007
4025
|
type UserMetadata {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.17.8-beta-
|
|
6
|
+
"version": "1.17.8-beta-20260125-093329-64b43854",
|
|
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": "241254785bda907be2296228869b4fc9c1679a6b",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|