@abtnode/core 1.8.15 → 1.8.18
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/api/team.js +124 -2
- package/lib/blocklet/hooks.js +2 -1
- package/lib/blocklet/manager/base.js +2 -0
- package/lib/blocklet/manager/disk.js +15 -53
- package/lib/index.js +5 -4
- package/lib/states/access-key.js +16 -14
- package/lib/states/audit-log.js +16 -6
- package/lib/states/base.js +2 -2
- package/lib/states/blocklet-extras.js +10 -10
- package/lib/states/blocklet.js +20 -19
- package/lib/states/cache.js +8 -6
- package/lib/states/challenge.js +5 -5
- package/lib/states/index.js +13 -13
- package/lib/states/migration.js +4 -4
- package/lib/states/node.js +12 -12
- package/lib/states/notification.js +8 -8
- package/lib/states/session.js +16 -14
- package/lib/states/site.js +10 -22
- package/lib/states/user.js +11 -21
- package/lib/states/webhook.js +5 -5
- package/lib/util/blocklet.js +80 -4
- package/package.json +24 -25
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.18",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,32 +19,31 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/
|
|
23
|
-
"@abtnode/
|
|
24
|
-
"@abtnode/
|
|
25
|
-
"@abtnode/
|
|
26
|
-
"@abtnode/
|
|
27
|
-
"@abtnode/
|
|
28
|
-
"@abtnode/
|
|
29
|
-
"@abtnode/
|
|
30
|
-
"@abtnode/
|
|
31
|
-
"@abtnode/
|
|
32
|
-
"@abtnode/
|
|
33
|
-
"@
|
|
22
|
+
"@abtnode/auth": "1.8.18",
|
|
23
|
+
"@abtnode/certificate-manager": "1.8.18",
|
|
24
|
+
"@abtnode/constant": "1.8.18",
|
|
25
|
+
"@abtnode/cron": "1.8.18",
|
|
26
|
+
"@abtnode/db": "1.8.18",
|
|
27
|
+
"@abtnode/logger": "1.8.18",
|
|
28
|
+
"@abtnode/queue": "1.8.18",
|
|
29
|
+
"@abtnode/rbac": "1.8.18",
|
|
30
|
+
"@abtnode/router-provider": "1.8.18",
|
|
31
|
+
"@abtnode/static-server": "1.8.18",
|
|
32
|
+
"@abtnode/timemachine": "1.8.18",
|
|
33
|
+
"@abtnode/util": "1.8.18",
|
|
34
|
+
"@arcblock/did": "1.17.19",
|
|
34
35
|
"@arcblock/did-motif": "^1.1.10",
|
|
35
|
-
"@arcblock/did-util": "1.17.
|
|
36
|
-
"@arcblock/event-hub": "1.17.
|
|
37
|
-
"@arcblock/jwt": "^1.17.
|
|
36
|
+
"@arcblock/did-util": "1.17.19",
|
|
37
|
+
"@arcblock/event-hub": "1.17.19",
|
|
38
|
+
"@arcblock/jwt": "^1.17.19",
|
|
38
39
|
"@arcblock/pm2-events": "^0.0.5",
|
|
39
|
-
"@arcblock/vc": "1.17.
|
|
40
|
-
"@blocklet/meta": "1.8.
|
|
41
|
-
"@blocklet/sdk": "1.8.
|
|
40
|
+
"@arcblock/vc": "1.17.19",
|
|
41
|
+
"@blocklet/meta": "1.8.18",
|
|
42
|
+
"@blocklet/sdk": "1.8.18",
|
|
42
43
|
"@fidm/x509": "^1.2.1",
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
45
|
-
"@ocap/
|
|
46
|
-
"@ocap/util": "1.17.17",
|
|
47
|
-
"@ocap/wallet": "1.17.17",
|
|
44
|
+
"@ocap/mcrypto": "1.17.19",
|
|
45
|
+
"@ocap/util": "1.17.19",
|
|
46
|
+
"@ocap/wallet": "1.17.19",
|
|
48
47
|
"@slack/webhook": "^5.0.4",
|
|
49
48
|
"axios": "^0.27.2",
|
|
50
49
|
"axon": "^2.0.3",
|
|
@@ -81,5 +80,5 @@
|
|
|
81
80
|
"express": "^4.18.1",
|
|
82
81
|
"jest": "^27.5.1"
|
|
83
82
|
},
|
|
84
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "7d82c570913bedf740afca15c27ef10d05aa85fc"
|
|
85
84
|
}
|