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
8 changes: 8 additions & 0 deletions .changeset/many-times-wash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"create-hypergraph": patch
"@graphprotocol/hypergraph-react": patch
"@graphprotocol/hypergraph": patch
---

upgrade dependencies

30 changes: 15 additions & 15 deletions apps/connect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,35 @@
"check:fix": "pnpm run lint:fix && pnpm run format"
},
"dependencies": {
"@base-ui-components/react": "1.0.0-beta.1",
"@base-ui-components/react": "1.0.0-beta.2",
"@graphprotocol/grc-20": "^0.24.1",
"@graphprotocol/hypergraph": "workspace:*",
"@graphprotocol/hypergraph-react": "workspace:*",
"@heroicons/react": "^2.2.0",
"@privy-io/react-auth": "^2.21.2",
"@tanstack/react-query": "^5.75.5",
"@tanstack/react-router": "^1.120.2",
"@tanstack/react-router-devtools": "^1.122.0",
"@xstate/store": "^3.5.1",
"@privy-io/react-auth": "^2.21.4",
"@tanstack/react-query": "^5.85.5",
"@tanstack/react-router": "^1.131.27",
"@tanstack/react-router-devtools": "^1.131.27",
"@xstate/store": "^3.9.2",
"clsx": "^2.1.1",
"effect": "^3.17.6",
"effect": "^3.17.8",
"graphql-request": "^7.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"viem": "^2.30.6",
"vite": "^6.3.5"
"viem": "^2.34.0",
"vite": "^7.1.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@tanstack/router-plugin": "^1.120.2",
"@types/node": "^24.1.0",
"@types/react": "^19.1.9",
"@tailwindcss/vite": "^4.1.12",
"@tanstack/router-plugin": "^1.131.27",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.4.1",
"@vitejs/plugin-react": "^5.0.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"tailwindcss": "^4.1.12",
"unplugin-fonts": "^1.4.0",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-svgr": "^4.3.0"
Expand Down
117 changes: 38 additions & 79 deletions apps/connect/src/routeTree.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,85 +10,44 @@

import { createFileRoute } from '@tanstack/react-router'

// Import Routes
import { Route as rootRouteImport } from './routes/__root'
import { Route as AuthenticateRouteImport } from './routes/authenticate'
import { Route as IndexRouteImport } from './routes/index'

import { Route as rootRoute } from './routes/__root'
import { Route as AuthenticateImport } from './routes/authenticate'
import { Route as IndexImport } from './routes/index'
const LoginLazyRouteImport = createFileRoute('/login')()

// Create Virtual Routes

const LoginLazyImport = createFileRoute('/login')()

// Create/Update Routes

const LoginLazyRoute = LoginLazyImport.update({
const LoginLazyRoute = LoginLazyRouteImport.update({
id: '/login',
path: '/login',
getParentRoute: () => rootRoute,
getParentRoute: () => rootRouteImport,
} as any).lazy(() => import('./routes/login.lazy').then((d) => d.Route))

const AuthenticateRoute = AuthenticateImport.update({
const AuthenticateRoute = AuthenticateRouteImport.update({
id: '/authenticate',
path: '/authenticate',
getParentRoute: () => rootRoute,
getParentRoute: () => rootRouteImport,
} as any)

const IndexRoute = IndexImport.update({
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRoute,
getParentRoute: () => rootRouteImport,
} as any)

// Populate the FileRoutesByPath interface

declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexImport
parentRoute: typeof rootRoute
}
'/authenticate': {
id: '/authenticate'
path: '/authenticate'
fullPath: '/authenticate'
preLoaderRoute: typeof AuthenticateImport
parentRoute: typeof rootRoute
}
'/login': {
id: '/login'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof LoginLazyImport
parentRoute: typeof rootRoute
}
}
}

// Create and export the route tree

export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/authenticate': typeof AuthenticateRoute
'/login': typeof LoginLazyRoute
}

export interface FileRoutesByTo {
'/': typeof IndexRoute
'/authenticate': typeof AuthenticateRoute
'/login': typeof LoginLazyRoute
}

export interface FileRoutesById {
__root__: typeof rootRoute
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/authenticate': typeof AuthenticateRoute
'/login': typeof LoginLazyRoute
}

export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths: '/' | '/authenticate' | '/login'
Expand All @@ -97,43 +56,43 @@ export interface FileRouteTypes {
id: '__root__' | '/' | '/authenticate' | '/login'
fileRoutesById: FileRoutesById
}

export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AuthenticateRoute: typeof AuthenticateRoute
LoginLazyRoute: typeof LoginLazyRoute
}

declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/login': {
id: '/login'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof LoginLazyRouteImport
parentRoute: typeof rootRouteImport
}
'/authenticate': {
id: '/authenticate'
path: '/authenticate'
fullPath: '/authenticate'
preLoaderRoute: typeof AuthenticateRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}

const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AuthenticateRoute: AuthenticateRoute,
LoginLazyRoute: LoginLazyRoute,
}

export const routeTree = rootRoute
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()

/* ROUTE_MANIFEST_START
{
"routes": {
"__root__": {
"filePath": "__root.tsx",
"children": [
"/",
"/authenticate",
"/login"
]
},
"/": {
"filePath": "index.tsx"
},
"/authenticate": {
"filePath": "authenticate.tsx"
},
"/login": {
"filePath": "login.lazy.tsx"
}
}
}
ROUTE_MANIFEST_END */
7 changes: 4 additions & 3 deletions apps/connect/src/routes/authenticate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ type AuthenticateSearch = {
export const Route = createFileRoute('/authenticate')({
component: RouteComponent,
validateSearch: (search: Record<string, unknown>): AuthenticateSearch => {
const decodedData = typeof search.data === 'string' ? JSON.parse(decodeURIComponent(search.data)) : search.data;
return {
data: search.data,
redirect: search.redirect as string,
nonce: search.nonce as string,
data: decodedData,
redirect: typeof search.redirect === 'string' ? decodeURIComponent(search.redirect) : '',
nonce: typeof search.nonce === 'string' ? decodeURIComponent(search.nonce) : '',
};
},
});
Expand Down
44 changes: 22 additions & 22 deletions apps/events/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,41 +13,41 @@
"@graphprotocol/hypergraph": "workspace:*",
"@graphprotocol/hypergraph-react": "workspace:*",
"@noble/hashes": "^1.8.0",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.2",
"@tanstack/react-query": "^5.75.5",
"@tanstack/react-router": "^1.120.2",
"@tanstack/react-router-devtools": "^1.122.0",
"@xstate/store": "^3.5.1",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.85.5",
"@tanstack/react-router": "^1.131.27",
"@tanstack/react-router-devtools": "^1.131.27",
"@xstate/store": "^3.9.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"effect": "^3.17.6",
"framer-motion": "^12.10.1",
"graphql-request": "^7.1.2",
"effect": "^3.17.8",
"framer-motion": "^12.23.12",
"graphql-request": "^7.2.0",
"isomorphic-ws": "^5.0.0",
"lucide-react": "^0.508.0",
"lucide-react": "^0.541.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-select": "^5.10.1",
"react-select": "^5.10.2",
"siwe": "^3.0.0",
"tailwind-merge": "^3.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"viem": "^2.29.0",
"vite": "^6.3.5"
"viem": "^2.34.0",
"vite": "^7.1.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/vite": "^4.1.5",
"@tanstack/router-plugin": "^1.120.2",
"@types/node": "^24.2.0",
"@types/react": "^19.1.9",
"@biomejs/biome": "2.2.0",
"@tailwindcss/vite": "^4.1.12",
"@tanstack/router-plugin": "^1.131.27",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.4.1",
"globals": "^16.1.0",
"tailwindcss": "^4.1.5"
"@vitejs/plugin-react": "^5.0.1",
"globals": "^16.3.0",
"tailwindcss": "^4.1.12"
}
}
Loading
Loading