@blocklet/sdk 1.16.39-beta-20250213-123635-cabff5af → 1.16.39-beta-20250218-110004-a308c501
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.
|
@@ -198,7 +198,7 @@ const messageSchema = Joi.object({
|
|
|
198
198
|
.required()
|
|
199
199
|
.meta({ className: 'TMessage', unknownType: 'any' });
|
|
200
200
|
exports.messageSchema = messageSchema;
|
|
201
|
-
const receiverSchema = Joi.DID().trim().required().meta({ className: 'TReceiver' });
|
|
201
|
+
const receiverSchema = Joi.alternatives().try(Joi.DID().trim().required().meta({ className: 'TReceiver' }), Joi.string().valid('*').meta({ className: 'TReceiver' }));
|
|
202
202
|
const inputNotificationSchema = Joi.array()
|
|
203
203
|
.items(notificationSchema)
|
|
204
204
|
.single()
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.39-beta-
|
|
6
|
+
"version": "1.16.39-beta-20250218-110004-a308c501",
|
|
7
7
|
"description": "graphql client to read/write data on abt node",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"typings": "lib/index.d.ts",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"author": "linchen1987 <linchen.1987@foxmail.com> (http://github.com/linchen1987)",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@abtnode/client": "1.16.39-beta-
|
|
31
|
-
"@abtnode/constant": "1.16.39-beta-
|
|
32
|
-
"@abtnode/util": "1.16.39-beta-
|
|
30
|
+
"@abtnode/client": "1.16.39-beta-20250218-110004-a308c501",
|
|
31
|
+
"@abtnode/constant": "1.16.39-beta-20250218-110004-a308c501",
|
|
32
|
+
"@abtnode/util": "1.16.39-beta-20250218-110004-a308c501",
|
|
33
33
|
"@arcblock/did": "1.19.9",
|
|
34
34
|
"@arcblock/did-auth": "1.19.9",
|
|
35
35
|
"@arcblock/jwt": "1.19.9",
|
|
36
36
|
"@arcblock/ws": "1.19.9",
|
|
37
|
-
"@blocklet/constant": "1.16.39-beta-
|
|
38
|
-
"@blocklet/env": "1.16.39-beta-
|
|
39
|
-
"@blocklet/meta": "1.16.39-beta-
|
|
37
|
+
"@blocklet/constant": "1.16.39-beta-20250218-110004-a308c501",
|
|
38
|
+
"@blocklet/env": "1.16.39-beta-20250218-110004-a308c501",
|
|
39
|
+
"@blocklet/meta": "1.16.39-beta-20250218-110004-a308c501",
|
|
40
40
|
"@did-connect/authenticator": "^2.2.7",
|
|
41
41
|
"@did-connect/handler": "^2.2.7",
|
|
42
42
|
"@nedb/core": "^2.1.5",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"ts-node": "^10.9.1",
|
|
83
83
|
"typescript": "^5.6.3"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "f47632e1ce0cc8295dd3fa1131bcc6252d6adaf9"
|
|
86
86
|
}
|