@abtnode/schema 1.16.27 → 1.16.28-beta-bfbab430
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 +9 -1
- package/lib/schema.graphqls +8 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -701,6 +701,12 @@ input RequestSendMsgInput {
|
|
|
701
701
|
message: String
|
|
702
702
|
}
|
|
703
703
|
|
|
704
|
+
input RequestSendPushInput {
|
|
705
|
+
did: String
|
|
706
|
+
receiver: String
|
|
707
|
+
notification: String
|
|
708
|
+
}
|
|
709
|
+
|
|
704
710
|
input RequestStartSessionInput {
|
|
705
711
|
data: String
|
|
706
712
|
}
|
|
@@ -1162,6 +1168,7 @@ type BlockletEngine {
|
|
|
1162
1168
|
version: String
|
|
1163
1169
|
available: Boolean
|
|
1164
1170
|
visible: Boolean
|
|
1171
|
+
logo: String
|
|
1165
1172
|
}
|
|
1166
1173
|
|
|
1167
1174
|
type BlockletHistoryItem {
|
|
@@ -2527,6 +2534,7 @@ type Mutation {
|
|
|
2527
2534
|
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
2528
2535
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2529
2536
|
sendEmail(input: RequestSendEmailInput): GeneralResponse
|
|
2537
|
+
sendPush(input: RequestSendPushInput): GeneralResponse
|
|
2530
2538
|
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2531
2539
|
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2532
2540
|
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
|
@@ -2674,4 +2682,4 @@ type Query {
|
|
|
2674
2682
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2675
2683
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2676
2684
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2677
|
-
}`;
|
|
2685
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -701,6 +701,12 @@ input RequestSendMsgInput {
|
|
|
701
701
|
message: String
|
|
702
702
|
}
|
|
703
703
|
|
|
704
|
+
input RequestSendPushInput {
|
|
705
|
+
did: String
|
|
706
|
+
receiver: String
|
|
707
|
+
notification: String
|
|
708
|
+
}
|
|
709
|
+
|
|
704
710
|
input RequestStartSessionInput {
|
|
705
711
|
data: String
|
|
706
712
|
}
|
|
@@ -1162,6 +1168,7 @@ type BlockletEngine {
|
|
|
1162
1168
|
version: String
|
|
1163
1169
|
available: Boolean
|
|
1164
1170
|
visible: Boolean
|
|
1171
|
+
logo: String
|
|
1165
1172
|
}
|
|
1166
1173
|
|
|
1167
1174
|
type BlockletHistoryItem {
|
|
@@ -2529,6 +2536,7 @@ type Mutation {
|
|
|
2529
2536
|
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
2530
2537
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2531
2538
|
sendEmail(input: RequestSendEmailInput): GeneralResponse
|
|
2539
|
+
sendPush(input: RequestSendPushInput): GeneralResponse
|
|
2532
2540
|
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2533
2541
|
quitFederatedLogin(input: RequestQuitFederatedLoginInput): ResponseBlocklet
|
|
2534
2542
|
disbandFederatedLogin(input: RequestDisbandFederatedLoginInput): ResponseBlocklet
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.28-beta-bfbab430",
|
|
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": "f1fbf0752de46be00d1faa0d54eb7d28016e0bb9",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|