@abtnode/schema 1.16.37-beta-20241225-042616-74a39677 → 1.16.37-beta-20250102-115729-ae7f327e

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 CHANGED
@@ -624,18 +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
- pageSize: Int32
637
- }
638
-
639
627
  input RequestGetBlockletResponseHeaderPoliciesInput {
640
628
  did: String
641
629
  paging: PagingInput
@@ -677,10 +665,10 @@ input RequestGetNotificationsInput {
677
665
  sender: String
678
666
  read: Boolean
679
667
  paging: PagingInput
668
+ teamDid: String
680
669
  severity: String
681
670
  componentDid: String
682
671
  entityId: String
683
- pageSize: Int32
684
672
  }
685
673
 
686
674
  input RequestGetPassportIssuancesInput {
@@ -789,12 +777,7 @@ input RequestLogoutUserInput {
789
777
  visitorId: String
790
778
  }
791
779
 
792
- input RequestMakeAllAsReadInput {
793
- id: String
794
- receiver: String
795
- }
796
-
797
- input RequestMakeAllBlockletNotificationsAsReadInput {
780
+ input RequestMakeAllNotificationsAsReadInput {
798
781
  receiver: String
799
782
  teamDid: String
800
783
  }
@@ -814,6 +797,22 @@ input RequestNodeRuntimeHistoryInput {
814
797
  hours: Uint32
815
798
  }
816
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
+
817
816
  input RequestProjectInput {
818
817
  did: String
819
818
  projectId: String
@@ -833,14 +832,9 @@ input RequestQuitFederatedLoginInput {
833
832
  targetDid: String
834
833
  }
835
834
 
836
- input RequestReadBlockletNotificationsInput {
837
- notificationIds: [String!]
838
- teamDid: String
839
- receiver: String
840
- }
841
-
842
835
  input RequestReadNotificationsInput {
843
836
  notificationIds: [String!]
837
+ teamDid: String
844
838
  receiver: String
845
839
  }
846
840
 
@@ -2031,6 +2025,8 @@ type Notification {
2031
2025
  componentDid: String
2032
2026
  type: Notification_NotificationType
2033
2027
  receivers: [NotificationReceiver!]
2028
+ data: Any
2029
+ feedType: String
2034
2030
  }
2035
2031
 
2036
2032
  type NotificationAction {
@@ -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 ResponseMakeAllAsRead {
2498
+ type ResponseMakeAllNotificationsAsRead {
2508
2499
  code: StatusCode
2509
2500
  numAffected: Int32
2510
2501
  }
2511
2502
 
2512
- type ResponseMakeAllBlockletNotificationsAsRead {
2503
+ type ResponseNodeRuntimeHistory {
2504
+ code: StatusCode
2505
+ history: [NodeHistoryItem!]
2506
+ }
2507
+
2508
+ type ResponseNotificationComponents {
2513
2509
  code: StatusCode
2514
- numAffected: Int32
2510
+ componentDids: [String!]
2515
2511
  }
2516
2512
 
2517
- type ResponseNodeRuntimeHistory {
2513
+ type ResponseNotificationSendLog {
2518
2514
  code: StatusCode
2519
- history: [NodeHistoryItem!]
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
- makeAllAsRead(input: RequestMakeAllAsReadInput): ResponseMakeAllAsRead
3135
- getBlockletNotifications(input: RequestGetBlockletNotificationsInput): ResponseGetBlockletNotifications
3136
- makeAllBlockletNotificationsAsRead(input: RequestMakeAllBlockletNotificationsAsReadInput): ResponseMakeAllBlockletNotificationsAsRead
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
@@ -624,18 +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
- pageSize: Int32
637
- }
638
-
639
627
  input RequestGetBlockletResponseHeaderPoliciesInput {
640
628
  did: String
641
629
  paging: PagingInput
@@ -677,10 +665,10 @@ input RequestGetNotificationsInput {
677
665
  sender: String
678
666
  read: Boolean
679
667
  paging: PagingInput
668
+ teamDid: String
680
669
  severity: String
681
670
  componentDid: String
682
671
  entityId: String
683
- pageSize: Int32
684
672
  }
685
673
 
686
674
  input RequestGetPassportIssuancesInput {
@@ -789,12 +777,7 @@ input RequestLogoutUserInput {
789
777
  visitorId: String
790
778
  }
791
779
 
792
- input RequestMakeAllAsReadInput {
793
- id: String
794
- receiver: String
795
- }
796
-
797
- input RequestMakeAllBlockletNotificationsAsReadInput {
780
+ input RequestMakeAllNotificationsAsReadInput {
798
781
  receiver: String
799
782
  teamDid: String
800
783
  }
@@ -814,6 +797,22 @@ input RequestNodeRuntimeHistoryInput {
814
797
  hours: Uint32
815
798
  }
816
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
+
817
816
  input RequestProjectInput {
818
817
  did: String
819
818
  projectId: String
@@ -833,14 +832,9 @@ input RequestQuitFederatedLoginInput {
833
832
  targetDid: String
834
833
  }
835
834
 
836
- input RequestReadBlockletNotificationsInput {
837
- notificationIds: [String!]
838
- teamDid: String
839
- receiver: String
840
- }
841
-
842
835
  input RequestReadNotificationsInput {
843
836
  notificationIds: [String!]
837
+ teamDid: String
844
838
  receiver: String
845
839
  }
846
840
 
@@ -2031,6 +2025,8 @@ type Notification {
2031
2025
  componentDid: String
2032
2026
  type: Notification_NotificationType
2033
2027
  receivers: [NotificationReceiver!]
2028
+ data: Any
2029
+ feedType: String
2034
2030
  }
2035
2031
 
2036
2032
  type NotificationAction {
@@ -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 ResponseMakeAllAsRead {
2498
+ type ResponseMakeAllNotificationsAsRead {
2508
2499
  code: StatusCode
2509
2500
  numAffected: Int32
2510
2501
  }
2511
2502
 
2512
- type ResponseMakeAllBlockletNotificationsAsRead {
2503
+ type ResponseNodeRuntimeHistory {
2504
+ code: StatusCode
2505
+ history: [NodeHistoryItem!]
2506
+ }
2507
+
2508
+ type ResponseNotificationComponents {
2513
2509
  code: StatusCode
2514
- numAffected: Int32
2510
+ componentDids: [String!]
2515
2511
  }
2516
2512
 
2517
- type ResponseNodeRuntimeHistory {
2513
+ type ResponseNotificationSendLog {
2518
2514
  code: StatusCode
2519
- history: [NodeHistoryItem!]
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
- makeAllAsRead(input: RequestMakeAllAsReadInput): ResponseMakeAllAsRead
3137
- getBlockletNotifications(input: RequestGetBlockletNotificationsInput): ResponseGetBlockletNotifications
3138
- makeAllBlockletNotificationsAsRead(input: RequestMakeAllBlockletNotificationsAsReadInput): ResponseMakeAllBlockletNotificationsAsRead
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-20241225-042616-74a39677",
6
+ "version": "1.16.37-beta-20250102-115729-ae7f327e",
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": "7cf5cfe0d4d8e356cbf5e175c2028bee8bdf43eb",
16
+ "gitHead": "3f2d744095b2056010fdd1635841857a65f12232",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }