@abtnode/schema 1.16.25-beta-e3dbef52 → 1.16.25-beta-44800645
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 +54 -1
- package/lib/schema.graphqls +53 -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
|
|
@@ -847,6 +854,12 @@ input RoutingRuleHeaderInput {
|
|
|
847
854
|
type: HeaderMatchType
|
|
848
855
|
}
|
|
849
856
|
|
|
857
|
+
input RoutingRuleResponseInput {
|
|
858
|
+
status: Uint32
|
|
859
|
+
contentType: String
|
|
860
|
+
body: String
|
|
861
|
+
}
|
|
862
|
+
|
|
850
863
|
input RoutingRuleToInput {
|
|
851
864
|
port: Uint32
|
|
852
865
|
type: BackendServiceType
|
|
@@ -856,6 +869,7 @@ input RoutingRuleToInput {
|
|
|
856
869
|
interfaceName: String
|
|
857
870
|
componentId: String
|
|
858
871
|
pageGroup: String
|
|
872
|
+
response: RoutingRuleResponseInput
|
|
859
873
|
}
|
|
860
874
|
|
|
861
875
|
input SessionConfigInput {
|
|
@@ -935,6 +949,7 @@ input UserInfoInput {
|
|
|
935
949
|
extra: Any
|
|
936
950
|
tags: [TagInput!]
|
|
937
951
|
didSpace: Any
|
|
952
|
+
userSessions: [UserSessionInput!]
|
|
938
953
|
}
|
|
939
954
|
|
|
940
955
|
input UserProfileInput {
|
|
@@ -951,6 +966,21 @@ input UserQueryInput {
|
|
|
951
966
|
connectedDid: String
|
|
952
967
|
tags: [Uint32!]
|
|
953
968
|
includeTags: Boolean
|
|
969
|
+
includeUserSessions: Boolean
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
input UserSessionInput {
|
|
973
|
+
id: String
|
|
974
|
+
visitorId: String
|
|
975
|
+
appPid: String
|
|
976
|
+
userDid: String
|
|
977
|
+
ua: String
|
|
978
|
+
passportId: String
|
|
979
|
+
status: String
|
|
980
|
+
lastLoginIp: String
|
|
981
|
+
extra: Any
|
|
982
|
+
createdAt: Uint32
|
|
983
|
+
updatedAt: Uint32
|
|
954
984
|
}
|
|
955
985
|
|
|
956
986
|
input UserSortInput {
|
|
@@ -2111,6 +2141,12 @@ type RoutingRuleHeader {
|
|
|
2111
2141
|
type: HeaderMatchType
|
|
2112
2142
|
}
|
|
2113
2143
|
|
|
2144
|
+
type RoutingRuleResponse {
|
|
2145
|
+
status: Uint32
|
|
2146
|
+
contentType: String
|
|
2147
|
+
body: String
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2114
2150
|
type RoutingRuleTo {
|
|
2115
2151
|
port: Uint32
|
|
2116
2152
|
type: BackendServiceType
|
|
@@ -2120,6 +2156,7 @@ type RoutingRuleTo {
|
|
|
2120
2156
|
interfaceName: String
|
|
2121
2157
|
componentId: String
|
|
2122
2158
|
pageGroup: String
|
|
2159
|
+
response: RoutingRuleResponse
|
|
2123
2160
|
}
|
|
2124
2161
|
|
|
2125
2162
|
type RoutingSite {
|
|
@@ -2260,6 +2297,21 @@ type UserInfo {
|
|
|
2260
2297
|
extra: Any
|
|
2261
2298
|
tags: [Tag!]
|
|
2262
2299
|
didSpace: Any
|
|
2300
|
+
userSessions: [UserSession!]
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
type UserSession {
|
|
2304
|
+
id: String
|
|
2305
|
+
visitorId: String
|
|
2306
|
+
appPid: String
|
|
2307
|
+
userDid: String
|
|
2308
|
+
ua: String
|
|
2309
|
+
passportId: String
|
|
2310
|
+
status: String
|
|
2311
|
+
lastLoginIp: String
|
|
2312
|
+
extra: Any
|
|
2313
|
+
createdAt: Uint32
|
|
2314
|
+
updatedAt: Uint32
|
|
2263
2315
|
}
|
|
2264
2316
|
|
|
2265
2317
|
type WalletInfo {
|
|
@@ -2514,6 +2566,7 @@ type Query {
|
|
|
2514
2566
|
getOwner(input: TeamInput): ResponseUser
|
|
2515
2567
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2516
2568
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2569
|
+
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
2517
2570
|
getTags(input: RequestTagsInput): ResponseTags
|
|
2518
2571
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2519
2572
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
@@ -2527,4 +2580,4 @@ type Query {
|
|
|
2527
2580
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2528
2581
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2529
2582
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2530
|
-
}`;
|
|
2583
|
+
}`;
|
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
|
|
@@ -847,6 +854,12 @@ input RoutingRuleHeaderInput {
|
|
|
847
854
|
type: HeaderMatchType
|
|
848
855
|
}
|
|
849
856
|
|
|
857
|
+
input RoutingRuleResponseInput {
|
|
858
|
+
status: Uint32
|
|
859
|
+
contentType: String
|
|
860
|
+
body: String
|
|
861
|
+
}
|
|
862
|
+
|
|
850
863
|
input RoutingRuleToInput {
|
|
851
864
|
port: Uint32
|
|
852
865
|
type: BackendServiceType
|
|
@@ -856,6 +869,7 @@ input RoutingRuleToInput {
|
|
|
856
869
|
interfaceName: String
|
|
857
870
|
componentId: String
|
|
858
871
|
pageGroup: String
|
|
872
|
+
response: RoutingRuleResponseInput
|
|
859
873
|
}
|
|
860
874
|
|
|
861
875
|
input SessionConfigInput {
|
|
@@ -935,6 +949,7 @@ input UserInfoInput {
|
|
|
935
949
|
extra: Any
|
|
936
950
|
tags: [TagInput!]
|
|
937
951
|
didSpace: Any
|
|
952
|
+
userSessions: [UserSessionInput!]
|
|
938
953
|
}
|
|
939
954
|
|
|
940
955
|
input UserProfileInput {
|
|
@@ -951,6 +966,21 @@ input UserQueryInput {
|
|
|
951
966
|
connectedDid: String
|
|
952
967
|
tags: [Uint32!]
|
|
953
968
|
includeTags: Boolean
|
|
969
|
+
includeUserSessions: Boolean
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
input UserSessionInput {
|
|
973
|
+
id: String
|
|
974
|
+
visitorId: String
|
|
975
|
+
appPid: String
|
|
976
|
+
userDid: String
|
|
977
|
+
ua: String
|
|
978
|
+
passportId: String
|
|
979
|
+
status: String
|
|
980
|
+
lastLoginIp: String
|
|
981
|
+
extra: Any
|
|
982
|
+
createdAt: Uint32
|
|
983
|
+
updatedAt: Uint32
|
|
954
984
|
}
|
|
955
985
|
|
|
956
986
|
input UserSortInput {
|
|
@@ -2111,6 +2141,12 @@ type RoutingRuleHeader {
|
|
|
2111
2141
|
type: HeaderMatchType
|
|
2112
2142
|
}
|
|
2113
2143
|
|
|
2144
|
+
type RoutingRuleResponse {
|
|
2145
|
+
status: Uint32
|
|
2146
|
+
contentType: String
|
|
2147
|
+
body: String
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2114
2150
|
type RoutingRuleTo {
|
|
2115
2151
|
port: Uint32
|
|
2116
2152
|
type: BackendServiceType
|
|
@@ -2120,6 +2156,7 @@ type RoutingRuleTo {
|
|
|
2120
2156
|
interfaceName: String
|
|
2121
2157
|
componentId: String
|
|
2122
2158
|
pageGroup: String
|
|
2159
|
+
response: RoutingRuleResponse
|
|
2123
2160
|
}
|
|
2124
2161
|
|
|
2125
2162
|
type RoutingSite {
|
|
@@ -2260,6 +2297,21 @@ type UserInfo {
|
|
|
2260
2297
|
extra: Any
|
|
2261
2298
|
tags: [Tag!]
|
|
2262
2299
|
didSpace: Any
|
|
2300
|
+
userSessions: [UserSession!]
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
type UserSession {
|
|
2304
|
+
id: String
|
|
2305
|
+
visitorId: String
|
|
2306
|
+
appPid: String
|
|
2307
|
+
userDid: String
|
|
2308
|
+
ua: String
|
|
2309
|
+
passportId: String
|
|
2310
|
+
status: String
|
|
2311
|
+
lastLoginIp: String
|
|
2312
|
+
extra: Any
|
|
2313
|
+
createdAt: Uint32
|
|
2314
|
+
updatedAt: Uint32
|
|
2263
2315
|
}
|
|
2264
2316
|
|
|
2265
2317
|
type WalletInfo {
|
|
@@ -2516,6 +2568,7 @@ type Query {
|
|
|
2516
2568
|
getOwner(input: TeamInput): ResponseUser
|
|
2517
2569
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2518
2570
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2571
|
+
logoutUser(input: RequestLogoutUserInput): GeneralResponse
|
|
2519
2572
|
getTags(input: RequestTagsInput): ResponseTags
|
|
2520
2573
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2521
2574
|
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-44800645",
|
|
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": "1352ebbd41c052c8d369f95570e97b30ecb5f4f0",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|