@abtnode/schema 1.16.38-beta-20250123-083218-c7ea9693 → 1.16.38-beta-20250126-132712-f36c6a8b
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 +31 -4
- package/lib/schema.graphqls +31 -4
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -838,10 +838,10 @@ input RequestNotificationSendLogInput {
|
|
838
838
|
teamDid: String
|
839
839
|
userName: String
|
840
840
|
userDid: String
|
841
|
-
walletSendStatus: Int32
|
842
|
-
pushKitSendStatus: Int32
|
843
|
-
emailSendStatus: Int32
|
844
|
-
|
841
|
+
walletSendStatus: [Int32!]
|
842
|
+
pushKitSendStatus: [Int32!]
|
843
|
+
emailSendStatus: [Int32!]
|
844
|
+
dateRange: [String!]
|
845
845
|
paging: PagingInput
|
846
846
|
}
|
847
847
|
|
@@ -876,6 +876,13 @@ input RequestReleaseInput {
|
|
876
876
|
releaseId: String
|
877
877
|
}
|
878
878
|
|
879
|
+
input RequestResendNotificationInput {
|
880
|
+
teamDid: String
|
881
|
+
notificationReceiverIds: [String!]
|
882
|
+
channels: [String!]
|
883
|
+
webhookUrls: [String!]
|
884
|
+
}
|
885
|
+
|
879
886
|
input RequestResetNodeInput {
|
880
887
|
owner: Boolean
|
881
888
|
blocklets: Boolean
|
@@ -2132,6 +2139,20 @@ type NotificationReceiver {
|
|
2132
2139
|
emailSendAt: Uint32
|
2133
2140
|
createdAt: Uint32
|
2134
2141
|
notification: Notification
|
2142
|
+
receiverUser: UserInfo
|
2143
|
+
walletSendFailedReason: String
|
2144
|
+
walletSendRecord: [NotificationSendRecord!]
|
2145
|
+
pushKitSendFailedReason: String
|
2146
|
+
pushKitSendRecord: [NotificationSendRecord!]
|
2147
|
+
emailSendFailedReason: String
|
2148
|
+
emailSendRecord: [NotificationSendRecord!]
|
2149
|
+
webhook: Any
|
2150
|
+
}
|
2151
|
+
|
2152
|
+
type NotificationSendRecord {
|
2153
|
+
sendStatus: Uint32
|
2154
|
+
sendAt: Uint32
|
2155
|
+
failedReason: String
|
2135
2156
|
}
|
2136
2157
|
|
2137
2158
|
type OptionalComponentState {
|
@@ -2623,6 +2644,11 @@ type ResponseRelease {
|
|
2623
2644
|
release: Release
|
2624
2645
|
}
|
2625
2646
|
|
2647
|
+
type ResponseResendNotification {
|
2648
|
+
code: StatusCode
|
2649
|
+
data: Any
|
2650
|
+
}
|
2651
|
+
|
2626
2652
|
type ResponseResetNode {
|
2627
2653
|
code: StatusCode
|
2628
2654
|
}
|
@@ -3214,6 +3240,7 @@ type Query {
|
|
3214
3240
|
makeAllNotificationsAsRead(input: RequestMakeAllNotificationsAsReadInput): ResponseMakeAllNotificationsAsRead
|
3215
3241
|
getNotificationSendLog(input: RequestNotificationSendLogInput): ResponseNotificationSendLog
|
3216
3242
|
getNotificationComponents(input: RequestNotificationComponentsInput): ResponseNotificationComponents
|
3243
|
+
resendNotification(input: RequestResendNotificationInput): ResponseResendNotification
|
3217
3244
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
3218
3245
|
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
3219
3246
|
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
package/lib/schema.graphqls
CHANGED
@@ -838,10 +838,10 @@ input RequestNotificationSendLogInput {
|
|
838
838
|
teamDid: String
|
839
839
|
userName: String
|
840
840
|
userDid: String
|
841
|
-
walletSendStatus: Int32
|
842
|
-
pushKitSendStatus: Int32
|
843
|
-
emailSendStatus: Int32
|
844
|
-
|
841
|
+
walletSendStatus: [Int32!]
|
842
|
+
pushKitSendStatus: [Int32!]
|
843
|
+
emailSendStatus: [Int32!]
|
844
|
+
dateRange: [String!]
|
845
845
|
paging: PagingInput
|
846
846
|
}
|
847
847
|
|
@@ -876,6 +876,13 @@ input RequestReleaseInput {
|
|
876
876
|
releaseId: String
|
877
877
|
}
|
878
878
|
|
879
|
+
input RequestResendNotificationInput {
|
880
|
+
teamDid: String
|
881
|
+
notificationReceiverIds: [String!]
|
882
|
+
channels: [String!]
|
883
|
+
webhookUrls: [String!]
|
884
|
+
}
|
885
|
+
|
879
886
|
input RequestResetNodeInput {
|
880
887
|
owner: Boolean
|
881
888
|
blocklets: Boolean
|
@@ -2132,6 +2139,20 @@ type NotificationReceiver {
|
|
2132
2139
|
emailSendAt: Uint32
|
2133
2140
|
createdAt: Uint32
|
2134
2141
|
notification: Notification
|
2142
|
+
receiverUser: UserInfo
|
2143
|
+
walletSendFailedReason: String
|
2144
|
+
walletSendRecord: [NotificationSendRecord!]
|
2145
|
+
pushKitSendFailedReason: String
|
2146
|
+
pushKitSendRecord: [NotificationSendRecord!]
|
2147
|
+
emailSendFailedReason: String
|
2148
|
+
emailSendRecord: [NotificationSendRecord!]
|
2149
|
+
webhook: Any
|
2150
|
+
}
|
2151
|
+
|
2152
|
+
type NotificationSendRecord {
|
2153
|
+
sendStatus: Uint32
|
2154
|
+
sendAt: Uint32
|
2155
|
+
failedReason: String
|
2135
2156
|
}
|
2136
2157
|
|
2137
2158
|
type OptionalComponentState {
|
@@ -2623,6 +2644,11 @@ type ResponseRelease {
|
|
2623
2644
|
release: Release
|
2624
2645
|
}
|
2625
2646
|
|
2647
|
+
type ResponseResendNotification {
|
2648
|
+
code: StatusCode
|
2649
|
+
data: Any
|
2650
|
+
}
|
2651
|
+
|
2626
2652
|
type ResponseResetNode {
|
2627
2653
|
code: StatusCode
|
2628
2654
|
}
|
@@ -3216,6 +3242,7 @@ type Query {
|
|
3216
3242
|
makeAllNotificationsAsRead(input: RequestMakeAllNotificationsAsReadInput): ResponseMakeAllNotificationsAsRead
|
3217
3243
|
getNotificationSendLog(input: RequestNotificationSendLogInput): ResponseNotificationSendLog
|
3218
3244
|
getNotificationComponents(input: RequestNotificationComponentsInput): ResponseNotificationComponents
|
3245
|
+
resendNotification(input: RequestResendNotificationInput): ResponseResendNotification
|
3219
3246
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
3220
3247
|
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
3221
3248
|
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.38-beta-
|
6
|
+
"version": "1.16.38-beta-20250126-132712-f36c6a8b",
|
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": "b50fbfb7039f5c8a5bd4825d68d9504f00c539fb",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|