@abtnode/schema 1.16.52-beta-20250908-085420-224a58fa → 1.16.52-beta-20250909-073849-4e392ab1
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 -15
- package/lib/schema.graphqls +15 -14
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -1455,7 +1455,12 @@ input RequestUpgradeNodeVersionInput {
|
|
|
1455
1455
|
sessionId: String
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
1458
|
-
input
|
|
1458
|
+
input RequestUserRelationCountInput {
|
|
1459
|
+
teamDid: String
|
|
1460
|
+
userDids: [String!]
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
input RequestUserRelationQueryInput {
|
|
1459
1464
|
teamDid: String
|
|
1460
1465
|
userDid: String
|
|
1461
1466
|
paging: PagingInput
|
|
@@ -1463,11 +1468,6 @@ input RequestUserFollowsInput {
|
|
|
1463
1468
|
options: QueryUserFollowOptionsInput
|
|
1464
1469
|
}
|
|
1465
1470
|
|
|
1466
|
-
input RequestUserFollowsStatsInput {
|
|
1467
|
-
teamDid: String
|
|
1468
|
-
userDids: [String!]
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
1471
|
input RequestUserSessionsInput {
|
|
1472
1472
|
teamDid: String
|
|
1473
1473
|
query: UserSessionQueryInput
|
|
@@ -3131,11 +3131,6 @@ type ResponseFindCertificateByDomain {
|
|
|
3131
3131
|
cert: Certificate
|
|
3132
3132
|
}
|
|
3133
3133
|
|
|
3134
|
-
type ResponseFollowStats {
|
|
3135
|
-
code: StatusCode
|
|
3136
|
-
data: Any
|
|
3137
|
-
}
|
|
3138
|
-
|
|
3139
3134
|
type ResponseGateway {
|
|
3140
3135
|
code: StatusCode
|
|
3141
3136
|
gateway: Gateway
|
|
@@ -3485,6 +3480,11 @@ type ResponseUserFollows {
|
|
|
3485
3480
|
paging: Paging
|
|
3486
3481
|
}
|
|
3487
3482
|
|
|
3483
|
+
type ResponseUserRelationCount {
|
|
3484
|
+
code: StatusCode
|
|
3485
|
+
data: Any
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
3488
|
type ResponseUserSessions {
|
|
3489
3489
|
code: StatusCode
|
|
3490
3490
|
list: [UserSession!]
|
|
@@ -4208,12 +4208,13 @@ type Query {
|
|
|
4208
4208
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
4209
4209
|
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
4210
4210
|
destroySelf(input: RequestTeamUserInput): ResponseUser
|
|
4211
|
-
getUserFollowers(input:
|
|
4212
|
-
getUserFollowing(input:
|
|
4213
|
-
getUserFollowStats(input:
|
|
4211
|
+
getUserFollowers(input: RequestUserRelationQueryInput): ResponseUserFollows
|
|
4212
|
+
getUserFollowing(input: RequestUserRelationQueryInput): ResponseUserFollows
|
|
4213
|
+
getUserFollowStats(input: RequestUserRelationCountInput): ResponseUserRelationCount
|
|
4214
4214
|
checkFollowing(input: RequestCheckFollowingInput): ResponseCheckFollowing
|
|
4215
4215
|
followUser(input: RequestFollowUserActionInput): GeneralResponse
|
|
4216
4216
|
unfollowUser(input: RequestFollowUserActionInput): GeneralResponse
|
|
4217
|
+
getUserInvites(input: RequestUserRelationQueryInput): ResponseUsers
|
|
4217
4218
|
getTags(input: RequestTagsInput): ResponseTags
|
|
4218
4219
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
4219
4220
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
@@ -4245,4 +4246,4 @@ type Query {
|
|
|
4245
4246
|
createOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
|
|
4246
4247
|
updateOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
|
|
4247
4248
|
deleteOAuthClient(input: RequestDeleteOAuthClientInput): GeneralResponse
|
|
4248
|
-
}`;
|
|
4249
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -1455,7 +1455,12 @@ input RequestUpgradeNodeVersionInput {
|
|
|
1455
1455
|
sessionId: String
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
1458
|
-
input
|
|
1458
|
+
input RequestUserRelationCountInput {
|
|
1459
|
+
teamDid: String
|
|
1460
|
+
userDids: [String!]
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
input RequestUserRelationQueryInput {
|
|
1459
1464
|
teamDid: String
|
|
1460
1465
|
userDid: String
|
|
1461
1466
|
paging: PagingInput
|
|
@@ -1463,11 +1468,6 @@ input RequestUserFollowsInput {
|
|
|
1463
1468
|
options: QueryUserFollowOptionsInput
|
|
1464
1469
|
}
|
|
1465
1470
|
|
|
1466
|
-
input RequestUserFollowsStatsInput {
|
|
1467
|
-
teamDid: String
|
|
1468
|
-
userDids: [String!]
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
1471
|
input RequestUserSessionsInput {
|
|
1472
1472
|
teamDid: String
|
|
1473
1473
|
query: UserSessionQueryInput
|
|
@@ -3131,11 +3131,6 @@ type ResponseFindCertificateByDomain {
|
|
|
3131
3131
|
cert: Certificate
|
|
3132
3132
|
}
|
|
3133
3133
|
|
|
3134
|
-
type ResponseFollowStats {
|
|
3135
|
-
code: StatusCode
|
|
3136
|
-
data: Any
|
|
3137
|
-
}
|
|
3138
|
-
|
|
3139
3134
|
type ResponseGateway {
|
|
3140
3135
|
code: StatusCode
|
|
3141
3136
|
gateway: Gateway
|
|
@@ -3485,6 +3480,11 @@ type ResponseUserFollows {
|
|
|
3485
3480
|
paging: Paging
|
|
3486
3481
|
}
|
|
3487
3482
|
|
|
3483
|
+
type ResponseUserRelationCount {
|
|
3484
|
+
code: StatusCode
|
|
3485
|
+
data: Any
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
3488
|
type ResponseUserSessions {
|
|
3489
3489
|
code: StatusCode
|
|
3490
3490
|
list: [UserSession!]
|
|
@@ -4214,12 +4214,13 @@ type Query {
|
|
|
4214
4214
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
4215
4215
|
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
4216
4216
|
destroySelf(input: RequestTeamUserInput): ResponseUser
|
|
4217
|
-
getUserFollowers(input:
|
|
4218
|
-
getUserFollowing(input:
|
|
4219
|
-
getUserFollowStats(input:
|
|
4217
|
+
getUserFollowers(input: RequestUserRelationQueryInput): ResponseUserFollows
|
|
4218
|
+
getUserFollowing(input: RequestUserRelationQueryInput): ResponseUserFollows
|
|
4219
|
+
getUserFollowStats(input: RequestUserRelationCountInput): ResponseUserRelationCount
|
|
4220
4220
|
checkFollowing(input: RequestCheckFollowingInput): ResponseCheckFollowing
|
|
4221
4221
|
followUser(input: RequestFollowUserActionInput): GeneralResponse
|
|
4222
4222
|
unfollowUser(input: RequestFollowUserActionInput): GeneralResponse
|
|
4223
|
+
getUserInvites(input: RequestUserRelationQueryInput): ResponseUsers
|
|
4223
4224
|
getTags(input: RequestTagsInput): ResponseTags
|
|
4224
4225
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
4225
4226
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.52-beta-
|
|
6
|
+
"version": "1.16.52-beta-20250909-073849-4e392ab1",
|
|
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": "3b4b1551b181606f84799ba8b294fb36b483c9c3",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|