@abtnode/core 1.16.45-beta-20250610-112229-2eb0face → 1.16.45-beta-20250612-231219-481217be
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/blocklet/manager/disk.js +33 -6
- package/lib/blocklet/migration-dist/migration.cjs +3 -3
- package/lib/index.js +1 -4
- package/lib/router/helper.js +0 -8
- package/lib/states/audit-log.js +15 -3
- package/lib/states/node.js +1 -1
- package/lib/team/manager.js +1 -1
- package/lib/util/blocklet.js +2 -3
- package/lib/util/check-dns.js +1 -12
- package/lib/util/docker/docker-exec-chown.js +1 -1
- package/lib/util/docker/docker-network.js +1 -1
- package/lib/webhook/reduce-queue.js +1 -1
- package/package.json +26 -26
|
@@ -100,6 +100,7 @@ const {
|
|
|
100
100
|
SUSPENDED_REASON,
|
|
101
101
|
APP_CONFIG_DIR,
|
|
102
102
|
COMPONENT_ENV_FILE_NAME,
|
|
103
|
+
BLOCKLET_PREFERENCE_PREFIX,
|
|
103
104
|
} = require('@blocklet/constant');
|
|
104
105
|
|
|
105
106
|
const { WELLKNOWN_SERVICE_PATH_PREFIX, WELLKNOWN_BLOCKLET_ADMIN_PATH } = require('@abtnode/constant');
|
|
@@ -1669,10 +1670,12 @@ class DiskBlockletManager extends BaseBlockletManager {
|
|
|
1669
1670
|
}
|
|
1670
1671
|
|
|
1671
1672
|
// 对用户输入的配置进行 XSS 清理
|
|
1672
|
-
const sanitizedConfigs = newConfigs
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1673
|
+
const sanitizedConfigs = newConfigs
|
|
1674
|
+
.map((c) => ({
|
|
1675
|
+
...c,
|
|
1676
|
+
value: sanitizeTag(c.value),
|
|
1677
|
+
}))
|
|
1678
|
+
.filter((x) => (x.key.startsWith(BLOCKLET_PREFERENCE_PREFIX) ? omit(x, 'shared') : x));
|
|
1676
1679
|
|
|
1677
1680
|
const tmpDids = Array.isArray(did) ? did : [did];
|
|
1678
1681
|
const [rootDid, childDid] = tmpDids;
|
|
@@ -2768,8 +2771,32 @@ class DiskBlockletManager extends BaseBlockletManager {
|
|
|
2768
2771
|
return summary;
|
|
2769
2772
|
}
|
|
2770
2773
|
|
|
2771
|
-
async
|
|
2772
|
-
|
|
2774
|
+
async updateBlockletSettings({ did, enableSessionHardening, invite, gateway }, context) {
|
|
2775
|
+
let params = {};
|
|
2776
|
+
if (!isNil(enableSessionHardening)) {
|
|
2777
|
+
params.enableSessionHardening = enableSessionHardening;
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
if (!isNil(invite)) {
|
|
2781
|
+
params.invite = invite;
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
if (!isNil(gateway)) {
|
|
2785
|
+
params = { ...params, ...gateway };
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
const keys = Object.keys(params);
|
|
2789
|
+
if (!keys.length) {
|
|
2790
|
+
throw new Error('No settings to update');
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2793
|
+
await states.blockletExtras.setSettings(did, params);
|
|
2794
|
+
|
|
2795
|
+
if (!isNil(gateway)) {
|
|
2796
|
+
const nodeState = states.node;
|
|
2797
|
+
const doc = await nodeState.read();
|
|
2798
|
+
nodeState.emit(EVENTS.RELOAD_GATEWAY, doc);
|
|
2799
|
+
}
|
|
2773
2800
|
|
|
2774
2801
|
const newState = await this.getBlocklet(did);
|
|
2775
2802
|
this.emit(BlockletInternalEvents.appSettingChanged, { appDid: did });
|
|
@@ -8202,7 +8202,7 @@ function save(namespaces) {
|
|
|
8202
8202
|
function load() {
|
|
8203
8203
|
let r;
|
|
8204
8204
|
try {
|
|
8205
|
-
r = exports.storage.getItem('debug');
|
|
8205
|
+
r = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;
|
|
8206
8206
|
} catch (error) {
|
|
8207
8207
|
// Swallow
|
|
8208
8208
|
// XXX (@Qix-) should we be logging these?
|
|
@@ -8430,7 +8430,7 @@ function setup(env) {
|
|
|
8430
8430
|
|
|
8431
8431
|
const split = (typeof namespaces === 'string' ? namespaces : '')
|
|
8432
8432
|
.trim()
|
|
8433
|
-
.replace(
|
|
8433
|
+
.replace(/\s+/g, ',')
|
|
8434
8434
|
.split(',')
|
|
8435
8435
|
.filter(Boolean);
|
|
8436
8436
|
|
|
@@ -38888,7 +38888,7 @@ module.exports = require("zlib");
|
|
|
38888
38888
|
/***/ ((module) => {
|
|
38889
38889
|
|
|
38890
38890
|
"use strict";
|
|
38891
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@abtnode/core","publishConfig":{"access":"public"},"version":"1.16.44","description":"","main":"lib/index.js","files":["lib"],"scripts":{"lint":"eslint tests lib --ignore-pattern \'tests/assets/*\'","lint:fix":"eslint --fix tests lib","test":"node tools/jest.js","coverage":"npm run test -- --coverage"},"keywords":[],"author":"wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)","license":"Apache-2.0","dependencies":{"@abtnode/analytics":"1.16.44","@abtnode/auth":"1.16.44","@abtnode/certificate-manager":"1.16.44","@abtnode/client":"1.16.44","@abtnode/constant":"1.16.44","@abtnode/cron":"1.16.44","@abtnode/db-cache":"1.16.44","@abtnode/docker-utils":"1.16.44","@abtnode/logger":"1.16.44","@abtnode/models":"1.16.44","@abtnode/queue":"1.16.44","@abtnode/rbac":"1.16.44","@abtnode/router-provider":"1.16.44","@abtnode/static-server":"1.16.44","@abtnode/timemachine":"1.16.44","@abtnode/util":"1.16.44","@arcblock/did":"1.20.14","@arcblock/did-auth":"1.20.14","@arcblock/did-ext":"1.20.14","@arcblock/did-motif":"^1.1.13","@arcblock/did-util":"1.20.14","@arcblock/event-hub":"1.20.14","@arcblock/jwt":"1.20.14","@arcblock/pm2-events":"^0.0.5","@arcblock/validator":"1.20.14","@arcblock/vc":"1.20.14","@blocklet/constant":"1.16.44","@blocklet/did-space-js":"^1.0.
|
|
38891
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@abtnode/core","publishConfig":{"access":"public"},"version":"1.16.44","description":"","main":"lib/index.js","files":["lib"],"scripts":{"lint":"eslint tests lib --ignore-pattern \'tests/assets/*\'","lint:fix":"eslint --fix tests lib","test":"node tools/jest.js","coverage":"npm run test -- --coverage"},"keywords":[],"author":"wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)","license":"Apache-2.0","dependencies":{"@abtnode/analytics":"1.16.44","@abtnode/auth":"1.16.44","@abtnode/certificate-manager":"1.16.44","@abtnode/client":"1.16.44","@abtnode/constant":"1.16.44","@abtnode/cron":"1.16.44","@abtnode/db-cache":"1.16.44","@abtnode/docker-utils":"1.16.44","@abtnode/logger":"1.16.44","@abtnode/models":"1.16.44","@abtnode/queue":"1.16.44","@abtnode/rbac":"1.16.44","@abtnode/router-provider":"1.16.44","@abtnode/static-server":"1.16.44","@abtnode/timemachine":"1.16.44","@abtnode/util":"1.16.44","@arcblock/did":"1.20.14","@arcblock/did-auth":"1.20.14","@arcblock/did-ext":"1.20.14","@arcblock/did-motif":"^1.1.13","@arcblock/did-util":"1.20.14","@arcblock/event-hub":"1.20.14","@arcblock/jwt":"1.20.14","@arcblock/pm2-events":"^0.0.5","@arcblock/validator":"1.20.14","@arcblock/vc":"1.20.14","@blocklet/constant":"1.16.44","@blocklet/did-space-js":"^1.0.60","@blocklet/env":"1.16.44","@blocklet/error":"^0.2.5","@blocklet/meta":"1.16.44","@blocklet/resolver":"1.16.44","@blocklet/sdk":"1.16.44","@blocklet/store":"1.16.44","@blocklet/theme":"^2.13.66","@fidm/x509":"^1.2.1","@ocap/mcrypto":"1.20.14","@ocap/util":"1.20.14","@ocap/wallet":"1.20.14","@slack/webhook":"^5.0.4","archiver":"^7.0.1","axios":"^1.7.9","axon":"^2.0.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","dayjs":"^1.11.13","deep-diff":"^1.0.2","detect-port":"^1.5.1","envfile":"^7.1.0","escape-string-regexp":"^4.0.0","fast-glob":"^3.3.2","filesize":"^10.1.1","flat":"^5.0.2","fs-extra":"^11.2.0","get-port":"^5.1.1","hasha":"^5.2.2","is-base64":"^1.1.0","is-cidr":"4","is-ip":"3","is-url":"^1.2.4","joi":"17.12.2","joi-extension-semver":"^5.0.0","js-yaml":"^4.1.0","kill-port":"^2.0.1","lodash":"^4.17.21","node-stream-zip":"^1.15.0","p-all":"^3.0.0","p-limit":"^3.1.0","p-map":"^4.0.0","p-retry":"^4.6.2","p-wait-for":"^3.2.0","rate-limiter-flexible":"^5.0.5","read-last-lines":"^1.8.0","semver":"^7.6.3","sequelize":"^6.35.0","shelljs":"^0.8.5","slugify":"^1.6.6","ssri":"^8.0.1","stream-throttle":"^0.1.3","stream-to-promise":"^3.0.0","systeminformation":"^5.23.3","tail":"^2.2.4","tar":"^6.1.11","transliteration":"^2.3.5","ua-parser-js":"^1.0.2","ufo":"^1.5.3","uuid":"^9.0.1","valid-url":"^1.0.9","which":"^2.0.2","xbytes":"^1.8.0"},"devDependencies":{"expand-tilde":"^2.0.2","express":"^4.18.2","jest":"^29.7.0","unzipper":"^0.10.11"},"gitHead":"e5764f753181ed6a7c615cd4fc6682aacf0cb7cd"}');
|
|
38892
38892
|
|
|
38893
38893
|
/***/ }),
|
|
38894
38894
|
|
package/lib/index.js
CHANGED
|
@@ -287,7 +287,6 @@ function ABTNode(options) {
|
|
|
287
287
|
const webhookAPI = new WebhookAPI({ states, teamManager });
|
|
288
288
|
|
|
289
289
|
const {
|
|
290
|
-
updateBlockletWafSettings,
|
|
291
290
|
handleBlockletWafChange,
|
|
292
291
|
handleRouting,
|
|
293
292
|
resetSiteByDid,
|
|
@@ -454,8 +453,6 @@ function ABTNode(options) {
|
|
|
454
453
|
// check update
|
|
455
454
|
updateAutoCheckUpdate: blockletManager.updateAutoCheckUpdate.bind(blockletManager),
|
|
456
455
|
|
|
457
|
-
updateInviteSettings: blockletManager.updateInviteSettings.bind(blockletManager),
|
|
458
|
-
|
|
459
456
|
// Store
|
|
460
457
|
getBlockletMeta: StoreUtil.getBlockletMeta,
|
|
461
458
|
getStoreMeta: StoreUtil.getStoreMeta,
|
|
@@ -777,7 +774,7 @@ function ABTNode(options) {
|
|
|
777
774
|
createOAuthClient: teamAPI.createOAuthClient.bind(teamAPI),
|
|
778
775
|
updateOAuthClient: teamAPI.updateOAuthClient.bind(teamAPI),
|
|
779
776
|
|
|
780
|
-
|
|
777
|
+
updateBlockletSettings: blockletManager.updateBlockletSettings.bind(blockletManager),
|
|
781
778
|
};
|
|
782
779
|
|
|
783
780
|
blockletManager.createAuditLog = (params) => states.auditLog.create(params, instance);
|
package/lib/router/helper.js
CHANGED
|
@@ -1894,13 +1894,6 @@ module.exports = function getRouterHelpers({
|
|
|
1894
1894
|
return uniq([...blacklist]);
|
|
1895
1895
|
};
|
|
1896
1896
|
|
|
1897
|
-
const updateBlockletWafSettings = async ({ teamDid, wafPolicy }) => {
|
|
1898
|
-
await states.blockletExtras.setSettings(teamDid, { gateway: { wafPolicy } });
|
|
1899
|
-
|
|
1900
|
-
const doc = await nodeState.read();
|
|
1901
|
-
nodeState.emit(EVENTS.RELOAD_GATEWAY, doc);
|
|
1902
|
-
};
|
|
1903
|
-
|
|
1904
1897
|
const handleBlockletWafChange = async ({ teamDid, wafPolicy }) => {
|
|
1905
1898
|
const blocklet = await blockletManager.detail({ did: teamDid });
|
|
1906
1899
|
if (!blocklet) {
|
|
@@ -1925,7 +1918,6 @@ module.exports = function getRouterHelpers({
|
|
|
1925
1918
|
};
|
|
1926
1919
|
|
|
1927
1920
|
return {
|
|
1928
|
-
updateBlockletWafSettings,
|
|
1929
1921
|
handleBlockletWafChange,
|
|
1930
1922
|
ensureDashboardRouting,
|
|
1931
1923
|
ensureBlockletRouting,
|
package/lib/states/audit-log.js
CHANGED
|
@@ -536,8 +536,20 @@ const getLogContent = async (action, args, context, result, info, node) => {
|
|
|
536
536
|
case 'deleteOAuthClient':
|
|
537
537
|
return `Delete ${args.teamDid} OAuth Client:(${args.clientId})`;
|
|
538
538
|
|
|
539
|
-
case '
|
|
540
|
-
|
|
539
|
+
case 'updateBlockletSettings': {
|
|
540
|
+
const changes = [];
|
|
541
|
+
if (!isNil(args.enableSessionHardening)) {
|
|
542
|
+
changes.push(`* Session Hardening: ${args.enableSessionHardening}`);
|
|
543
|
+
}
|
|
544
|
+
if (!isNil(args.invite)) {
|
|
545
|
+
changes.push(`* Invite: ${JSON.stringify(args.invite)}`);
|
|
546
|
+
}
|
|
547
|
+
if (!isNil(args.gateway)) {
|
|
548
|
+
changes.push(`* Gateway: ${JSON.stringify(args.gateway)}`);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
return `Update Blocklet Extras Settings:(${args.did} to ${changes.join(', ')})`;
|
|
552
|
+
}
|
|
541
553
|
|
|
542
554
|
default:
|
|
543
555
|
return action;
|
|
@@ -586,7 +598,7 @@ const getLogCategory = (action) => {
|
|
|
586
598
|
case 'deleteOAuthClient':
|
|
587
599
|
case 'createOAuthClient':
|
|
588
600
|
case 'updateOAuthClient':
|
|
589
|
-
case '
|
|
601
|
+
case 'updateBlockletSettings':
|
|
590
602
|
return 'blocklet';
|
|
591
603
|
|
|
592
604
|
case 'addUploadEndpoint':
|
package/lib/states/node.js
CHANGED
package/lib/team/manager.js
CHANGED
|
@@ -105,9 +105,9 @@ class TeamManager extends EventEmitter {
|
|
|
105
105
|
this.init();
|
|
106
106
|
|
|
107
107
|
this.lock = new DBCache(() => ({
|
|
108
|
-
...getAbtNodeRedisAndSQLiteUrl(),
|
|
109
108
|
prefix: 'team-manager-locks',
|
|
110
109
|
ttl: 1000 * 30,
|
|
110
|
+
...getAbtNodeRedisAndSQLiteUrl(),
|
|
111
111
|
}));
|
|
112
112
|
}
|
|
113
113
|
|
package/lib/util/blocklet.js
CHANGED
|
@@ -147,9 +147,9 @@ const startLock = new DBCache(() => ({
|
|
|
147
147
|
}));
|
|
148
148
|
|
|
149
149
|
const blockletCache = new DBCache(() => ({
|
|
150
|
-
...getAbtNodeRedisAndSQLiteUrl(),
|
|
151
150
|
prefix: 'blocklet-state',
|
|
152
151
|
ttl: BLOCKLET_CACHE_TTL,
|
|
152
|
+
...getAbtNodeRedisAndSQLiteUrl(),
|
|
153
153
|
}));
|
|
154
154
|
|
|
155
155
|
const getVersionScope = (meta) => {
|
|
@@ -1655,7 +1655,6 @@ const getBlocklet = ({
|
|
|
1655
1655
|
|
|
1656
1656
|
if (useCache) {
|
|
1657
1657
|
cacheKey = JSON.stringify({
|
|
1658
|
-
did,
|
|
1659
1658
|
ensureIntegrity,
|
|
1660
1659
|
getOptionalComponents,
|
|
1661
1660
|
});
|
|
@@ -2322,7 +2321,7 @@ const getConfigsFromInput = (configs = [], oldConfigs = []) => {
|
|
|
2322
2321
|
|
|
2323
2322
|
configs.forEach((config) => {
|
|
2324
2323
|
const oldConfig = oldConfigs.find((y) => y.key === config.key);
|
|
2325
|
-
if (isEnvShareable(config) || isEnvShareable(oldConfig)) {
|
|
2324
|
+
if (!config.key.startsWith(BLOCKLET_PREFERENCE_PREFIX) && (isEnvShareable(config) || isEnvShareable(oldConfig))) {
|
|
2326
2325
|
sharedConfigs.push(config);
|
|
2327
2326
|
} else {
|
|
2328
2327
|
selfConfigs.push(config);
|
package/lib/util/check-dns.js
CHANGED
|
@@ -1,17 +1,10 @@
|
|
|
1
1
|
const dns = require('dns');
|
|
2
2
|
const { promisify } = require('util');
|
|
3
|
-
const { DBCache, getAbtNodeRedisAndSQLiteUrl } = require('@abtnode/db-cache');
|
|
4
3
|
const logger = require('@abtnode/logger')('checkDNS');
|
|
5
4
|
|
|
6
5
|
const resolveCname = promisify(dns.resolveCname);
|
|
7
6
|
const resolve = promisify(dns.resolve);
|
|
8
7
|
|
|
9
|
-
const cache = new DBCache(() => ({
|
|
10
|
-
...getAbtNodeRedisAndSQLiteUrl(),
|
|
11
|
-
prefix: 'check-dns',
|
|
12
|
-
ttl: 60 * 60 * 1000,
|
|
13
|
-
}));
|
|
14
|
-
|
|
15
8
|
async function checkDnsAndCname(domain, expectedCname = '') {
|
|
16
9
|
try {
|
|
17
10
|
await resolve(domain);
|
|
@@ -50,8 +43,4 @@ async function checkDnsAndCname(domain, expectedCname = '') {
|
|
|
50
43
|
}
|
|
51
44
|
}
|
|
52
45
|
|
|
53
|
-
|
|
54
|
-
return cache.autoCache(domain, () => checkDnsAndCname(domain, expectedCname));
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
module.exports = getDNSInfo;
|
|
46
|
+
module.exports = checkDnsAndCname;
|
|
@@ -11,9 +11,9 @@ const filterParentDirs = require('./filter-parent-dirs');
|
|
|
11
11
|
const { createDockerImage } = require('./create-docker-image');
|
|
12
12
|
|
|
13
13
|
const lockFile = new DBCache(() => ({
|
|
14
|
-
...getAbtNodeRedisAndSQLiteUrl(),
|
|
15
14
|
prefix: 'docker-exec-chown-locks',
|
|
16
15
|
ttl: 1000 * 60 * 2,
|
|
16
|
+
...getAbtNodeRedisAndSQLiteUrl(),
|
|
17
17
|
}));
|
|
18
18
|
|
|
19
19
|
async function dockerExecChown({ name, dirs, code = 777, force = false }) {
|
|
@@ -5,9 +5,9 @@ const { DBCache, getAbtNodeRedisAndSQLiteUrl } = require('@abtnode/db-cache');
|
|
|
5
5
|
const { checkDockerInstalled } = require('./check-docker-installed');
|
|
6
6
|
|
|
7
7
|
const lockNetwork = new DBCache(() => ({
|
|
8
|
-
...getAbtNodeRedisAndSQLiteUrl(),
|
|
9
8
|
prefix: 'docker-network-locks',
|
|
10
9
|
ttl: 1000 * 10,
|
|
10
|
+
...getAbtNodeRedisAndSQLiteUrl(),
|
|
11
11
|
}));
|
|
12
12
|
|
|
13
13
|
async function getDockerNetworks() {
|
|
@@ -2,9 +2,9 @@ const { DBCache, getAbtNodeRedisAndSQLiteUrl } = require('@abtnode/db-cache');
|
|
|
2
2
|
|
|
3
3
|
// 确保多进程只会有一个任务在执行
|
|
4
4
|
const reduceQueue = new DBCache(() => ({
|
|
5
|
-
...getAbtNodeRedisAndSQLiteUrl(),
|
|
6
5
|
prefix: 'reduce-queue',
|
|
7
6
|
ttl: 5 * 1000,
|
|
7
|
+
...getAbtNodeRedisAndSQLiteUrl(),
|
|
8
8
|
}));
|
|
9
9
|
|
|
10
10
|
module.exports = reduceQueue;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.45-beta-
|
|
6
|
+
"version": "1.16.45-beta-20250612-231219-481217be",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,22 +19,22 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/analytics": "1.16.45-beta-
|
|
23
|
-
"@abtnode/auth": "1.16.45-beta-
|
|
24
|
-
"@abtnode/certificate-manager": "1.16.45-beta-
|
|
25
|
-
"@abtnode/client": "1.16.45-beta-
|
|
26
|
-
"@abtnode/constant": "1.16.45-beta-
|
|
27
|
-
"@abtnode/cron": "1.16.45-beta-
|
|
28
|
-
"@abtnode/db-cache": "1.16.45-beta-
|
|
29
|
-
"@abtnode/docker-utils": "1.16.45-beta-
|
|
30
|
-
"@abtnode/logger": "1.16.45-beta-
|
|
31
|
-
"@abtnode/models": "1.16.45-beta-
|
|
32
|
-
"@abtnode/queue": "1.16.45-beta-
|
|
33
|
-
"@abtnode/rbac": "1.16.45-beta-
|
|
34
|
-
"@abtnode/router-provider": "1.16.45-beta-
|
|
35
|
-
"@abtnode/static-server": "1.16.45-beta-
|
|
36
|
-
"@abtnode/timemachine": "1.16.45-beta-
|
|
37
|
-
"@abtnode/util": "1.16.45-beta-
|
|
22
|
+
"@abtnode/analytics": "1.16.45-beta-20250612-231219-481217be",
|
|
23
|
+
"@abtnode/auth": "1.16.45-beta-20250612-231219-481217be",
|
|
24
|
+
"@abtnode/certificate-manager": "1.16.45-beta-20250612-231219-481217be",
|
|
25
|
+
"@abtnode/client": "1.16.45-beta-20250612-231219-481217be",
|
|
26
|
+
"@abtnode/constant": "1.16.45-beta-20250612-231219-481217be",
|
|
27
|
+
"@abtnode/cron": "1.16.45-beta-20250612-231219-481217be",
|
|
28
|
+
"@abtnode/db-cache": "1.16.45-beta-20250612-231219-481217be",
|
|
29
|
+
"@abtnode/docker-utils": "1.16.45-beta-20250612-231219-481217be",
|
|
30
|
+
"@abtnode/logger": "1.16.45-beta-20250612-231219-481217be",
|
|
31
|
+
"@abtnode/models": "1.16.45-beta-20250612-231219-481217be",
|
|
32
|
+
"@abtnode/queue": "1.16.45-beta-20250612-231219-481217be",
|
|
33
|
+
"@abtnode/rbac": "1.16.45-beta-20250612-231219-481217be",
|
|
34
|
+
"@abtnode/router-provider": "1.16.45-beta-20250612-231219-481217be",
|
|
35
|
+
"@abtnode/static-server": "1.16.45-beta-20250612-231219-481217be",
|
|
36
|
+
"@abtnode/timemachine": "1.16.45-beta-20250612-231219-481217be",
|
|
37
|
+
"@abtnode/util": "1.16.45-beta-20250612-231219-481217be",
|
|
38
38
|
"@arcblock/did": "1.20.14",
|
|
39
39
|
"@arcblock/did-auth": "1.20.14",
|
|
40
40
|
"@arcblock/did-ext": "1.20.14",
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"@arcblock/pm2-events": "^0.0.5",
|
|
46
46
|
"@arcblock/validator": "1.20.14",
|
|
47
47
|
"@arcblock/vc": "1.20.14",
|
|
48
|
-
"@blocklet/constant": "1.16.45-beta-
|
|
49
|
-
"@blocklet/did-space-js": "^1.0.
|
|
50
|
-
"@blocklet/env": "1.16.45-beta-
|
|
48
|
+
"@blocklet/constant": "1.16.45-beta-20250612-231219-481217be",
|
|
49
|
+
"@blocklet/did-space-js": "^1.0.60",
|
|
50
|
+
"@blocklet/env": "1.16.45-beta-20250612-231219-481217be",
|
|
51
51
|
"@blocklet/error": "^0.2.5",
|
|
52
|
-
"@blocklet/meta": "1.16.45-beta-
|
|
53
|
-
"@blocklet/resolver": "1.16.45-beta-
|
|
54
|
-
"@blocklet/sdk": "1.16.45-beta-
|
|
55
|
-
"@blocklet/store": "1.16.45-beta-
|
|
56
|
-
"@blocklet/theme": "^2.13.
|
|
52
|
+
"@blocklet/meta": "1.16.45-beta-20250612-231219-481217be",
|
|
53
|
+
"@blocklet/resolver": "1.16.45-beta-20250612-231219-481217be",
|
|
54
|
+
"@blocklet/sdk": "1.16.45-beta-20250612-231219-481217be",
|
|
55
|
+
"@blocklet/store": "1.16.45-beta-20250612-231219-481217be",
|
|
56
|
+
"@blocklet/theme": "^2.13.66",
|
|
57
57
|
"@fidm/x509": "^1.2.1",
|
|
58
58
|
"@ocap/mcrypto": "1.20.14",
|
|
59
59
|
"@ocap/util": "1.20.14",
|
|
@@ -116,5 +116,5 @@
|
|
|
116
116
|
"jest": "^29.7.0",
|
|
117
117
|
"unzipper": "^0.10.11"
|
|
118
118
|
},
|
|
119
|
-
"gitHead": "
|
|
119
|
+
"gitHead": "01a3fb21f16a515e2565d12797baeda5fdf585b0"
|
|
120
120
|
}
|