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
189 changes: 106 additions & 83 deletions apps/events/src/routeTree.gen.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable */

// @ts-nocheck

// noinspection JSUnusedGlobalSymbols
Expand All @@ -6,154 +8,173 @@
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.

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

// Import Routes

import { Route as rootRoute } from './routes/__root';
import { Route as IndexImport } from './routes/index';
import { Route as PlaygroundImport } from './routes/playground';
import { Route as Schema2Import } from './routes/schema2';
import { Route as SpaceSpaceIdImport } from './routes/space/$spaceId';
import { Route as rootRoute } from './routes/__root'
import { Route as Schema2Import } from './routes/schema2'
import { Route as PlaygroundImport } from './routes/playground'
import { Route as IndexImport } from './routes/index'
import { Route as SpaceSpaceIdImport } from './routes/space/$spaceId'

// Create Virtual Routes

const Login2LazyImport = createFileRoute('/login2')();
const LoginLazyImport = createFileRoute('/login')();
const Login2LazyImport = createFileRoute('/login2')()
const LoginLazyImport = createFileRoute('/login')()

// Create/Update Routes

const Login2LazyRoute = Login2LazyImport.update({
id: '/login2',
path: '/login2',
getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/login2.lazy').then((d) => d.Route));
} as any).lazy(() => import('./routes/login2.lazy').then((d) => d.Route))

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

const Schema2Route = Schema2Import.update({
id: '/schema2',
path: '/schema2',
getParentRoute: () => rootRoute,
} as any);
} as any)

const PlaygroundRoute = PlaygroundImport.update({
id: '/playground',
path: '/playground',
getParentRoute: () => rootRoute,
} as any);
} as any)

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

const SpaceSpaceIdRoute = SpaceSpaceIdImport.update({
id: '/space/$spaceId',
path: '/space/$spaceId',
getParentRoute: () => rootRoute,
} as any);
} as any)

// Populate the FileRoutesByPath interface

declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/': {
id: '/';
path: '/';
fullPath: '/';
preLoaderRoute: typeof IndexImport;
parentRoute: typeof rootRoute;
};
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexImport
parentRoute: typeof rootRoute
}
'/playground': {
id: '/playground';
path: '/playground';
fullPath: '/playground';
preLoaderRoute: typeof PlaygroundImport;
parentRoute: typeof rootRoute;
};
id: '/playground'
path: '/playground'
fullPath: '/playground'
preLoaderRoute: typeof PlaygroundImport
parentRoute: typeof rootRoute
}
'/schema2': {
id: '/schema2';
path: '/schema2';
fullPath: '/schema2';
preLoaderRoute: typeof Schema2Import;
parentRoute: typeof rootRoute;
};
id: '/schema2'
path: '/schema2'
fullPath: '/schema2'
preLoaderRoute: typeof Schema2Import
parentRoute: typeof rootRoute
}
'/login': {
id: '/login';
path: '/login';
fullPath: '/login';
preLoaderRoute: typeof LoginLazyImport;
parentRoute: typeof rootRoute;
};
id: '/login'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof LoginLazyImport
parentRoute: typeof rootRoute
}
'/login2': {
id: '/login2';
path: '/login2';
fullPath: '/login2';
preLoaderRoute: typeof Login2LazyImport;
parentRoute: typeof rootRoute;
};
id: '/login2'
path: '/login2'
fullPath: '/login2'
preLoaderRoute: typeof Login2LazyImport
parentRoute: typeof rootRoute
}
'/space/$spaceId': {
id: '/space/$spaceId';
path: '/space/$spaceId';
fullPath: '/space/$spaceId';
preLoaderRoute: typeof SpaceSpaceIdImport;
parentRoute: typeof rootRoute;
};
id: '/space/$spaceId'
path: '/space/$spaceId'
fullPath: '/space/$spaceId'
preLoaderRoute: typeof SpaceSpaceIdImport
parentRoute: typeof rootRoute
}
}
}

// Create and export the route tree

export interface FileRoutesByFullPath {
'/': typeof IndexRoute;
'/playground': typeof PlaygroundRoute;
'/schema2': typeof Schema2Route;
'/login': typeof LoginLazyRoute;
'/login2': typeof Login2LazyRoute;
'/space/$spaceId': typeof SpaceSpaceIdRoute;
'/': typeof IndexRoute
'/playground': typeof PlaygroundRoute
'/schema2': typeof Schema2Route
'/login': typeof LoginLazyRoute
'/login2': typeof Login2LazyRoute
'/space/$spaceId': typeof SpaceSpaceIdRoute
}

export interface FileRoutesByTo {
'/': typeof IndexRoute;
'/playground': typeof PlaygroundRoute;
'/schema2': typeof Schema2Route;
'/login': typeof LoginLazyRoute;
'/login2': typeof Login2LazyRoute;
'/space/$spaceId': typeof SpaceSpaceIdRoute;
'/': typeof IndexRoute
'/playground': typeof PlaygroundRoute
'/schema2': typeof Schema2Route
'/login': typeof LoginLazyRoute
'/login2': typeof Login2LazyRoute
'/space/$spaceId': typeof SpaceSpaceIdRoute
}

export interface FileRoutesById {
__root__: typeof rootRoute;
'/': typeof IndexRoute;
'/playground': typeof PlaygroundRoute;
'/schema2': typeof Schema2Route;
'/login': typeof LoginLazyRoute;
'/login2': typeof Login2LazyRoute;
'/space/$spaceId': typeof SpaceSpaceIdRoute;
__root__: typeof rootRoute
'/': typeof IndexRoute
'/playground': typeof PlaygroundRoute
'/schema2': typeof Schema2Route
'/login': typeof LoginLazyRoute
'/login2': typeof Login2LazyRoute
'/space/$spaceId': typeof SpaceSpaceIdRoute
}

export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath;
fullPaths: '/' | '/playground' | '/schema2' | '/login' | '/login2' | '/space/$spaceId';
fileRoutesByTo: FileRoutesByTo;
to: '/' | '/playground' | '/schema2' | '/login' | '/login2' | '/space/$spaceId';
id: '__root__' | '/' | '/playground' | '/schema2' | '/login' | '/login2' | '/space/$spaceId';
fileRoutesById: FileRoutesById;
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/playground'
| '/schema2'
| '/login'
| '/login2'
| '/space/$spaceId'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/playground'
| '/schema2'
| '/login'
| '/login2'
| '/space/$spaceId'
id:
| '__root__'
| '/'
| '/playground'
| '/schema2'
| '/login'
| '/login2'
| '/space/$spaceId'
fileRoutesById: FileRoutesById
}

export interface RootRouteChildren {
IndexRoute: typeof IndexRoute;
PlaygroundRoute: typeof PlaygroundRoute;
Schema2Route: typeof Schema2Route;
LoginLazyRoute: typeof LoginLazyRoute;
Login2LazyRoute: typeof Login2LazyRoute;
SpaceSpaceIdRoute: typeof SpaceSpaceIdRoute;
IndexRoute: typeof IndexRoute
PlaygroundRoute: typeof PlaygroundRoute
Schema2Route: typeof Schema2Route
LoginLazyRoute: typeof LoginLazyRoute
Login2LazyRoute: typeof Login2LazyRoute
SpaceSpaceIdRoute: typeof SpaceSpaceIdRoute
}

const rootRouteChildren: RootRouteChildren = {
Expand All @@ -163,9 +184,11 @@ const rootRouteChildren: RootRouteChildren = {
LoginLazyRoute: LoginLazyRoute,
Login2LazyRoute: Login2LazyRoute,
SpaceSpaceIdRoute: SpaceSpaceIdRoute,
};
}

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

/* ROUTE_MANIFEST_START
{
Expand Down
2 changes: 1 addition & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"files": {
"ignoreUnknown": false,
"ignore": ["node_modules/", "**/node_modules", "**/dist"]
"ignore": ["node_modules/", "**/node_modules", "**/dist", "routeTree.gen.ts"]
},
"formatter": {
"enabled": true,
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"escape-string-regexp": "^5.0.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
"vitest": "^2.1.4",
"vite-plugin-dts": "^4.3.0"
},
"scripts": {
"build": "pnpm --filter graph-framework-utils build",
Expand Down
9 changes: 9 additions & 0 deletions packages/graph-framework-identity/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.options.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["./src"],
"exclude": ["node_modules", "src/**/*.test.ts", "src/**/*.spec.ts", "dist"]
}
29 changes: 6 additions & 23 deletions packages/graph-framework-identity/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,10 @@
{
"extends": "../../tsconfig.options.json",
"compilerOptions": {
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"sourceMap": true,
"declarationMap": true,
"declaration": true,
"strictNullChecks": true,
"incremental": true,
"composite": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noErrorTruncation": true,
"isolatedModules": true,
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"jsx": "react-jsx"
"baseUrl": ".",
"rootDir": ".",
"noEmit": true
},
"include": ["./src"]
"include": ["**/*", "vite.config.mts"],
"exclude": ["**/node_modules", "**/dist"]
}
9 changes: 9 additions & 0 deletions packages/graph-framework-schema/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.options.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["./src"],
"exclude": ["node_modules", "src/**/*.test.ts", "src/**/*.spec.ts", "dist"]
}
29 changes: 6 additions & 23 deletions packages/graph-framework-schema/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,10 @@
{
"extends": "../../tsconfig.options.json",
"compilerOptions": {
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"sourceMap": true,
"declarationMap": true,
"declaration": true,
"strictNullChecks": true,
"incremental": true,
"composite": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noErrorTruncation": true,
"isolatedModules": true,
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"jsx": "react-jsx"
"baseUrl": ".",
"rootDir": ".",
"noEmit": true
},
"include": ["./src"]
"include": ["**/*", "vite.config.mts"],
"exclude": ["**/node_modules", "**/dist"]
}
9 changes: 9 additions & 0 deletions packages/graph-framework-space-events/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.options.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["./src"],
"exclude": ["node_modules", "src/**/*.test.ts", "src/**/*.spec.ts", "dist"]
}
Loading
Loading