@abtnode/schema 1.16.42-beta-20250412-084444-20b0cf19 → 1.16.42-beta-20250413-121549-22e9a196
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 +46 -0
- package/lib/schema.graphqls +46 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -136,6 +136,9 @@ input ConfigNavigationInput {
|
|
136
136
|
role: String
|
137
137
|
visible: Boolean
|
138
138
|
from: String
|
139
|
+
activeIcon: String
|
140
|
+
color: String
|
141
|
+
activeColor: String
|
139
142
|
description: String
|
140
143
|
}
|
141
144
|
|
@@ -1279,6 +1282,18 @@ input RequestUpgradeNodeVersionInput {
|
|
1279
1282
|
sessionId: String
|
1280
1283
|
}
|
1281
1284
|
|
1285
|
+
input RequestUserSessionsInput {
|
1286
|
+
teamDid: String
|
1287
|
+
query: UserSessionQueryInput
|
1288
|
+
sort: UserSessionSortInput
|
1289
|
+
paging: PagingInput
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
input RequestUserSessionsCountInput {
|
1293
|
+
teamDid: String
|
1294
|
+
query: UserSessionQueryInput
|
1295
|
+
}
|
1296
|
+
|
1282
1297
|
input RequestUsersInput {
|
1283
1298
|
teamDid: String
|
1284
1299
|
query: UserQueryInput
|
@@ -1442,6 +1457,7 @@ input UserInfoInput {
|
|
1442
1457
|
phoneVerified: Boolean
|
1443
1458
|
metadata: UserMetadataInput
|
1444
1459
|
address: UserAddressInput
|
1460
|
+
userSessionsCount: Uint32
|
1445
1461
|
}
|
1446
1462
|
|
1447
1463
|
input UserMetadataInput {
|
@@ -1507,6 +1523,19 @@ input UserSessionInput {
|
|
1507
1523
|
updatedAt: Uint32
|
1508
1524
|
}
|
1509
1525
|
|
1526
|
+
input UserSessionQueryInput {
|
1527
|
+
userDid: String
|
1528
|
+
visitorId: String
|
1529
|
+
appPid: String
|
1530
|
+
status: String
|
1531
|
+
includeUser: Boolean
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
input UserSessionSortInput {
|
1535
|
+
updatedAt: Uint32
|
1536
|
+
createdAt: Uint32
|
1537
|
+
}
|
1538
|
+
|
1510
1539
|
input UserSortInput {
|
1511
1540
|
updatedAt: Uint32
|
1512
1541
|
createdAt: Uint32
|
@@ -2071,6 +2100,9 @@ type ConfigNavigation {
|
|
2071
2100
|
role: String
|
2072
2101
|
visible: Boolean
|
2073
2102
|
from: String
|
2103
|
+
activeIcon: String
|
2104
|
+
color: String
|
2105
|
+
activeColor: String
|
2074
2106
|
description: String
|
2075
2107
|
}
|
2076
2108
|
|
@@ -3118,6 +3150,17 @@ type ResponseUser {
|
|
3118
3150
|
user: UserInfo
|
3119
3151
|
}
|
3120
3152
|
|
3153
|
+
type ResponseUserSessions {
|
3154
|
+
code: StatusCode
|
3155
|
+
list: [UserSession!]
|
3156
|
+
paging: Paging
|
3157
|
+
}
|
3158
|
+
|
3159
|
+
type ResponseUserSessionsCount {
|
3160
|
+
code: StatusCode
|
3161
|
+
count: Uint32
|
3162
|
+
}
|
3163
|
+
|
3121
3164
|
type ResponseUsers {
|
3122
3165
|
code: StatusCode
|
3123
3166
|
users: [UserInfo!]
|
@@ -3359,6 +3402,7 @@ type UserInfo {
|
|
3359
3402
|
phoneVerified: Boolean
|
3360
3403
|
metadata: UserMetadata
|
3361
3404
|
address: UserAddress
|
3405
|
+
userSessionsCount: Uint32
|
3362
3406
|
}
|
3363
3407
|
|
3364
3408
|
type UserMetadata {
|
@@ -3791,6 +3835,8 @@ type Query {
|
|
3791
3835
|
getInvitations(input: TeamInput): ResponseGetInvitations
|
3792
3836
|
getUsers(input: RequestUsersInput): ResponseUsers
|
3793
3837
|
getUser(input: RequestTeamUserInput): ResponseUser
|
3838
|
+
getUserSessions(input: RequestUserSessionsInput): ResponseUserSessions
|
3839
|
+
getUserSessionsCount(input: RequestUserSessionsCountInput): ResponseUserSessionsCount
|
3794
3840
|
getUsersCount(input: TeamInput): ResponseGetUsersCount
|
3795
3841
|
getUsersCountPerRole(input: TeamInput): ResponseGetUsersCountPerRole
|
3796
3842
|
getOwner(input: TeamInput): ResponseUser
|
package/lib/schema.graphqls
CHANGED
@@ -136,6 +136,9 @@ input ConfigNavigationInput {
|
|
136
136
|
role: String
|
137
137
|
visible: Boolean
|
138
138
|
from: String
|
139
|
+
activeIcon: String
|
140
|
+
color: String
|
141
|
+
activeColor: String
|
139
142
|
description: String
|
140
143
|
}
|
141
144
|
|
@@ -1279,6 +1282,18 @@ input RequestUpgradeNodeVersionInput {
|
|
1279
1282
|
sessionId: String
|
1280
1283
|
}
|
1281
1284
|
|
1285
|
+
input RequestUserSessionsInput {
|
1286
|
+
teamDid: String
|
1287
|
+
query: UserSessionQueryInput
|
1288
|
+
sort: UserSessionSortInput
|
1289
|
+
paging: PagingInput
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
input RequestUserSessionsCountInput {
|
1293
|
+
teamDid: String
|
1294
|
+
query: UserSessionQueryInput
|
1295
|
+
}
|
1296
|
+
|
1282
1297
|
input RequestUsersInput {
|
1283
1298
|
teamDid: String
|
1284
1299
|
query: UserQueryInput
|
@@ -1442,6 +1457,7 @@ input UserInfoInput {
|
|
1442
1457
|
phoneVerified: Boolean
|
1443
1458
|
metadata: UserMetadataInput
|
1444
1459
|
address: UserAddressInput
|
1460
|
+
userSessionsCount: Uint32
|
1445
1461
|
}
|
1446
1462
|
|
1447
1463
|
input UserMetadataInput {
|
@@ -1507,6 +1523,19 @@ input UserSessionInput {
|
|
1507
1523
|
updatedAt: Uint32
|
1508
1524
|
}
|
1509
1525
|
|
1526
|
+
input UserSessionQueryInput {
|
1527
|
+
userDid: String
|
1528
|
+
visitorId: String
|
1529
|
+
appPid: String
|
1530
|
+
status: String
|
1531
|
+
includeUser: Boolean
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
input UserSessionSortInput {
|
1535
|
+
updatedAt: Uint32
|
1536
|
+
createdAt: Uint32
|
1537
|
+
}
|
1538
|
+
|
1510
1539
|
input UserSortInput {
|
1511
1540
|
updatedAt: Uint32
|
1512
1541
|
createdAt: Uint32
|
@@ -2071,6 +2100,9 @@ type ConfigNavigation {
|
|
2071
2100
|
role: String
|
2072
2101
|
visible: Boolean
|
2073
2102
|
from: String
|
2103
|
+
activeIcon: String
|
2104
|
+
color: String
|
2105
|
+
activeColor: String
|
2074
2106
|
description: String
|
2075
2107
|
}
|
2076
2108
|
|
@@ -3118,6 +3150,17 @@ type ResponseUser {
|
|
3118
3150
|
user: UserInfo
|
3119
3151
|
}
|
3120
3152
|
|
3153
|
+
type ResponseUserSessions {
|
3154
|
+
code: StatusCode
|
3155
|
+
list: [UserSession!]
|
3156
|
+
paging: Paging
|
3157
|
+
}
|
3158
|
+
|
3159
|
+
type ResponseUserSessionsCount {
|
3160
|
+
code: StatusCode
|
3161
|
+
count: Uint32
|
3162
|
+
}
|
3163
|
+
|
3121
3164
|
type ResponseUsers {
|
3122
3165
|
code: StatusCode
|
3123
3166
|
users: [UserInfo!]
|
@@ -3359,6 +3402,7 @@ type UserInfo {
|
|
3359
3402
|
phoneVerified: Boolean
|
3360
3403
|
metadata: UserMetadata
|
3361
3404
|
address: UserAddress
|
3405
|
+
userSessionsCount: Uint32
|
3362
3406
|
}
|
3363
3407
|
|
3364
3408
|
type UserMetadata {
|
@@ -3793,6 +3837,8 @@ type Query {
|
|
3793
3837
|
getInvitations(input: TeamInput): ResponseGetInvitations
|
3794
3838
|
getUsers(input: RequestUsersInput): ResponseUsers
|
3795
3839
|
getUser(input: RequestTeamUserInput): ResponseUser
|
3840
|
+
getUserSessions(input: RequestUserSessionsInput): ResponseUserSessions
|
3841
|
+
getUserSessionsCount(input: RequestUserSessionsCountInput): ResponseUserSessionsCount
|
3796
3842
|
getUsersCount(input: TeamInput): ResponseGetUsersCount
|
3797
3843
|
getUsersCountPerRole(input: TeamInput): ResponseGetUsersCountPerRole
|
3798
3844
|
getOwner(input: TeamInput): ResponseUser
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.16.42-beta-
|
6
|
+
"version": "1.16.42-beta-20250413-121549-22e9a196",
|
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": "00ff6ee0d86ea1938965c69a973fd08ec1769f08",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|