@blocklet/store 1.16.28-beta-641c9f13 → 1.16.28-beta-32519531
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/dist/index.cjs +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -147,9 +147,8 @@ async function createConnect({
|
|
|
147
147
|
timeout: fetchTimeout
|
|
148
148
|
});
|
|
149
149
|
const { url, token } = res.data;
|
|
150
|
-
const encodedUrl = encodeURIComponent(Buffer.from(url).toString("base64"));
|
|
151
150
|
const pageUrl = ufo.withQuery(ufo.joinURL(connectUrl, DID_CONNECT_URL), {
|
|
152
|
-
__connect_url__:
|
|
151
|
+
__connect_url__: Buffer.from(url).toString("base64")
|
|
153
152
|
});
|
|
154
153
|
openPage?.(pageUrl);
|
|
155
154
|
return await wrapSpinner(`Waiting for connection: ${connectUrl}`, async () => {
|
package/dist/index.mjs
CHANGED
|
@@ -131,9 +131,8 @@ async function createConnect({
|
|
|
131
131
|
timeout: fetchTimeout
|
|
132
132
|
});
|
|
133
133
|
const { url, token } = res.data;
|
|
134
|
-
const encodedUrl = encodeURIComponent(Buffer.from(url).toString("base64"));
|
|
135
134
|
const pageUrl = withQuery(joinURL(connectUrl, DID_CONNECT_URL), {
|
|
136
|
-
__connect_url__:
|
|
135
|
+
__connect_url__: Buffer.from(url).toString("base64")
|
|
137
136
|
});
|
|
138
137
|
openPage?.(pageUrl);
|
|
139
138
|
return await wrapSpinner(`Waiting for connection: ${connectUrl}`, async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/store",
|
|
3
|
-
"version": "1.16.28-beta-
|
|
3
|
+
"version": "1.16.28-beta-32519531",
|
|
4
4
|
"description": "Connect Store and upload blocklet to Store",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "ISC",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@abtnode/constant": "1.16.28-beta-
|
|
31
|
-
"@abtnode/util": "1.16.28-beta-
|
|
30
|
+
"@abtnode/constant": "1.16.28-beta-32519531",
|
|
31
|
+
"@abtnode/util": "1.16.28-beta-32519531",
|
|
32
32
|
"@arcblock/did": "1.18.123",
|
|
33
|
-
"@blocklet/constant": "1.16.28-beta-
|
|
34
|
-
"@blocklet/meta": "1.16.28-beta-
|
|
33
|
+
"@blocklet/constant": "1.16.28-beta-32519531",
|
|
34
|
+
"@blocklet/meta": "1.16.28-beta-32519531",
|
|
35
35
|
"@ocap/client": "^1.18.123",
|
|
36
36
|
"@ocap/util": "1.18.123",
|
|
37
37
|
"@ocap/wallet": "1.18.123",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"typescript": "^5.0.4",
|
|
60
60
|
"unbuild": "^2.0.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "db4586719871ff19d3a6db4baf0408ec121baafa"
|
|
63
63
|
}
|