@abtnode/schema 1.16.15-beta-f60064f3 → 1.16.15-beta-103b95c0
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 +74 -4
- package/lib/schema.graphqls +74 -4
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -365,6 +365,10 @@ input RequestDeleteWebHookInput {
|
|
|
365
365
|
id: String
|
|
366
366
|
}
|
|
367
367
|
|
|
368
|
+
input RequestDisbandFederatedLoginInput {
|
|
369
|
+
did: String
|
|
370
|
+
}
|
|
371
|
+
|
|
368
372
|
input RequestEndSessionInput {
|
|
369
373
|
id: String
|
|
370
374
|
}
|
|
@@ -549,6 +553,16 @@ input RequestSwitchProfileInput {
|
|
|
549
553
|
profile: UserProfileInput
|
|
550
554
|
}
|
|
551
555
|
|
|
556
|
+
input RequestTagInput {
|
|
557
|
+
teamDid: String
|
|
558
|
+
tag: TagInput
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
input RequestTagsInput {
|
|
562
|
+
teamDid: String
|
|
563
|
+
paging: PagingInput
|
|
564
|
+
}
|
|
565
|
+
|
|
552
566
|
input RequestTakeRoutingSnapshotInput {
|
|
553
567
|
dryRun: Boolean
|
|
554
568
|
message: String
|
|
@@ -572,6 +586,7 @@ input RequestTeamUserInput {
|
|
|
572
586
|
|
|
573
587
|
input RequestTeamUserOptionsInput {
|
|
574
588
|
enableConnectedAccount: Boolean
|
|
589
|
+
includeTags: Boolean
|
|
575
590
|
}
|
|
576
591
|
|
|
577
592
|
input RequestUpdateAccessKeyInput {
|
|
@@ -638,6 +653,19 @@ input RequestUpdateSessionInput {
|
|
|
638
653
|
data: String
|
|
639
654
|
}
|
|
640
655
|
|
|
656
|
+
input RequestUpdateUserExtraInput {
|
|
657
|
+
teamDid: String
|
|
658
|
+
did: String
|
|
659
|
+
remark: String
|
|
660
|
+
extra: Any
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
input RequestUpdateUserTagsInput {
|
|
664
|
+
teamDid: String
|
|
665
|
+
did: String
|
|
666
|
+
tags: [Uint32!]
|
|
667
|
+
}
|
|
668
|
+
|
|
641
669
|
input RequestUpdateWhoCanAccessInput {
|
|
642
670
|
did: [String!]
|
|
643
671
|
whoCanAccess: String
|
|
@@ -715,6 +743,15 @@ input SpaceGatewayInput {
|
|
|
715
743
|
did: String
|
|
716
744
|
}
|
|
717
745
|
|
|
746
|
+
input TagInput {
|
|
747
|
+
id: Uint32
|
|
748
|
+
title: String
|
|
749
|
+
description: String
|
|
750
|
+
color: String
|
|
751
|
+
createdAt: Uint32
|
|
752
|
+
updatedAt: Uint32
|
|
753
|
+
}
|
|
754
|
+
|
|
718
755
|
input TeamInput {
|
|
719
756
|
teamDid: String
|
|
720
757
|
}
|
|
@@ -767,8 +804,7 @@ input UserInfoInput {
|
|
|
767
804
|
sourceProvider: String
|
|
768
805
|
connectedAccounts: [ConnectedAccountInput!]
|
|
769
806
|
extra: Any
|
|
770
|
-
|
|
771
|
-
extraConfigs: Any
|
|
807
|
+
tags: [TagInput!]
|
|
772
808
|
}
|
|
773
809
|
|
|
774
810
|
input UserProfileInput {
|
|
@@ -783,6 +819,8 @@ input UserQueryInput {
|
|
|
783
819
|
approved: Boolean
|
|
784
820
|
search: String
|
|
785
821
|
connectedDid: String
|
|
822
|
+
tags: [Uint32!]
|
|
823
|
+
includeTags: Boolean
|
|
786
824
|
}
|
|
787
825
|
|
|
788
826
|
input UserSortInput {
|
|
@@ -1655,6 +1693,11 @@ type ResponseGetTrafficInsights {
|
|
|
1655
1693
|
paging: Paging
|
|
1656
1694
|
}
|
|
1657
1695
|
|
|
1696
|
+
type ResponseGetUsersCount {
|
|
1697
|
+
code: StatusCode
|
|
1698
|
+
count: Uint32
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1658
1701
|
type ResponseGetUsersCountPerRole {
|
|
1659
1702
|
code: StatusCode
|
|
1660
1703
|
counts: [KeyValue!]
|
|
@@ -1713,6 +1756,17 @@ type ResponseSenderList {
|
|
|
1713
1756
|
senders: [WebHookSender!]
|
|
1714
1757
|
}
|
|
1715
1758
|
|
|
1759
|
+
type ResponseTag {
|
|
1760
|
+
code: StatusCode
|
|
1761
|
+
tag: Tag
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
type ResponseTags {
|
|
1765
|
+
code: StatusCode
|
|
1766
|
+
tags: [Tag!]
|
|
1767
|
+
paging: Paging
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1716
1770
|
type ResponseTakeRoutingSnapshot {
|
|
1717
1771
|
code: StatusCode
|
|
1718
1772
|
hash: String
|
|
@@ -1849,6 +1903,15 @@ type SpaceGateway {
|
|
|
1849
1903
|
did: String
|
|
1850
1904
|
}
|
|
1851
1905
|
|
|
1906
|
+
type Tag {
|
|
1907
|
+
id: Uint32
|
|
1908
|
+
title: String
|
|
1909
|
+
description: String
|
|
1910
|
+
color: String
|
|
1911
|
+
createdAt: Uint32
|
|
1912
|
+
updatedAt: Uint32
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1852
1915
|
type TrafficInsight {
|
|
1853
1916
|
did: String
|
|
1854
1917
|
date: String
|
|
@@ -1919,8 +1982,7 @@ type UserInfo {
|
|
|
1919
1982
|
sourceProvider: String
|
|
1920
1983
|
connectedAccounts: [ConnectedAccount!]
|
|
1921
1984
|
extra: Any
|
|
1922
|
-
|
|
1923
|
-
extraConfigs: Any
|
|
1985
|
+
tags: [Tag!]
|
|
1924
1986
|
}
|
|
1925
1987
|
|
|
1926
1988
|
type WalletInfo {
|
|
@@ -2036,6 +2098,7 @@ type Mutation {
|
|
|
2036
2098
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2037
2099
|
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2038
2100
|
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2101
|
+
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
|
2039
2102
|
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2040
2103
|
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
2041
2104
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
@@ -2064,6 +2127,8 @@ type Mutation {
|
|
|
2064
2127
|
configTrustedFactories(input: RequestConfigTrustedFactoriesInput): GeneralResponse
|
|
2065
2128
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2066
2129
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2130
|
+
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2131
|
+
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2067
2132
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2068
2133
|
updateUserRole(input: RequestTeamUserInput): ResponseUser
|
|
2069
2134
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
@@ -2082,6 +2147,9 @@ type Mutation {
|
|
|
2082
2147
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2083
2148
|
addBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2084
2149
|
deleteBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2150
|
+
createTag(input: RequestTagInput): ResponseTag
|
|
2151
|
+
updateTag(input: RequestTagInput): ResponseTag
|
|
2152
|
+
deleteTag(input: RequestTagInput): ResponseTag
|
|
2085
2153
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2086
2154
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2087
2155
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
@@ -2140,10 +2208,12 @@ type Query {
|
|
|
2140
2208
|
getInvitations(input: TeamInput): ResponseGetInvitations
|
|
2141
2209
|
getUsers(input: RequestUsersInput): ResponseUsers
|
|
2142
2210
|
getUser(input: RequestTeamUserInput): ResponseUser
|
|
2211
|
+
getUsersCount(input: TeamInput): ResponseGetUsersCount
|
|
2143
2212
|
getUsersCountPerRole(input: TeamInput): ResponseGetUsersCountPerRole
|
|
2144
2213
|
getOwner(input: TeamInput): ResponseUser
|
|
2145
2214
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2146
2215
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2216
|
+
getTags(input: RequestTagsInput): ResponseTags
|
|
2147
2217
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2148
2218
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2149
2219
|
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
package/lib/schema.graphqls
CHANGED
|
@@ -365,6 +365,10 @@ input RequestDeleteWebHookInput {
|
|
|
365
365
|
id: String
|
|
366
366
|
}
|
|
367
367
|
|
|
368
|
+
input RequestDisbandFederatedLoginInput {
|
|
369
|
+
did: String
|
|
370
|
+
}
|
|
371
|
+
|
|
368
372
|
input RequestEndSessionInput {
|
|
369
373
|
id: String
|
|
370
374
|
}
|
|
@@ -549,6 +553,16 @@ input RequestSwitchProfileInput {
|
|
|
549
553
|
profile: UserProfileInput
|
|
550
554
|
}
|
|
551
555
|
|
|
556
|
+
input RequestTagInput {
|
|
557
|
+
teamDid: String
|
|
558
|
+
tag: TagInput
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
input RequestTagsInput {
|
|
562
|
+
teamDid: String
|
|
563
|
+
paging: PagingInput
|
|
564
|
+
}
|
|
565
|
+
|
|
552
566
|
input RequestTakeRoutingSnapshotInput {
|
|
553
567
|
dryRun: Boolean
|
|
554
568
|
message: String
|
|
@@ -572,6 +586,7 @@ input RequestTeamUserInput {
|
|
|
572
586
|
|
|
573
587
|
input RequestTeamUserOptionsInput {
|
|
574
588
|
enableConnectedAccount: Boolean
|
|
589
|
+
includeTags: Boolean
|
|
575
590
|
}
|
|
576
591
|
|
|
577
592
|
input RequestUpdateAccessKeyInput {
|
|
@@ -638,6 +653,19 @@ input RequestUpdateSessionInput {
|
|
|
638
653
|
data: String
|
|
639
654
|
}
|
|
640
655
|
|
|
656
|
+
input RequestUpdateUserExtraInput {
|
|
657
|
+
teamDid: String
|
|
658
|
+
did: String
|
|
659
|
+
remark: String
|
|
660
|
+
extra: Any
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
input RequestUpdateUserTagsInput {
|
|
664
|
+
teamDid: String
|
|
665
|
+
did: String
|
|
666
|
+
tags: [Uint32!]
|
|
667
|
+
}
|
|
668
|
+
|
|
641
669
|
input RequestUpdateWhoCanAccessInput {
|
|
642
670
|
did: [String!]
|
|
643
671
|
whoCanAccess: String
|
|
@@ -715,6 +743,15 @@ input SpaceGatewayInput {
|
|
|
715
743
|
did: String
|
|
716
744
|
}
|
|
717
745
|
|
|
746
|
+
input TagInput {
|
|
747
|
+
id: Uint32
|
|
748
|
+
title: String
|
|
749
|
+
description: String
|
|
750
|
+
color: String
|
|
751
|
+
createdAt: Uint32
|
|
752
|
+
updatedAt: Uint32
|
|
753
|
+
}
|
|
754
|
+
|
|
718
755
|
input TeamInput {
|
|
719
756
|
teamDid: String
|
|
720
757
|
}
|
|
@@ -767,8 +804,7 @@ input UserInfoInput {
|
|
|
767
804
|
sourceProvider: String
|
|
768
805
|
connectedAccounts: [ConnectedAccountInput!]
|
|
769
806
|
extra: Any
|
|
770
|
-
|
|
771
|
-
extraConfigs: Any
|
|
807
|
+
tags: [TagInput!]
|
|
772
808
|
}
|
|
773
809
|
|
|
774
810
|
input UserProfileInput {
|
|
@@ -783,6 +819,8 @@ input UserQueryInput {
|
|
|
783
819
|
approved: Boolean
|
|
784
820
|
search: String
|
|
785
821
|
connectedDid: String
|
|
822
|
+
tags: [Uint32!]
|
|
823
|
+
includeTags: Boolean
|
|
786
824
|
}
|
|
787
825
|
|
|
788
826
|
input UserSortInput {
|
|
@@ -1655,6 +1693,11 @@ type ResponseGetTrafficInsights {
|
|
|
1655
1693
|
paging: Paging
|
|
1656
1694
|
}
|
|
1657
1695
|
|
|
1696
|
+
type ResponseGetUsersCount {
|
|
1697
|
+
code: StatusCode
|
|
1698
|
+
count: Uint32
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1658
1701
|
type ResponseGetUsersCountPerRole {
|
|
1659
1702
|
code: StatusCode
|
|
1660
1703
|
counts: [KeyValue!]
|
|
@@ -1713,6 +1756,17 @@ type ResponseSenderList {
|
|
|
1713
1756
|
senders: [WebHookSender!]
|
|
1714
1757
|
}
|
|
1715
1758
|
|
|
1759
|
+
type ResponseTag {
|
|
1760
|
+
code: StatusCode
|
|
1761
|
+
tag: Tag
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
type ResponseTags {
|
|
1765
|
+
code: StatusCode
|
|
1766
|
+
tags: [Tag!]
|
|
1767
|
+
paging: Paging
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1716
1770
|
type ResponseTakeRoutingSnapshot {
|
|
1717
1771
|
code: StatusCode
|
|
1718
1772
|
hash: String
|
|
@@ -1849,6 +1903,15 @@ type SpaceGateway {
|
|
|
1849
1903
|
did: String
|
|
1850
1904
|
}
|
|
1851
1905
|
|
|
1906
|
+
type Tag {
|
|
1907
|
+
id: Uint32
|
|
1908
|
+
title: String
|
|
1909
|
+
description: String
|
|
1910
|
+
color: String
|
|
1911
|
+
createdAt: Uint32
|
|
1912
|
+
updatedAt: Uint32
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1852
1915
|
type TrafficInsight {
|
|
1853
1916
|
did: String
|
|
1854
1917
|
date: String
|
|
@@ -1919,8 +1982,7 @@ type UserInfo {
|
|
|
1919
1982
|
sourceProvider: String
|
|
1920
1983
|
connectedAccounts: [ConnectedAccount!]
|
|
1921
1984
|
extra: Any
|
|
1922
|
-
|
|
1923
|
-
extraConfigs: Any
|
|
1985
|
+
tags: [Tag!]
|
|
1924
1986
|
}
|
|
1925
1987
|
|
|
1926
1988
|
type WalletInfo {
|
|
@@ -2038,6 +2100,7 @@ type Mutation {
|
|
|
2038
2100
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2039
2101
|
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2040
2102
|
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2103
|
+
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
|
2041
2104
|
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2042
2105
|
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
2043
2106
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
@@ -2066,6 +2129,8 @@ type Mutation {
|
|
|
2066
2129
|
configTrustedFactories(input: RequestConfigTrustedFactoriesInput): GeneralResponse
|
|
2067
2130
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2068
2131
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2132
|
+
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2133
|
+
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2069
2134
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2070
2135
|
updateUserRole(input: RequestTeamUserInput): ResponseUser
|
|
2071
2136
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
@@ -2084,6 +2149,9 @@ type Mutation {
|
|
|
2084
2149
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2085
2150
|
addBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2086
2151
|
deleteBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2152
|
+
createTag(input: RequestTagInput): ResponseTag
|
|
2153
|
+
updateTag(input: RequestTagInput): ResponseTag
|
|
2154
|
+
deleteTag(input: RequestTagInput): ResponseTag
|
|
2087
2155
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2088
2156
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2089
2157
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
@@ -2142,10 +2210,12 @@ type Query {
|
|
|
2142
2210
|
getInvitations(input: TeamInput): ResponseGetInvitations
|
|
2143
2211
|
getUsers(input: RequestUsersInput): ResponseUsers
|
|
2144
2212
|
getUser(input: RequestTeamUserInput): ResponseUser
|
|
2213
|
+
getUsersCount(input: TeamInput): ResponseGetUsersCount
|
|
2145
2214
|
getUsersCountPerRole(input: TeamInput): ResponseGetUsersCountPerRole
|
|
2146
2215
|
getOwner(input: TeamInput): ResponseUser
|
|
2147
2216
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2148
2217
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2218
|
+
getTags(input: RequestTagsInput): ResponseTags
|
|
2149
2219
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2150
2220
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2151
2221
|
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.15-beta-
|
|
6
|
+
"version": "1.16.15-beta-103b95c0",
|
|
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": "ba3bbf1566e9c3d62dbdf93d2ede8a1d4249c407",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|