Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apps/connect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# connect

## 0.2.1
### Patch Changes

- Updated dependencies [e324e68]
- @graphprotocol/hypergraph@0.4.1
- @graphprotocol/hypergraph-react@0.4.1

## 0.2.0
### Minor Changes

Expand Down
2 changes: 1 addition & 1 deletion apps/connect/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "connect",
"private": true,
"version": "0.2.0",
"version": "0.2.1",
"type": "module",
"scripts": {
"dev": "vite --force",
Expand Down
5 changes: 5 additions & 0 deletions apps/create-hypergraph/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# create-hypergraph

## 0.4.2
### Patch Changes

- Update templates to use the Id from @graphprotocol/hypergraph package

## 0.4.1
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion apps/create-hypergraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-hypergraph",
"version": "0.4.1",
"version": "0.4.2",
"description": "CLI toolchain to scaffold a Hypergraph-enabled application with a given template.",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion apps/create-hypergraph/template-nextjs/app/mapping.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Id } from '@graphprotocol/grc-20';
import type { Mapping } from '@graphprotocol/hypergraph';
import { Id } from '@graphprotocol/hypergraph';

export const mapping: Mapping.Mapping = {
Address: {
Expand Down
1 change: 0 additions & 1 deletion apps/create-hypergraph/template-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"type": "module",
"dependencies": {
"@graphprotocol/grc-20": "^0.24.1",
"@graphprotocol/hypergraph": "workspace:*",
"@graphprotocol/hypergraph-react": "workspace:*",
"@radix-ui/react-navigation-menu": "^1.2.13",
Expand Down
1 change: 0 additions & 1 deletion apps/create-hypergraph/template-vite-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@graphprotocol/grc-20": "^0.24.1",
"@graphprotocol/hypergraph": "workspace:*",
"@graphprotocol/hypergraph-react": "workspace:*",
"@radix-ui/react-navigation-menu": "^1.2.13",
Expand Down
2 changes: 1 addition & 1 deletion apps/create-hypergraph/template-vite-react/src/mapping.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Id } from '@graphprotocol/grc-20';
import type { Mapping } from '@graphprotocol/hypergraph';
import { Id } from '@graphprotocol/hypergraph';

export const mapping: Mapping.Mapping = {
Address: {
Expand Down
2 changes: 1 addition & 1 deletion apps/events/src/mapping.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Id } from '@graphprotocol/grc-20';
import type { Mapping } from '@graphprotocol/hypergraph';
import { Id } from '@graphprotocol/hypergraph';

export const mapping: Mapping.Mapping = {
Event: {
Expand Down
6 changes: 6 additions & 0 deletions apps/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# server

## 0.1.5
### Patch Changes

- Updated dependencies [e324e68]
- @graphprotocol/hypergraph@0.4.1

## 0.1.4
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "server",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/typesync.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ You're all set! You can now start building your application by editing the files

Example of the generated schema (```src/schema.ts```):
```typescript
import { Id } from '@graphprotocol/grc-20';
import type { Mapping } from '@graphprotocol/typesync/Mapping';
import type { Mapping } from '@graphprotocol/hypergraph';
import { Id } from '@graphprotocol/hypergraph';

export const mapping: Mapping = {
AcademicYear: {
Expand Down
6 changes: 6 additions & 0 deletions packages/hypergraph-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @graphprotocol/hypergraph-react

## 0.4.1
### Patch Changes

- Updated dependencies [e324e68]
- @graphprotocol/hypergraph@0.4.1

## 0.4.0
### Minor Changes

Expand Down
2 changes: 1 addition & 1 deletion packages/hypergraph-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/hypergraph-react",
"version": "0.4.0",
"version": "0.4.1",
"description": "React implementation and additional functionality, components, and hooks for the hypergraph SDK framework",
"keywords": [
"Web3",
Expand Down
5 changes: 5 additions & 0 deletions packages/hypergraph/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @graphprotocol/hypergraph

## 0.4.1
### Patch Changes

- e324e68: use Id from @graphprotocol/hypergraph

## 0.4.0
### Minor Changes

Expand Down
2 changes: 1 addition & 1 deletion packages/hypergraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/hypergraph",
"version": "0.4.0",
"version": "0.4.1",
"description": "SDK for building performant, type-safe, local-first dapps on top of The Graph ecosystem knowledge graphs.",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/hypergraph/src/mapping/Mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export type MappingEntry = {
/**
* @example
* ```ts
* import { Id } from '@graphprotocol/grc-20'
* import { Id } from '@graphprotocol/hypergraph'
* import type { Mapping } from '@graphprotocol/hypergraph/mapping'
*
* const mapping: Mapping = {
Expand Down
22 changes: 8 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading