@abtnode/schema 1.16.15-beta-12f50442 → 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 +68 -4
- package/lib/schema.graphqls +68 -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 {
|
|
@@ -1718,6 +1756,17 @@ type ResponseSenderList {
|
|
|
1718
1756
|
senders: [WebHookSender!]
|
|
1719
1757
|
}
|
|
1720
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
|
+
|
|
1721
1770
|
type ResponseTakeRoutingSnapshot {
|
|
1722
1771
|
code: StatusCode
|
|
1723
1772
|
hash: String
|
|
@@ -1854,6 +1903,15 @@ type SpaceGateway {
|
|
|
1854
1903
|
did: String
|
|
1855
1904
|
}
|
|
1856
1905
|
|
|
1906
|
+
type Tag {
|
|
1907
|
+
id: Uint32
|
|
1908
|
+
title: String
|
|
1909
|
+
description: String
|
|
1910
|
+
color: String
|
|
1911
|
+
createdAt: Uint32
|
|
1912
|
+
updatedAt: Uint32
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1857
1915
|
type TrafficInsight {
|
|
1858
1916
|
did: String
|
|
1859
1917
|
date: String
|
|
@@ -1924,8 +1982,7 @@ type UserInfo {
|
|
|
1924
1982
|
sourceProvider: String
|
|
1925
1983
|
connectedAccounts: [ConnectedAccount!]
|
|
1926
1984
|
extra: Any
|
|
1927
|
-
|
|
1928
|
-
extraConfigs: Any
|
|
1985
|
+
tags: [Tag!]
|
|
1929
1986
|
}
|
|
1930
1987
|
|
|
1931
1988
|
type WalletInfo {
|
|
@@ -2041,6 +2098,7 @@ type Mutation {
|
|
|
2041
2098
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2042
2099
|
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2043
2100
|
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2101
|
+
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
|
2044
2102
|
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2045
2103
|
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
2046
2104
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
@@ -2069,6 +2127,8 @@ type Mutation {
|
|
|
2069
2127
|
configTrustedFactories(input: RequestConfigTrustedFactoriesInput): GeneralResponse
|
|
2070
2128
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2071
2129
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2130
|
+
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2131
|
+
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2072
2132
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2073
2133
|
updateUserRole(input: RequestTeamUserInput): ResponseUser
|
|
2074
2134
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
@@ -2087,6 +2147,9 @@ type Mutation {
|
|
|
2087
2147
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2088
2148
|
addBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2089
2149
|
deleteBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2150
|
+
createTag(input: RequestTagInput): ResponseTag
|
|
2151
|
+
updateTag(input: RequestTagInput): ResponseTag
|
|
2152
|
+
deleteTag(input: RequestTagInput): ResponseTag
|
|
2090
2153
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2091
2154
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2092
2155
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
@@ -2150,6 +2213,7 @@ type Query {
|
|
|
2150
2213
|
getOwner(input: TeamInput): ResponseUser
|
|
2151
2214
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2152
2215
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2216
|
+
getTags(input: RequestTagsInput): ResponseTags
|
|
2153
2217
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2154
2218
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2155
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 {
|
|
@@ -1718,6 +1756,17 @@ type ResponseSenderList {
|
|
|
1718
1756
|
senders: [WebHookSender!]
|
|
1719
1757
|
}
|
|
1720
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
|
+
|
|
1721
1770
|
type ResponseTakeRoutingSnapshot {
|
|
1722
1771
|
code: StatusCode
|
|
1723
1772
|
hash: String
|
|
@@ -1854,6 +1903,15 @@ type SpaceGateway {
|
|
|
1854
1903
|
did: String
|
|
1855
1904
|
}
|
|
1856
1905
|
|
|
1906
|
+
type Tag {
|
|
1907
|
+
id: Uint32
|
|
1908
|
+
title: String
|
|
1909
|
+
description: String
|
|
1910
|
+
color: String
|
|
1911
|
+
createdAt: Uint32
|
|
1912
|
+
updatedAt: Uint32
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1857
1915
|
type TrafficInsight {
|
|
1858
1916
|
did: String
|
|
1859
1917
|
date: String
|
|
@@ -1924,8 +1982,7 @@ type UserInfo {
|
|
|
1924
1982
|
sourceProvider: String
|
|
1925
1983
|
connectedAccounts: [ConnectedAccount!]
|
|
1926
1984
|
extra: Any
|
|
1927
|
-
|
|
1928
|
-
extraConfigs: Any
|
|
1985
|
+
tags: [Tag!]
|
|
1929
1986
|
}
|
|
1930
1987
|
|
|
1931
1988
|
type WalletInfo {
|
|
@@ -2043,6 +2100,7 @@ type Mutation {
|
|
|
2043
2100
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2044
2101
|
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2045
2102
|
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2103
|
+
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
|
2046
2104
|
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2047
2105
|
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
2048
2106
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
@@ -2071,6 +2129,8 @@ type Mutation {
|
|
|
2071
2129
|
configTrustedFactories(input: RequestConfigTrustedFactoriesInput): GeneralResponse
|
|
2072
2130
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
|
2073
2131
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
|
2132
|
+
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
|
2133
|
+
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
|
2074
2134
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
|
2075
2135
|
updateUserRole(input: RequestTeamUserInput): ResponseUser
|
|
2076
2136
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
|
@@ -2089,6 +2149,9 @@ type Mutation {
|
|
|
2089
2149
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2090
2150
|
addBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2091
2151
|
deleteBlockletStore(input: RequestChangeBlockletStoreInput): GeneralResponse
|
|
2152
|
+
createTag(input: RequestTagInput): ResponseTag
|
|
2153
|
+
updateTag(input: RequestTagInput): ResponseTag
|
|
2154
|
+
deleteTag(input: RequestTagInput): ResponseTag
|
|
2092
2155
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2093
2156
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2094
2157
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
@@ -2152,6 +2215,7 @@ type Query {
|
|
|
2152
2215
|
getOwner(input: TeamInput): ResponseUser
|
|
2153
2216
|
getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
|
|
2154
2217
|
getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
|
|
2218
|
+
getTags(input: RequestTagsInput): ResponseTags
|
|
2155
2219
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
|
2156
2220
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
|
2157
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
|
}
|