Skip to content

Commit

Permalink
feat(dashboard-for-dapps): stress test credential decryption and filt…
Browse files Browse the repository at this point in the history
…ering
  • Loading branch information
ditoglez committed Dec 17, 2024
1 parent 58a6640 commit 3d6bf99
Show file tree
Hide file tree
Showing 2 changed files with 435 additions and 4 deletions.
31 changes: 27 additions & 4 deletions apps/dashboard-for-dapps/src/routeTree.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,17 @@
// Import Routes

import { Route as rootRoute } from "./routes/__root";
import { Route as CredentialsImport } from "./routes/credentials";
import { Route as IndexImport } from "./routes/index";

// Create/Update Routes

const CredentialsRoute = CredentialsImport.update({
id: "/credentials",
path: "/credentials",
getParentRoute: () => rootRoute,
} as any);

const IndexRoute = IndexImport.update({
id: "/",
path: "/",
Expand All @@ -32,39 +39,51 @@ declare module "@tanstack/react-router" {
preLoaderRoute: typeof IndexImport;
parentRoute: typeof rootRoute;
};
"/credentials": {
id: "/credentials";
path: "/credentials";
fullPath: "/credentials";
preLoaderRoute: typeof CredentialsImport;
parentRoute: typeof rootRoute;
};
}
}

// Create and export the route tree

export interface FileRoutesByFullPath {
"/": typeof IndexRoute;
"/credentials": typeof CredentialsRoute;
}

export interface FileRoutesByTo {
"/": typeof IndexRoute;
"/credentials": typeof CredentialsRoute;
}

export interface FileRoutesById {
__root__: typeof rootRoute;
"/": typeof IndexRoute;
"/credentials": typeof CredentialsRoute;
}

export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath;
fullPaths: "/";
fullPaths: "/" | "/credentials";
fileRoutesByTo: FileRoutesByTo;
to: "/";
id: "__root__" | "/";
to: "/" | "/credentials";
id: "__root__" | "/" | "/credentials";
fileRoutesById: FileRoutesById;
}

export interface RootRouteChildren {
IndexRoute: typeof IndexRoute;
CredentialsRoute: typeof CredentialsRoute;
}

const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
CredentialsRoute: CredentialsRoute,
};

export const routeTree = rootRoute
Expand All @@ -77,11 +96,15 @@ export const routeTree = rootRoute
"__root__": {
"filePath": "__root.tsx",
"children": [
"/"
"/",
"/credentials"
]
},
"/": {
"filePath": "index.tsx"
},
"/credentials": {
"filePath": "credentials.tsx"
}
}
}
Expand Down
Loading

0 comments on commit 3d6bf99

Please sign in to comment.