@abtnode/schema 1.16.25-beta-e3dbef52 → 1.16.25-beta-be3a37f4
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 +40 -1
- package/lib/schema.graphqls +39 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -562,6 +562,13 @@ input RequestLimitInput {
|
|
|
562
562
|
ipHeader: String
|
|
563
563
|
}
|
|
564
564
|
|
|
565
|
+
input RequestLogoutUserInput {
|
|
566
|
+
teamDid: String
|
|
567
|
+
appPid: String
|
|
568
|
+
userDid: String
|
|
569
|
+
visitorId: String
|
|
570
|
+
}
|
|
571
|
+
|
|
565
572
|
input RequestMigrateApplicationToStructV2Input {
|
|
566
573
|
did: String
|
|
567
574
|
appSk: String
|
|
@@ -935,6 +942,7 @@ input UserInfoInput {
|
|
|
935
942
|
extra: Any
|
|
936
943
|
tags: [TagInput!]
|
|
937
944
|
didSpace: Any
|
|
945
|
+
userSessions: [UserSessionInput!]
|
|
938
946
|
}
|
|
939
947
|
|
|
940
948
|
input UserProfileInput {
|
|
@@ -951,6 +959,21 @@ input UserQueryInput {
|
|
|
951
959
|
connectedDid: String
|
|
952
960
|
tags: [Uint32!]
|
|
953
961
|
includeTags: Boolean
|
|
962
|
+
includeUserSessions: Boolean
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
input UserSessionInput {
|
|
966
|
+
id: String
|
|
967
|
+
visitorId: String
|
|
968
|
+
appPid: String
|
|
969
|
+
userDid: String
|
|
970
|
+
ua: String
|
|
971
|
+
passportId: String
|
|
972
|
+
status: String
|
|
973
|
+
lastLoginIp: String
|
|
974
|
+
extra: Any
|
|
975
|
+
createdAt: Uint32
|
|
976
|
+
updatedAt: Uint32
|
|
954
977
|
}
|
|
955
978
|
|
|
956
979
|
input UserSortInput {
|
|
@@ -2260,6 +2283,21 @@ type UserInfo {
|
|
|
2260
2283
|
extra: Any
|
|
2261
2284
|
tags: [Tag!]
|
|
2262
2285
|
didSpace: Any
|
|
2286
|
+
userSessions: [UserSession!]
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
type UserSession {
|
|
2290
|
+
id: String
|
|
2291
|
+
visitorId: String
|
|
2292
|
+
appPid: String
|
|
2293
|
+
userDid: String
|
|
2294
|
+
ua: String
|
|
2295
|
+
passportId: String
|
|
2296
|
+
status: String
|
|
2297
|
+
lastLoginIp: String
|
|
2298
|
+
extra: Any
|
|
2299
|
+
createdAt: Uint32
|
|
2300
|
+
updatedAt: Uint32
|
|
2263
2301
|
}
|
|
2264
2302
|
|
|
2265
2303
|
type WalletInfo {
|
|
@@ -2514,6 +2552,7 @@ type Query {
|
|
|
2514
2552
|
getOwner(input: TeamInput): ResponseUser
|
|
2515
2553
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2516
2554
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2555
|
+
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
2517
2556
|
getTags(input: RequestTagsInput): ResponseTags
|
|
2518
2557
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2519
2558
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
@@ -2527,4 +2566,4 @@ type Query {
|
|
|
2527
2566
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2528
2567
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2529
2568
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2530
|
-
}`;
|
|
2569
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -562,6 +562,13 @@ input RequestLimitInput {
|
|
|
562
562
|
ipHeader: String
|
|
563
563
|
}
|
|
564
564
|
|
|
565
|
+
input RequestLogoutUserInput {
|
|
566
|
+
teamDid: String
|
|
567
|
+
appPid: String
|
|
568
|
+
userDid: String
|
|
569
|
+
visitorId: String
|
|
570
|
+
}
|
|
571
|
+
|
|
565
572
|
input RequestMigrateApplicationToStructV2Input {
|
|
566
573
|
did: String
|
|
567
574
|
appSk: String
|
|
@@ -935,6 +942,7 @@ input UserInfoInput {
|
|
|
935
942
|
extra: Any
|
|
936
943
|
tags: [TagInput!]
|
|
937
944
|
didSpace: Any
|
|
945
|
+
userSessions: [UserSessionInput!]
|
|
938
946
|
}
|
|
939
947
|
|
|
940
948
|
input UserProfileInput {
|
|
@@ -951,6 +959,21 @@ input UserQueryInput {
|
|
|
951
959
|
connectedDid: String
|
|
952
960
|
tags: [Uint32!]
|
|
953
961
|
includeTags: Boolean
|
|
962
|
+
includeUserSessions: Boolean
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
input UserSessionInput {
|
|
966
|
+
id: String
|
|
967
|
+
visitorId: String
|
|
968
|
+
appPid: String
|
|
969
|
+
userDid: String
|
|
970
|
+
ua: String
|
|
971
|
+
passportId: String
|
|
972
|
+
status: String
|
|
973
|
+
lastLoginIp: String
|
|
974
|
+
extra: Any
|
|
975
|
+
createdAt: Uint32
|
|
976
|
+
updatedAt: Uint32
|
|
954
977
|
}
|
|
955
978
|
|
|
956
979
|
input UserSortInput {
|
|
@@ -2260,6 +2283,21 @@ type UserInfo {
|
|
|
2260
2283
|
extra: Any
|
|
2261
2284
|
tags: [Tag!]
|
|
2262
2285
|
didSpace: Any
|
|
2286
|
+
userSessions: [UserSession!]
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
type UserSession {
|
|
2290
|
+
id: String
|
|
2291
|
+
visitorId: String
|
|
2292
|
+
appPid: String
|
|
2293
|
+
userDid: String
|
|
2294
|
+
ua: String
|
|
2295
|
+
passportId: String
|
|
2296
|
+
status: String
|
|
2297
|
+
lastLoginIp: String
|
|
2298
|
+
extra: Any
|
|
2299
|
+
createdAt: Uint32
|
|
2300
|
+
updatedAt: Uint32
|
|
2263
2301
|
}
|
|
2264
2302
|
|
|
2265
2303
|
type WalletInfo {
|
|
@@ -2516,6 +2554,7 @@ type Query {
|
|
|
2516
2554
|
getOwner(input: TeamInput): ResponseUser
|
|
2517
2555
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2518
2556
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2557
|
+
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
2519
2558
|
getTags(input: RequestTagsInput): ResponseTags
|
|
2520
2559
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2521
2560
|
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.25-beta-
|
|
6
|
+
"version": "1.16.25-beta-be3a37f4",
|
|
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": "cd99ea556cdd402ecc12e017d79f13e8e8bb83c7",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|