@did-space/template 0.2.27 → 0.2.28
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.
|
@@ -10,6 +10,8 @@ exports.AppBackupSchema = validator_1.Joi.object({
|
|
|
10
10
|
type: validator_1.Joi.string().valid(core_1.APP_BACKUP_TYPE).default(core_1.APP_BACKUP_TYPE),
|
|
11
11
|
userDid: validator_1.Joi.DID().required(),
|
|
12
12
|
referrer: app_connected_1.AppUrlSchema,
|
|
13
|
+
// 目前指向的是 server 的 did 地址
|
|
14
|
+
nodeUrl: validator_1.Joi.string().optional().allow('').default(''),
|
|
13
15
|
appName: validator_1.Joi.string().optional().allow('').default(''),
|
|
14
16
|
appDescription: validator_1.Joi.string().optional().allow('').default(''),
|
|
15
17
|
createAt: validator_1.Joi.string()
|
|
@@ -30,6 +30,8 @@ exports.AppConnectedSchema = validator_1.Joi.object({
|
|
|
30
30
|
scopes: validator_1.Joi.string().required(),
|
|
31
31
|
appUrl: exports.AppUrlSchema,
|
|
32
32
|
referrer: exports.AppUrlSchema,
|
|
33
|
+
// 目前指向的是 server 的 did 地址
|
|
34
|
+
nodeUrl: validator_1.Joi.string().optional().allow('').default(''),
|
|
33
35
|
createAt: validator_1.Joi.string()
|
|
34
36
|
.optional()
|
|
35
37
|
.default(() => new Date().toISOString()),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@did-space/template",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.28",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@arcblock/jwt": "^1.18.57",
|
|
37
37
|
"@arcblock/validator": "^1.18.57",
|
|
38
38
|
"@blocklet/sdk": "1.8.68-beta-500af7e5",
|
|
39
|
-
"@did-space/core": "0.2.
|
|
39
|
+
"@did-space/core": "0.2.28",
|
|
40
40
|
"@ocap/mcrypto": "^1.18.57",
|
|
41
41
|
"@ocap/util": "^1.18.57",
|
|
42
42
|
"@ocap/wallet": "^1.18.57",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"ts-jest": "^28.0.6",
|
|
77
77
|
"typescript": "^4.9.5"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "7e643729c8b903013c3c6938ca6654ff029d07fa"
|
|
80
80
|
}
|