@graphprotocol/hypergraph 0.13.0 → 0.13.1
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/mapping/Mapping.js +1 -1
- package/dist/mapping/Mapping.js.map +1 -1
- package/dist/typesync-studio/dist/assets/authenticate-callback-ClHGCEBM.js +29 -1
- package/dist/typesync-studio/dist/assets/authenticate-callback-CtSc34yM.js +1 -0
- package/dist/typesync-studio/dist/assets/ccip-BXDUfOuS.js +1 -0
- package/dist/typesync-studio/dist/assets/ccip-CVB5IdFh.js +167 -1
- package/dist/typesync-studio/dist/assets/index-Bj1QcQTs.js +85 -0
- package/dist/typesync-studio/dist/assets/index-CZGD3lPb.js +13040 -8
- package/dist/typesync-studio/dist/assets/index-DWu6hbGt.js +223 -0
- package/dist/typesync-studio/dist/assets/index-Dmh0I_CD.js +97 -96
- package/dist/typesync-studio/dist/index.html +1 -1
- package/package.json +2 -2
- package/src/mapping/Mapping.ts +1 -1
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<title>Graph Protocol | Hypergraph TypeSync</title>
|
|
22
22
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
23
23
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
24
|
-
<script type="module" crossorigin src="/assets/index-
|
|
24
|
+
<script type="module" crossorigin src="/assets/index-DWu6hbGt.js"></script>
|
|
25
25
|
<link rel="stylesheet" crossorigin href="/assets/index-BY93eSrW.css">
|
|
26
26
|
</head>
|
|
27
27
|
<body class="h-full w-full">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphprotocol/hypergraph",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
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",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@effect/platform-node": "^0.96.1",
|
|
42
42
|
"@effect/printer": "^0.45.0",
|
|
43
43
|
"@effect/printer-ansi": "^0.45.0",
|
|
44
|
-
"@geoprotocol/geo-sdk": "^0.
|
|
44
|
+
"@geoprotocol/geo-sdk": "^0.8.0",
|
|
45
45
|
"@noble/ciphers": "^1.3.0",
|
|
46
46
|
"@noble/curves": "^1.9.7",
|
|
47
47
|
"@noble/hashes": "^1.8.0",
|
package/src/mapping/Mapping.ts
CHANGED