@graphprotocol/hypergraph 0.6.2 → 0.6.3
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/cli/Cli.js +1 -1
- package/dist/cli/services/Typesync.d.ts +1 -1
- package/dist/connect/parse-auth-params.d.ts.map +1 -1
- package/dist/connect/parse-auth-params.js +1 -0
- package/dist/connect/parse-auth-params.js.map +1 -1
- package/dist/entity/entity.d.ts +4 -4
- package/dist/typesync-studio/dist/assets/authenticate-callback-CKVajO3w.js +1 -0
- package/dist/typesync-studio/dist/assets/ccip-DmgXwxAw.js +1 -0
- package/dist/typesync-studio/dist/assets/index-BY93eSrW.css +1 -0
- package/dist/typesync-studio/dist/assets/index-CrNCJiob.js +91 -0
- package/dist/typesync-studio/dist/assets/index-wHD9vHCV.js +215 -0
- package/dist/typesync-studio/dist/index.html +30 -0
- package/dist/typesync-studio/dist/manifest.json +20 -0
- package/dist/typesync-studio/dist/robots.txt +3 -0
- package/package.json +10 -10
- package/src/cli/Cli.ts +1 -1
- package/src/connect/parse-auth-params.ts +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html
|
|
3
|
+
lang="en"
|
|
4
|
+
class="h-full min-h-screen w-full p-0 m-0 dark:bg-slate-950 dark:text-white bg-white text-gray-950 font-mono"
|
|
5
|
+
>
|
|
6
|
+
<head>
|
|
7
|
+
<meta charset="UTF-8" />
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
9
|
+
<link
|
|
10
|
+
rel="icon"
|
|
11
|
+
type="image/png"
|
|
12
|
+
sizes="64x64"
|
|
13
|
+
href="https://storage.thegraph.com/favicons/64x64.png"
|
|
14
|
+
/>
|
|
15
|
+
<link
|
|
16
|
+
rel="icon"
|
|
17
|
+
type="image/png"
|
|
18
|
+
sizes="256x256"
|
|
19
|
+
href="https://storage.thegraph.com/favicons/256x256.png"
|
|
20
|
+
/>
|
|
21
|
+
<title>Graph Protocol | Hypergraph TypeSync</title>
|
|
22
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
23
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
24
|
+
<script type="module" crossorigin src="/assets/index-wHD9vHCV.js"></script>
|
|
25
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BY93eSrW.css">
|
|
26
|
+
</head>
|
|
27
|
+
<body class="h-full w-full">
|
|
28
|
+
<div id="root"></div>
|
|
29
|
+
</body>
|
|
30
|
+
</html>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"short_name": "Hypergraph Typesync Studio",
|
|
3
|
+
"name": "Graph Protocol Hypergraph Typesync Studio",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "https://storage.thegraph.com/favicons/64x64.png",
|
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
+
"type": "image/png"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "https://storage.thegraph.com/favicons/256x256.png",
|
|
12
|
+
"type": "image/png",
|
|
13
|
+
"sizes": "256x256"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"start_url": ".",
|
|
17
|
+
"display": "standalone",
|
|
18
|
+
"theme_color": "#000000",
|
|
19
|
+
"background_color": "#ffffff"
|
|
20
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphprotocol/hypergraph",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "SDK for building performant, type-safe, local-first dapps on top of The Graph ecosystem knowledge graphs.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,27 +34,27 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@automerge/automerge": "^3.1.1",
|
|
36
36
|
"@automerge/automerge-repo": "^2.2.0",
|
|
37
|
-
"@effect/cli": "^0.69.
|
|
38
|
-
"@effect/experimental": "^0.54.
|
|
39
|
-
"@effect/platform": "^0.90.
|
|
40
|
-
"@effect/platform-node": "^0.
|
|
37
|
+
"@effect/cli": "^0.69.2",
|
|
38
|
+
"@effect/experimental": "^0.54.6",
|
|
39
|
+
"@effect/platform": "^0.90.6",
|
|
40
|
+
"@effect/platform-node": "^0.96.0",
|
|
41
41
|
"@effect/printer": "^0.45.0",
|
|
42
42
|
"@effect/printer-ansi": "^0.45.0",
|
|
43
43
|
"@graphprotocol/grc-20": "^0.24.1",
|
|
44
44
|
"@noble/ciphers": "^1.3.0",
|
|
45
|
-
"@noble/curves": "^1.9.
|
|
45
|
+
"@noble/curves": "^1.9.7",
|
|
46
46
|
"@noble/hashes": "^1.8.0",
|
|
47
|
-
"@noble/secp256k1": "^2.
|
|
47
|
+
"@noble/secp256k1": "^2.3.0",
|
|
48
48
|
"@rhinestone/module-sdk": "^0.2.8",
|
|
49
49
|
"@serenity-kit/noble-sodium": "^0.2.1",
|
|
50
|
-
"@xstate/store": "^3.
|
|
50
|
+
"@xstate/store": "^3.9.2",
|
|
51
51
|
"bs58check": "^4.0.0",
|
|
52
|
-
"effect": "^3.17.
|
|
52
|
+
"effect": "^3.17.8",
|
|
53
53
|
"open": "^10.2.0",
|
|
54
54
|
"permissionless": "^0.2.47",
|
|
55
55
|
"siwe": "^3.0.0",
|
|
56
56
|
"uuid": "^11.1.0",
|
|
57
|
-
"viem": "^2.
|
|
57
|
+
"viem": "^2.34.0"
|
|
58
58
|
},
|
|
59
59
|
"bin": {
|
|
60
60
|
"hypergraph": "./dist/cli/bun.js",
|
package/src/cli/Cli.ts
CHANGED