@abtnode/schema 1.16.37-beta-20241227-230028-f4f77779 → 1.16.37-beta-20250104-120451-e4049aeb
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 +34 -44
- package/lib/schema.graphqls +34 -44
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -624,17 +624,6 @@ input RequestGetBlockletBackupsInput {
|
|
624
624
|
did: String
|
625
625
|
}
|
626
626
|
|
627
|
-
input RequestGetBlockletNotificationsInput {
|
628
|
-
receiver: String
|
629
|
-
sender: String
|
630
|
-
read: Boolean
|
631
|
-
paging: PagingInput
|
632
|
-
teamDid: String
|
633
|
-
severity: String
|
634
|
-
componentDid: String
|
635
|
-
entityId: String
|
636
|
-
}
|
637
|
-
|
638
627
|
input RequestGetBlockletResponseHeaderPoliciesInput {
|
639
628
|
did: String
|
640
629
|
paging: PagingInput
|
@@ -676,6 +665,7 @@ input RequestGetNotificationsInput {
|
|
676
665
|
sender: String
|
677
666
|
read: Boolean
|
678
667
|
paging: PagingInput
|
668
|
+
teamDid: String
|
679
669
|
severity: String
|
680
670
|
componentDid: String
|
681
671
|
entityId: String
|
@@ -787,12 +777,7 @@ input RequestLogoutUserInput {
|
|
787
777
|
visitorId: String
|
788
778
|
}
|
789
779
|
|
790
|
-
input
|
791
|
-
id: String
|
792
|
-
receiver: String
|
793
|
-
}
|
794
|
-
|
795
|
-
input RequestMakeAllBlockletNotificationsAsReadInput {
|
780
|
+
input RequestMakeAllNotificationsAsReadInput {
|
796
781
|
receiver: String
|
797
782
|
teamDid: String
|
798
783
|
}
|
@@ -812,6 +797,22 @@ input RequestNodeRuntimeHistoryInput {
|
|
812
797
|
hours: Uint32
|
813
798
|
}
|
814
799
|
|
800
|
+
input RequestNotificationComponentsInput {
|
801
|
+
teamDid: String
|
802
|
+
receiver: String
|
803
|
+
}
|
804
|
+
|
805
|
+
input RequestNotificationSendLogInput {
|
806
|
+
teamDid: String
|
807
|
+
userName: String
|
808
|
+
userDid: String
|
809
|
+
walletSendStatus: Int32
|
810
|
+
pushKitSendStatus: Int32
|
811
|
+
emailSendStatus: Int32
|
812
|
+
senderAt: String
|
813
|
+
paging: PagingInput
|
814
|
+
}
|
815
|
+
|
815
816
|
input RequestProjectInput {
|
816
817
|
did: String
|
817
818
|
projectId: String
|
@@ -831,14 +832,9 @@ input RequestQuitFederatedLoginInput {
|
|
831
832
|
targetDid: String
|
832
833
|
}
|
833
834
|
|
834
|
-
input RequestReadBlockletNotificationsInput {
|
835
|
-
notificationIds: [String!]
|
836
|
-
teamDid: String
|
837
|
-
receiver: String
|
838
|
-
}
|
839
|
-
|
840
835
|
input RequestReadNotificationsInput {
|
841
836
|
notificationIds: [String!]
|
837
|
+
teamDid: String
|
842
838
|
receiver: String
|
843
839
|
}
|
844
840
|
|
@@ -2060,6 +2056,7 @@ type NotificationReceiver {
|
|
2060
2056
|
emailSendStatus: Uint32
|
2061
2057
|
emailSendAt: Uint32
|
2062
2058
|
createdAt: Uint32
|
2059
|
+
notification: Notification
|
2063
2060
|
}
|
2064
2061
|
|
2065
2062
|
type OptionalComponentState {
|
@@ -2373,12 +2370,6 @@ type ResponseGetBlockletBackups {
|
|
2373
2370
|
backups: [Backup!]
|
2374
2371
|
}
|
2375
2372
|
|
2376
|
-
type ResponseGetBlockletNotifications {
|
2377
|
-
code: StatusCode
|
2378
|
-
list: [Notification!]
|
2379
|
-
paging: Paging
|
2380
|
-
}
|
2381
|
-
|
2382
2373
|
type ResponseGetBlockletSpaceGateways {
|
2383
2374
|
code: StatusCode
|
2384
2375
|
spaceGateways: [SpaceGateway!]
|
@@ -2504,19 +2495,25 @@ type ResponseIsDidDomain {
|
|
2504
2495
|
value: Boolean
|
2505
2496
|
}
|
2506
2497
|
|
2507
|
-
type
|
2498
|
+
type ResponseMakeAllNotificationsAsRead {
|
2508
2499
|
code: StatusCode
|
2509
2500
|
numAffected: Int32
|
2510
2501
|
}
|
2511
2502
|
|
2512
|
-
type
|
2503
|
+
type ResponseNodeRuntimeHistory {
|
2504
|
+
code: StatusCode
|
2505
|
+
history: [NodeHistoryItem!]
|
2506
|
+
}
|
2507
|
+
|
2508
|
+
type ResponseNotificationComponents {
|
2513
2509
|
code: StatusCode
|
2514
|
-
|
2510
|
+
componentDids: [String!]
|
2515
2511
|
}
|
2516
2512
|
|
2517
|
-
type
|
2513
|
+
type ResponseNotificationSendLog {
|
2518
2514
|
code: StatusCode
|
2519
|
-
|
2515
|
+
list: [NotificationReceiver!]
|
2516
|
+
paging: Paging
|
2520
2517
|
}
|
2521
2518
|
|
2522
2519
|
type ResponsePermission {
|
@@ -2539,11 +2536,6 @@ type ResponsePublishToStore {
|
|
2539
2536
|
url: String
|
2540
2537
|
}
|
2541
2538
|
|
2542
|
-
type ResponseReadBlockletNotifications {
|
2543
|
-
code: StatusCode
|
2544
|
-
numAffected: Int32
|
2545
|
-
}
|
2546
|
-
|
2547
2539
|
type ResponseReadNotifications {
|
2548
2540
|
code: StatusCode
|
2549
2541
|
numAffected: Int32
|
@@ -3073,8 +3065,6 @@ type Mutation {
|
|
3073
3065
|
deleteTag(input: RequestTagInput): ResponseTag
|
3074
3066
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
3075
3067
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
3076
|
-
readBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
3077
|
-
unreadBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
3078
3068
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
3079
3069
|
addDomainAlias(input: RequestAddDomainAliasInput): ResponseRoutingSite
|
3080
3070
|
deleteDomainAlias(input: RequestDeleteDomainAliasInput): ResponseRoutingSite
|
@@ -3131,9 +3121,9 @@ type Query {
|
|
3131
3121
|
getNodeRuntimeHistory(input: RequestNodeRuntimeHistoryInput): ResponseNodeRuntimeHistory
|
3132
3122
|
getBlockletMeta(input: RequestBlockletMetaInput): ResponseBlockletMeta
|
3133
3123
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
3134
|
-
|
3135
|
-
|
3136
|
-
|
3124
|
+
makeAllNotificationsAsRead(input: RequestMakeAllNotificationsAsReadInput): ResponseMakeAllNotificationsAsRead
|
3125
|
+
getNotificationSendLog(input: RequestNotificationSendLogInput): ResponseNotificationSendLog
|
3126
|
+
getNotificationComponents(input: RequestNotificationComponentsInput): ResponseNotificationComponents
|
3137
3127
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
3138
3128
|
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
3139
3129
|
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
package/lib/schema.graphqls
CHANGED
@@ -624,17 +624,6 @@ input RequestGetBlockletBackupsInput {
|
|
624
624
|
did: String
|
625
625
|
}
|
626
626
|
|
627
|
-
input RequestGetBlockletNotificationsInput {
|
628
|
-
receiver: String
|
629
|
-
sender: String
|
630
|
-
read: Boolean
|
631
|
-
paging: PagingInput
|
632
|
-
teamDid: String
|
633
|
-
severity: String
|
634
|
-
componentDid: String
|
635
|
-
entityId: String
|
636
|
-
}
|
637
|
-
|
638
627
|
input RequestGetBlockletResponseHeaderPoliciesInput {
|
639
628
|
did: String
|
640
629
|
paging: PagingInput
|
@@ -676,6 +665,7 @@ input RequestGetNotificationsInput {
|
|
676
665
|
sender: String
|
677
666
|
read: Boolean
|
678
667
|
paging: PagingInput
|
668
|
+
teamDid: String
|
679
669
|
severity: String
|
680
670
|
componentDid: String
|
681
671
|
entityId: String
|
@@ -787,12 +777,7 @@ input RequestLogoutUserInput {
|
|
787
777
|
visitorId: String
|
788
778
|
}
|
789
779
|
|
790
|
-
input
|
791
|
-
id: String
|
792
|
-
receiver: String
|
793
|
-
}
|
794
|
-
|
795
|
-
input RequestMakeAllBlockletNotificationsAsReadInput {
|
780
|
+
input RequestMakeAllNotificationsAsReadInput {
|
796
781
|
receiver: String
|
797
782
|
teamDid: String
|
798
783
|
}
|
@@ -812,6 +797,22 @@ input RequestNodeRuntimeHistoryInput {
|
|
812
797
|
hours: Uint32
|
813
798
|
}
|
814
799
|
|
800
|
+
input RequestNotificationComponentsInput {
|
801
|
+
teamDid: String
|
802
|
+
receiver: String
|
803
|
+
}
|
804
|
+
|
805
|
+
input RequestNotificationSendLogInput {
|
806
|
+
teamDid: String
|
807
|
+
userName: String
|
808
|
+
userDid: String
|
809
|
+
walletSendStatus: Int32
|
810
|
+
pushKitSendStatus: Int32
|
811
|
+
emailSendStatus: Int32
|
812
|
+
senderAt: String
|
813
|
+
paging: PagingInput
|
814
|
+
}
|
815
|
+
|
815
816
|
input RequestProjectInput {
|
816
817
|
did: String
|
817
818
|
projectId: String
|
@@ -831,14 +832,9 @@ input RequestQuitFederatedLoginInput {
|
|
831
832
|
targetDid: String
|
832
833
|
}
|
833
834
|
|
834
|
-
input RequestReadBlockletNotificationsInput {
|
835
|
-
notificationIds: [String!]
|
836
|
-
teamDid: String
|
837
|
-
receiver: String
|
838
|
-
}
|
839
|
-
|
840
835
|
input RequestReadNotificationsInput {
|
841
836
|
notificationIds: [String!]
|
837
|
+
teamDid: String
|
842
838
|
receiver: String
|
843
839
|
}
|
844
840
|
|
@@ -2060,6 +2056,7 @@ type NotificationReceiver {
|
|
2060
2056
|
emailSendStatus: Uint32
|
2061
2057
|
emailSendAt: Uint32
|
2062
2058
|
createdAt: Uint32
|
2059
|
+
notification: Notification
|
2063
2060
|
}
|
2064
2061
|
|
2065
2062
|
type OptionalComponentState {
|
@@ -2373,12 +2370,6 @@ type ResponseGetBlockletBackups {
|
|
2373
2370
|
backups: [Backup!]
|
2374
2371
|
}
|
2375
2372
|
|
2376
|
-
type ResponseGetBlockletNotifications {
|
2377
|
-
code: StatusCode
|
2378
|
-
list: [Notification!]
|
2379
|
-
paging: Paging
|
2380
|
-
}
|
2381
|
-
|
2382
2373
|
type ResponseGetBlockletSpaceGateways {
|
2383
2374
|
code: StatusCode
|
2384
2375
|
spaceGateways: [SpaceGateway!]
|
@@ -2504,19 +2495,25 @@ type ResponseIsDidDomain {
|
|
2504
2495
|
value: Boolean
|
2505
2496
|
}
|
2506
2497
|
|
2507
|
-
type
|
2498
|
+
type ResponseMakeAllNotificationsAsRead {
|
2508
2499
|
code: StatusCode
|
2509
2500
|
numAffected: Int32
|
2510
2501
|
}
|
2511
2502
|
|
2512
|
-
type
|
2503
|
+
type ResponseNodeRuntimeHistory {
|
2504
|
+
code: StatusCode
|
2505
|
+
history: [NodeHistoryItem!]
|
2506
|
+
}
|
2507
|
+
|
2508
|
+
type ResponseNotificationComponents {
|
2513
2509
|
code: StatusCode
|
2514
|
-
|
2510
|
+
componentDids: [String!]
|
2515
2511
|
}
|
2516
2512
|
|
2517
|
-
type
|
2513
|
+
type ResponseNotificationSendLog {
|
2518
2514
|
code: StatusCode
|
2519
|
-
|
2515
|
+
list: [NotificationReceiver!]
|
2516
|
+
paging: Paging
|
2520
2517
|
}
|
2521
2518
|
|
2522
2519
|
type ResponsePermission {
|
@@ -2539,11 +2536,6 @@ type ResponsePublishToStore {
|
|
2539
2536
|
url: String
|
2540
2537
|
}
|
2541
2538
|
|
2542
|
-
type ResponseReadBlockletNotifications {
|
2543
|
-
code: StatusCode
|
2544
|
-
numAffected: Int32
|
2545
|
-
}
|
2546
|
-
|
2547
2539
|
type ResponseReadNotifications {
|
2548
2540
|
code: StatusCode
|
2549
2541
|
numAffected: Int32
|
@@ -3075,8 +3067,6 @@ type Mutation {
|
|
3075
3067
|
deleteTag(input: RequestTagInput): ResponseTag
|
3076
3068
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
3077
3069
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
3078
|
-
readBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
3079
|
-
unreadBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
3080
3070
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
3081
3071
|
addDomainAlias(input: RequestAddDomainAliasInput): ResponseRoutingSite
|
3082
3072
|
deleteDomainAlias(input: RequestDeleteDomainAliasInput): ResponseRoutingSite
|
@@ -3133,9 +3123,9 @@ type Query {
|
|
3133
3123
|
getNodeRuntimeHistory(input: RequestNodeRuntimeHistoryInput): ResponseNodeRuntimeHistory
|
3134
3124
|
getBlockletMeta(input: RequestBlockletMetaInput): ResponseBlockletMeta
|
3135
3125
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
3136
|
-
|
3137
|
-
|
3138
|
-
|
3126
|
+
makeAllNotificationsAsRead(input: RequestMakeAllNotificationsAsReadInput): ResponseMakeAllNotificationsAsRead
|
3127
|
+
getNotificationSendLog(input: RequestNotificationSendLogInput): ResponseNotificationSendLog
|
3128
|
+
getNotificationComponents(input: RequestNotificationComponentsInput): ResponseNotificationComponents
|
3139
3129
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
3140
3130
|
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
3141
3131
|
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.16.37-beta-
|
6
|
+
"version": "1.16.37-beta-20250104-120451-e4049aeb",
|
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": "b7b25187705d6a0ac07d3ff4ed3333bf7808120b",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|