@abtnode/blocklet-services 1.16.19 → 1.16.20-beta-cf6dfce1
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/api/libs/connect/shared.js +50 -21
- package/api/libs/connect/v1.js +2 -1
- package/api/routes/user.js +7 -3
- package/build/asset-manifest.json +25 -25
- package/build/index.html +1 -1
- package/build/service-worker.js +1 -1
- package/build/static/js/356.0210d3f8.chunk.js +2 -0
- package/build/static/js/{3979.f9a5aa48.chunk.js → 3979.2e0c92ff.chunk.js} +3 -3
- package/build/static/js/{4461.e1e5cd09.chunk.js → 4461.a64e7486.chunk.js} +2 -2
- package/build/static/js/5070.be5019aa.chunk.js +2 -0
- package/build/static/js/5403.56417480.chunk.js +3 -0
- package/build/static/js/5547.7468ef6a.chunk.js +3 -0
- package/build/static/js/{5683.b87f7ca2.chunk.js → 5683.cb2ab151.chunk.js} +2 -2
- package/build/static/js/6733.80a6ecbd.chunk.js +2 -0
- package/build/static/js/{6771.920fa5b6.chunk.js → 6771.c9706b0b.chunk.js} +3 -3
- package/build/static/js/7006.9a659b1f.chunk.js +2 -0
- package/build/static/js/{8944.f4f91564.chunk.js → 8944.6d336f28.chunk.js} +2 -2
- package/build/static/js/main.606a579e.js +3 -0
- package/build/static/js/{main.cca60152.js.LICENSE.txt → main.606a579e.js.LICENSE.txt} +1 -1
- package/package.json +34 -34
- package/build/static/js/356.df75c406.chunk.js +0 -2
- package/build/static/js/5047.2f665ae5.chunk.js +0 -2
- package/build/static/js/5070.5979037b.chunk.js +0 -2
- package/build/static/js/5403.1ee6610b.chunk.js +0 -3
- package/build/static/js/5547.2b981673.chunk.js +0 -3
- package/build/static/js/7006.bb90b167.chunk.js +0 -2
- package/build/static/js/main.cca60152.js +0 -3
- /package/build/static/js/{3979.f9a5aa48.chunk.js.LICENSE.txt → 3979.2e0c92ff.chunk.js.LICENSE.txt} +0 -0
- /package/build/static/js/{5403.1ee6610b.chunk.js.LICENSE.txt → 5403.56417480.chunk.js.LICENSE.txt} +0 -0
- /package/build/static/js/{5547.2b981673.chunk.js.LICENSE.txt → 5547.7468ef6a.chunk.js.LICENSE.txt} +0 -0
- /package/build/static/js/{6771.920fa5b6.chunk.js.LICENSE.txt → 6771.c9706b0b.chunk.js.LICENSE.txt} +0 -0
|
@@ -4,7 +4,7 @@ const { getConnectAppUrl, getChainInfo } = require('@blocklet/meta/lib/util');
|
|
|
4
4
|
const { WELLKNOWN_SERVICE_PATH_PREFIX } = require('@abtnode/constant');
|
|
5
5
|
const { getSourceAppPid } = require('@blocklet/sdk/lib/util/login');
|
|
6
6
|
|
|
7
|
-
function getFederatedMasterAppInfo({ blocklet, sourceAppPid,
|
|
7
|
+
function getFederatedMasterAppInfo({ blocklet, sourceAppPid, version, groupPathPrefix, nodeInfo }) {
|
|
8
8
|
const { federated } = blocklet.settings;
|
|
9
9
|
const master = federated.sites.find((x) => x.appPid === sourceAppPid);
|
|
10
10
|
// 对于 ux 来说,要展示的始终是 pid,所以这个给 agentDid 的赋值也需要是 pid
|
|
@@ -15,35 +15,57 @@ function getFederatedMasterAppInfo({ blocklet, sourceAppPid, baseUrl, version, r
|
|
|
15
15
|
name: master.appName,
|
|
16
16
|
description: master.appescription || `Connect to ${master.appName}`,
|
|
17
17
|
icon: joinUrl(master.appUrl, WELLKNOWN_SERVICE_PATH_PREFIX, `/blocklet/logo?v=${version}`),
|
|
18
|
-
link:
|
|
18
|
+
link: master.appUrl,
|
|
19
19
|
updateSubEndpoint: true,
|
|
20
20
|
subscriptionEndpoint: joinUrl(groupPathPrefix, WELLKNOWN_SERVICE_PATH_PREFIX, 'websocket'),
|
|
21
21
|
nodeDid: nodeInfo.did,
|
|
22
|
+
// @deprecated agentDid 已经被 memberAppInfo 代替,在将来将被移除
|
|
23
|
+
// FIXME: @zhanghan 请于 2024-01-01 删除
|
|
22
24
|
agentDid,
|
|
23
25
|
};
|
|
24
26
|
}
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const groupPathPrefix = request.headers['x-group-path-prefix'] || '/';
|
|
28
|
+
const getAppInfo = async ({ request, baseUrl }) => {
|
|
29
|
+
const groupPathPrefix = request.headers['x-group-path-prefix'] || '/';
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
const [blocklet, info] = await Promise.all([request.getBlocklet(), request.getNodeInfo()]);
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+
const sourceAppPid = getSourceAppPid(request);
|
|
33
34
|
|
|
34
|
-
|
|
35
|
+
const version = get(blocklet, 'meta.version', '');
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
37
|
+
if (sourceAppPid) {
|
|
38
|
+
return getFederatedMasterAppInfo({
|
|
39
|
+
blocklet,
|
|
40
|
+
sourceAppPid,
|
|
41
|
+
version,
|
|
42
|
+
groupPathPrefix,
|
|
43
|
+
nodeInfo: info,
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
const meta = await request.getBlockletInfo();
|
|
47
|
+
return {
|
|
48
|
+
name: meta.name,
|
|
49
|
+
description: meta.description || `Connect to ${meta.name}`,
|
|
50
|
+
icon: joinUrl(baseUrl, WELLKNOWN_SERVICE_PATH_PREFIX, `/blocklet/logo?v=${version}`),
|
|
51
|
+
link: getConnectAppUrl({ request, baseUrl }),
|
|
52
|
+
updateSubEndpoint: true,
|
|
53
|
+
subscriptionEndpoint: joinUrl(groupPathPrefix, WELLKNOWN_SERVICE_PATH_PREFIX, 'websocket'),
|
|
54
|
+
nodeDid: info.did,
|
|
55
|
+
// NOTE: publisher 是 WalletAuthenticator 中自动添加的
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
const getMemberAppInfo = async ({ request, baseUrl }) => {
|
|
60
|
+
const groupPathPrefix = request.headers['x-group-path-prefix'] || '/';
|
|
61
|
+
|
|
62
|
+
const [blocklet, info] = await Promise.all([request.getBlocklet(), request.getNodeInfo()]);
|
|
63
|
+
|
|
64
|
+
const sourceAppPid = getSourceAppPid(request);
|
|
65
|
+
|
|
66
|
+
const version = get(blocklet, 'meta.version', '');
|
|
67
|
+
|
|
68
|
+
if (sourceAppPid) {
|
|
47
69
|
const meta = await request.getBlockletInfo();
|
|
48
70
|
return {
|
|
49
71
|
name: meta.name,
|
|
@@ -53,9 +75,16 @@ module.exports = {
|
|
|
53
75
|
updateSubEndpoint: true,
|
|
54
76
|
subscriptionEndpoint: joinUrl(groupPathPrefix, WELLKNOWN_SERVICE_PATH_PREFIX, 'websocket'),
|
|
55
77
|
nodeDid: info.did,
|
|
56
|
-
//
|
|
78
|
+
// NOTICE: member appInfo 的 publisher 不是 delegator,所以需要手动指定
|
|
79
|
+
publisher: `did:abt:${blocklet.appPid}`,
|
|
57
80
|
};
|
|
58
|
-
}
|
|
81
|
+
}
|
|
82
|
+
return null;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
module.exports = {
|
|
86
|
+
appInfo: getAppInfo,
|
|
87
|
+
memberAppInfo: getMemberAppInfo,
|
|
59
88
|
|
|
60
89
|
chainInfo: async ({ request } = {}) => {
|
|
61
90
|
if (!request || !request.getBlocklet) {
|
package/api/libs/connect/v1.js
CHANGED
|
@@ -13,11 +13,12 @@ const { fromPublicKey } = require('@ocap/wallet');
|
|
|
13
13
|
const { getSourceAppPid } = require('@blocklet/sdk/lib/util/login');
|
|
14
14
|
|
|
15
15
|
const cache = require('../../cache');
|
|
16
|
-
const { appInfo, chainInfo } = require('./shared');
|
|
16
|
+
const { appInfo, memberAppInfo, chainInfo } = require('./shared');
|
|
17
17
|
|
|
18
18
|
module.exports = (node, opts) => {
|
|
19
19
|
const authenticator = new WalletAuthenticator({
|
|
20
20
|
appInfo,
|
|
21
|
+
memberAppInfo,
|
|
21
22
|
chainInfo,
|
|
22
23
|
wallet: async ({ request }) => {
|
|
23
24
|
const { wallet } = await request.getBlockletInfo();
|
package/api/routes/user.js
CHANGED
|
@@ -10,6 +10,7 @@ const { LOGIN_PROVIDER } = require('@blocklet/constant');
|
|
|
10
10
|
const sortBy = require('lodash/sortBy');
|
|
11
11
|
const head = require('lodash/head');
|
|
12
12
|
const { verify } = require('@arcblock/jwt');
|
|
13
|
+
const { getWallet } = require('@blocklet/meta/lib/did-utils');
|
|
13
14
|
|
|
14
15
|
const { isInvitedUserOnly, createTokenFn, getDidConnectVersion } = require('../util');
|
|
15
16
|
const initJwt = require('../libs/jwt');
|
|
@@ -327,7 +328,10 @@ async function verifyUserSig({ userDid, signature, teamDid, sourceAppPid, userPk
|
|
|
327
328
|
ensureUserExist(currentUser, { locale });
|
|
328
329
|
ensureUserEnable(currentUser, { locale });
|
|
329
330
|
|
|
330
|
-
const
|
|
331
|
+
const userDidWallet = getWallet(currentUser);
|
|
332
|
+
|
|
333
|
+
// HACK: @zhanghan 钱包传递的签名使用的是 didWallet 账户,但这个账户可能是 原生的 oauth 账户,所以需要找到对应的 did-wallet 账户
|
|
334
|
+
const valid = verify(signature, userDidWallet.pk);
|
|
331
335
|
if (!valid) {
|
|
332
336
|
throw new Error('invalid signature');
|
|
333
337
|
}
|
|
@@ -428,8 +432,8 @@ module.exports = {
|
|
|
428
432
|
sourceAppPid,
|
|
429
433
|
connectedAccount: {
|
|
430
434
|
provider: LOGIN_PROVIDER.WALLET,
|
|
431
|
-
did:
|
|
432
|
-
pk:
|
|
435
|
+
did: userDid,
|
|
436
|
+
pk: userPk,
|
|
433
437
|
},
|
|
434
438
|
},
|
|
435
439
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "/.well-known/service/static/static/css/main.7ea79dc8.css",
|
|
4
|
-
"main.js": "/.well-known/service/static/static/js/main.
|
|
4
|
+
"main.js": "/.well-known/service/static/static/js/main.606a579e.js",
|
|
5
5
|
"static/js/6218.4f3036a7.chunk.js": "/.well-known/service/static/static/js/6218.4f3036a7.chunk.js",
|
|
6
6
|
"static/js/4076.8055ce74.chunk.js": "/.well-known/service/static/static/js/4076.8055ce74.chunk.js",
|
|
7
7
|
"static/js/6658.98f9956d.chunk.js": "/.well-known/service/static/static/js/6658.98f9956d.chunk.js",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"static/js/779.cbad02fa.chunk.js": "/.well-known/service/static/static/js/779.cbad02fa.chunk.js",
|
|
12
12
|
"static/js/8622.03f917b3.chunk.js": "/.well-known/service/static/static/js/8622.03f917b3.chunk.js",
|
|
13
13
|
"static/js/1148.d3c53aea.chunk.js": "/.well-known/service/static/static/js/1148.d3c53aea.chunk.js",
|
|
14
|
-
"static/js/8944.
|
|
14
|
+
"static/js/8944.6d336f28.chunk.js": "/.well-known/service/static/static/js/8944.6d336f28.chunk.js",
|
|
15
15
|
"static/js/5468.21a861b9.chunk.js": "/.well-known/service/static/static/js/5468.21a861b9.chunk.js",
|
|
16
16
|
"static/js/9982.4f1ebb7f.chunk.js": "/.well-known/service/static/static/js/9982.4f1ebb7f.chunk.js",
|
|
17
17
|
"static/js/1359.add26d23.chunk.js": "/.well-known/service/static/static/js/1359.add26d23.chunk.js",
|
|
18
18
|
"static/js/6637.b2e35031.chunk.js": "/.well-known/service/static/static/js/6637.b2e35031.chunk.js",
|
|
19
19
|
"static/js/717.ec2ba6d0.chunk.js": "/.well-known/service/static/static/js/717.ec2ba6d0.chunk.js",
|
|
20
|
-
"static/js/
|
|
20
|
+
"static/js/6733.80a6ecbd.chunk.js": "/.well-known/service/static/static/js/6733.80a6ecbd.chunk.js",
|
|
21
21
|
"static/js/4882.0435e418.chunk.js": "/.well-known/service/static/static/js/4882.0435e418.chunk.js",
|
|
22
22
|
"static/js/5434.523d071d.chunk.js": "/.well-known/service/static/static/js/5434.523d071d.chunk.js",
|
|
23
23
|
"static/js/3033.f950a32b.chunk.js": "/.well-known/service/static/static/js/3033.f950a32b.chunk.js",
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
"static/js/3593.b9a1a7f5.chunk.js": "/.well-known/service/static/static/js/3593.b9a1a7f5.chunk.js",
|
|
33
33
|
"static/css/4802.bf353f58.chunk.css": "/.well-known/service/static/static/css/4802.bf353f58.chunk.css",
|
|
34
34
|
"static/js/4802.217e3956.chunk.js": "/.well-known/service/static/static/js/4802.217e3956.chunk.js",
|
|
35
|
-
"static/js/6771.
|
|
35
|
+
"static/js/6771.c9706b0b.chunk.js": "/.well-known/service/static/static/js/6771.c9706b0b.chunk.js",
|
|
36
36
|
"static/css/5982.ac464505.chunk.css": "/.well-known/service/static/static/css/5982.ac464505.chunk.css",
|
|
37
37
|
"static/js/5982.7fb6982b.chunk.js": "/.well-known/service/static/static/js/5982.7fb6982b.chunk.js",
|
|
38
|
-
"static/js/356.
|
|
38
|
+
"static/js/356.0210d3f8.chunk.js": "/.well-known/service/static/static/js/356.0210d3f8.chunk.js",
|
|
39
39
|
"static/js/4023.8c5c7db4.chunk.js": "/.well-known/service/static/static/js/4023.8c5c7db4.chunk.js",
|
|
40
40
|
"static/js/8792.13a6919f.chunk.js": "/.well-known/service/static/static/js/8792.13a6919f.chunk.js",
|
|
41
41
|
"static/js/1946.b8762af5.chunk.js": "/.well-known/service/static/static/js/1946.b8762af5.chunk.js",
|
|
42
42
|
"static/js/5569.e4bfe697.chunk.js": "/.well-known/service/static/static/js/5569.e4bfe697.chunk.js",
|
|
43
43
|
"static/css/5547.75913953.chunk.css": "/.well-known/service/static/static/css/5547.75913953.chunk.css",
|
|
44
|
-
"static/js/5547.
|
|
45
|
-
"static/js/4461.
|
|
44
|
+
"static/js/5547.7468ef6a.chunk.js": "/.well-known/service/static/static/js/5547.7468ef6a.chunk.js",
|
|
45
|
+
"static/js/4461.a64e7486.chunk.js": "/.well-known/service/static/static/js/4461.a64e7486.chunk.js",
|
|
46
46
|
"static/js/5509.a196d497.chunk.js": "/.well-known/service/static/static/js/5509.a196d497.chunk.js",
|
|
47
|
-
"static/js/5683.
|
|
48
|
-
"static/js/7006.
|
|
47
|
+
"static/js/5683.cb2ab151.chunk.js": "/.well-known/service/static/static/js/5683.cb2ab151.chunk.js",
|
|
48
|
+
"static/js/7006.9a659b1f.chunk.js": "/.well-known/service/static/static/js/7006.9a659b1f.chunk.js",
|
|
49
49
|
"static/js/3994.e53e7ce2.chunk.js": "/.well-known/service/static/static/js/3994.e53e7ce2.chunk.js",
|
|
50
50
|
"static/js/655.cdee65b4.chunk.js": "/.well-known/service/static/static/js/655.cdee65b4.chunk.js",
|
|
51
51
|
"static/js/9582.2c539fcf.chunk.js": "/.well-known/service/static/static/js/9582.2c539fcf.chunk.js",
|
|
@@ -71,14 +71,14 @@
|
|
|
71
71
|
"static/css/424.13cf051c.chunk.css": "/.well-known/service/static/static/css/424.13cf051c.chunk.css",
|
|
72
72
|
"static/js/424.d91b48b7.chunk.js": "/.well-known/service/static/static/js/424.d91b48b7.chunk.js",
|
|
73
73
|
"static/js/4009.65d1c083.chunk.js": "/.well-known/service/static/static/js/4009.65d1c083.chunk.js",
|
|
74
|
-
"static/js/5070.
|
|
74
|
+
"static/js/5070.be5019aa.chunk.js": "/.well-known/service/static/static/js/5070.be5019aa.chunk.js",
|
|
75
75
|
"static/js/1249.ce085f29.chunk.js": "/.well-known/service/static/static/js/1249.ce085f29.chunk.js",
|
|
76
76
|
"static/js/9529.c7112fae.chunk.js": "/.well-known/service/static/static/js/9529.c7112fae.chunk.js",
|
|
77
77
|
"static/js/2664.da443f31.chunk.js": "/.well-known/service/static/static/js/2664.da443f31.chunk.js",
|
|
78
78
|
"static/js/5820.c40d570f.chunk.js": "/.well-known/service/static/static/js/5820.c40d570f.chunk.js",
|
|
79
79
|
"static/js/4917.6e72ef28.chunk.js": "/.well-known/service/static/static/js/4917.6e72ef28.chunk.js",
|
|
80
|
-
"static/js/3979.
|
|
81
|
-
"static/js/5403.
|
|
80
|
+
"static/js/3979.2e0c92ff.chunk.js": "/.well-known/service/static/static/js/3979.2e0c92ff.chunk.js",
|
|
81
|
+
"static/js/5403.56417480.chunk.js": "/.well-known/service/static/static/js/5403.56417480.chunk.js",
|
|
82
82
|
"static/js/7832.81aaf011.chunk.js": "/.well-known/service/static/static/js/7832.81aaf011.chunk.js",
|
|
83
83
|
"static/js/716.8cd88d8c.chunk.js": "/.well-known/service/static/static/js/716.8cd88d8c.chunk.js",
|
|
84
84
|
"static/js/7973.7d559f93.chunk.js": "/.well-known/service/static/static/js/7973.7d559f93.chunk.js",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"index.html": "/.well-known/service/static/index.html",
|
|
122
122
|
"static/media/space-connected.svg": "/.well-known/service/static/static/media/space-connected.9a4e18fd2bc7d065191b0d241a131c28.svg",
|
|
123
123
|
"main.7ea79dc8.css.map": "/.well-known/service/static/static/css/main.7ea79dc8.css.map",
|
|
124
|
-
"main.
|
|
124
|
+
"main.606a579e.js.map": "/.well-known/service/static/static/js/main.606a579e.js.map",
|
|
125
125
|
"6218.4f3036a7.chunk.js.map": "/.well-known/service/static/static/js/6218.4f3036a7.chunk.js.map",
|
|
126
126
|
"4076.8055ce74.chunk.js.map": "/.well-known/service/static/static/js/4076.8055ce74.chunk.js.map",
|
|
127
127
|
"6658.98f9956d.chunk.js.map": "/.well-known/service/static/static/js/6658.98f9956d.chunk.js.map",
|
|
@@ -131,13 +131,13 @@
|
|
|
131
131
|
"779.cbad02fa.chunk.js.map": "/.well-known/service/static/static/js/779.cbad02fa.chunk.js.map",
|
|
132
132
|
"8622.03f917b3.chunk.js.map": "/.well-known/service/static/static/js/8622.03f917b3.chunk.js.map",
|
|
133
133
|
"1148.d3c53aea.chunk.js.map": "/.well-known/service/static/static/js/1148.d3c53aea.chunk.js.map",
|
|
134
|
-
"8944.
|
|
134
|
+
"8944.6d336f28.chunk.js.map": "/.well-known/service/static/static/js/8944.6d336f28.chunk.js.map",
|
|
135
135
|
"5468.21a861b9.chunk.js.map": "/.well-known/service/static/static/js/5468.21a861b9.chunk.js.map",
|
|
136
136
|
"9982.4f1ebb7f.chunk.js.map": "/.well-known/service/static/static/js/9982.4f1ebb7f.chunk.js.map",
|
|
137
137
|
"1359.add26d23.chunk.js.map": "/.well-known/service/static/static/js/1359.add26d23.chunk.js.map",
|
|
138
138
|
"6637.b2e35031.chunk.js.map": "/.well-known/service/static/static/js/6637.b2e35031.chunk.js.map",
|
|
139
139
|
"717.ec2ba6d0.chunk.js.map": "/.well-known/service/static/static/js/717.ec2ba6d0.chunk.js.map",
|
|
140
|
-
"
|
|
140
|
+
"6733.80a6ecbd.chunk.js.map": "/.well-known/service/static/static/js/6733.80a6ecbd.chunk.js.map",
|
|
141
141
|
"4882.0435e418.chunk.js.map": "/.well-known/service/static/static/js/4882.0435e418.chunk.js.map",
|
|
142
142
|
"5434.523d071d.chunk.js.map": "/.well-known/service/static/static/js/5434.523d071d.chunk.js.map",
|
|
143
143
|
"3033.f950a32b.chunk.js.map": "/.well-known/service/static/static/js/3033.f950a32b.chunk.js.map",
|
|
@@ -152,20 +152,20 @@
|
|
|
152
152
|
"3593.b9a1a7f5.chunk.js.map": "/.well-known/service/static/static/js/3593.b9a1a7f5.chunk.js.map",
|
|
153
153
|
"4802.bf353f58.chunk.css.map": "/.well-known/service/static/static/css/4802.bf353f58.chunk.css.map",
|
|
154
154
|
"4802.217e3956.chunk.js.map": "/.well-known/service/static/static/js/4802.217e3956.chunk.js.map",
|
|
155
|
-
"6771.
|
|
155
|
+
"6771.c9706b0b.chunk.js.map": "/.well-known/service/static/static/js/6771.c9706b0b.chunk.js.map",
|
|
156
156
|
"5982.ac464505.chunk.css.map": "/.well-known/service/static/static/css/5982.ac464505.chunk.css.map",
|
|
157
157
|
"5982.7fb6982b.chunk.js.map": "/.well-known/service/static/static/js/5982.7fb6982b.chunk.js.map",
|
|
158
|
-
"356.
|
|
158
|
+
"356.0210d3f8.chunk.js.map": "/.well-known/service/static/static/js/356.0210d3f8.chunk.js.map",
|
|
159
159
|
"4023.8c5c7db4.chunk.js.map": "/.well-known/service/static/static/js/4023.8c5c7db4.chunk.js.map",
|
|
160
160
|
"8792.13a6919f.chunk.js.map": "/.well-known/service/static/static/js/8792.13a6919f.chunk.js.map",
|
|
161
161
|
"1946.b8762af5.chunk.js.map": "/.well-known/service/static/static/js/1946.b8762af5.chunk.js.map",
|
|
162
162
|
"5569.e4bfe697.chunk.js.map": "/.well-known/service/static/static/js/5569.e4bfe697.chunk.js.map",
|
|
163
163
|
"5547.75913953.chunk.css.map": "/.well-known/service/static/static/css/5547.75913953.chunk.css.map",
|
|
164
|
-
"5547.
|
|
165
|
-
"4461.
|
|
164
|
+
"5547.7468ef6a.chunk.js.map": "/.well-known/service/static/static/js/5547.7468ef6a.chunk.js.map",
|
|
165
|
+
"4461.a64e7486.chunk.js.map": "/.well-known/service/static/static/js/4461.a64e7486.chunk.js.map",
|
|
166
166
|
"5509.a196d497.chunk.js.map": "/.well-known/service/static/static/js/5509.a196d497.chunk.js.map",
|
|
167
|
-
"5683.
|
|
168
|
-
"7006.
|
|
167
|
+
"5683.cb2ab151.chunk.js.map": "/.well-known/service/static/static/js/5683.cb2ab151.chunk.js.map",
|
|
168
|
+
"7006.9a659b1f.chunk.js.map": "/.well-known/service/static/static/js/7006.9a659b1f.chunk.js.map",
|
|
169
169
|
"3994.e53e7ce2.chunk.js.map": "/.well-known/service/static/static/js/3994.e53e7ce2.chunk.js.map",
|
|
170
170
|
"655.cdee65b4.chunk.js.map": "/.well-known/service/static/static/js/655.cdee65b4.chunk.js.map",
|
|
171
171
|
"9582.2c539fcf.chunk.js.map": "/.well-known/service/static/static/js/9582.2c539fcf.chunk.js.map",
|
|
@@ -191,14 +191,14 @@
|
|
|
191
191
|
"424.13cf051c.chunk.css.map": "/.well-known/service/static/static/css/424.13cf051c.chunk.css.map",
|
|
192
192
|
"424.d91b48b7.chunk.js.map": "/.well-known/service/static/static/js/424.d91b48b7.chunk.js.map",
|
|
193
193
|
"4009.65d1c083.chunk.js.map": "/.well-known/service/static/static/js/4009.65d1c083.chunk.js.map",
|
|
194
|
-
"5070.
|
|
194
|
+
"5070.be5019aa.chunk.js.map": "/.well-known/service/static/static/js/5070.be5019aa.chunk.js.map",
|
|
195
195
|
"1249.ce085f29.chunk.js.map": "/.well-known/service/static/static/js/1249.ce085f29.chunk.js.map",
|
|
196
196
|
"9529.c7112fae.chunk.js.map": "/.well-known/service/static/static/js/9529.c7112fae.chunk.js.map",
|
|
197
197
|
"2664.da443f31.chunk.js.map": "/.well-known/service/static/static/js/2664.da443f31.chunk.js.map",
|
|
198
198
|
"5820.c40d570f.chunk.js.map": "/.well-known/service/static/static/js/5820.c40d570f.chunk.js.map",
|
|
199
199
|
"4917.6e72ef28.chunk.js.map": "/.well-known/service/static/static/js/4917.6e72ef28.chunk.js.map",
|
|
200
|
-
"3979.
|
|
201
|
-
"5403.
|
|
200
|
+
"3979.2e0c92ff.chunk.js.map": "/.well-known/service/static/static/js/3979.2e0c92ff.chunk.js.map",
|
|
201
|
+
"5403.56417480.chunk.js.map": "/.well-known/service/static/static/js/5403.56417480.chunk.js.map",
|
|
202
202
|
"7832.81aaf011.chunk.js.map": "/.well-known/service/static/static/js/7832.81aaf011.chunk.js.map",
|
|
203
203
|
"716.8cd88d8c.chunk.js.map": "/.well-known/service/static/static/js/716.8cd88d8c.chunk.js.map",
|
|
204
204
|
"7973.7d559f93.chunk.js.map": "/.well-known/service/static/static/js/7973.7d559f93.chunk.js.map",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"entrypoints": [
|
|
222
222
|
"static/css/main.7ea79dc8.css",
|
|
223
|
-
"static/js/main.
|
|
223
|
+
"static/js/main.606a579e.js"
|
|
224
224
|
]
|
|
225
225
|
}
|
package/build/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico?imageFilter=resize&w=32"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"/><meta name="theme-color" content="#000000"/><title>Blocklet Service</title><link rel="manifest" href="/.well-known/service/manifest.json"/><script src="/.well-known/service/api/env"></script><script src="/__blocklet__.js"></script><style>body{margin:0;padding:0}</style><script defer="defer" src="/.well-known/service/static/static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico?imageFilter=resize&w=32"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"/><meta name="theme-color" content="#000000"/><title>Blocklet Service</title><link rel="manifest" href="/.well-known/service/manifest.json"/><script src="/.well-known/service/api/env"></script><script src="/__blocklet__.js"></script><style>body{margin:0;padding:0}</style><script defer="defer" src="/.well-known/service/static/static/js/main.606a579e.js"></script><link href="/.well-known/service/static/static/css/main.7ea79dc8.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|