Skip to content

Commit 877cc22

Browse files
committed
feat(search-component): release v0.4.58
1 parent 61c01b4 commit 877cc22

File tree

2 files changed

+76
-74
lines changed

2 files changed

+76
-74
lines changed

clients/search-component/example/src/routeTree.gen.ts

Lines changed: 75 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,135 +1,137 @@
1-
/* prettier-ignore-start */
2-
31
/* eslint-disable */
42

53
// @ts-nocheck
64

75
// noinspection JSUnusedGlobalSymbols
86

9-
// This file is auto-generated by TanStack Router
7+
// This file was automatically generated by TanStack Router.
8+
// You should NOT make any changes in this file as it will be overwritten.
9+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010

11-
import { createFileRoute } from '@tanstack/react-router'
11+
import { createFileRoute } from "@tanstack/react-router";
1212

1313
// Import Routes
1414

15-
import { Route as rootRoute } from './routes/__root'
16-
import { Route as SearchpageImport } from './routes/searchpage'
17-
import { Route as RecsImport } from './routes/recs'
18-
import { Route as EcommerceImport } from './routes/ecommerce'
15+
import { Route as rootRoute } from "./routes/__root";
16+
import { Route as SearchpageImport } from "./routes/searchpage";
17+
import { Route as RecsImport } from "./routes/recs";
18+
import { Route as EcommerceImport } from "./routes/ecommerce";
1919

2020
// Create Virtual Routes
2121

22-
const IndexLazyImport = createFileRoute('/')()
22+
const IndexLazyImport = createFileRoute("/")();
2323

2424
// Create/Update Routes
2525

2626
const SearchpageRoute = SearchpageImport.update({
27-
path: '/searchpage',
27+
id: "/searchpage",
28+
path: "/searchpage",
2829
getParentRoute: () => rootRoute,
29-
} as any)
30+
} as any);
3031

3132
const RecsRoute = RecsImport.update({
32-
path: '/recs',
33+
id: "/recs",
34+
path: "/recs",
3335
getParentRoute: () => rootRoute,
34-
} as any)
36+
} as any);
3537

3638
const EcommerceRoute = EcommerceImport.update({
37-
path: '/ecommerce',
39+
id: "/ecommerce",
40+
path: "/ecommerce",
3841
getParentRoute: () => rootRoute,
39-
} as any)
42+
} as any);
4043

4144
const IndexLazyRoute = IndexLazyImport.update({
42-
path: '/',
45+
id: "/",
46+
path: "/",
4347
getParentRoute: () => rootRoute,
44-
} as any).lazy(() => import('./routes/index.lazy').then((d) => d.Route))
48+
} as any).lazy(() => import("./routes/index.lazy").then((d) => d.Route));
4549

4650
// Populate the FileRoutesByPath interface
4751

48-
declare module '@tanstack/react-router' {
52+
declare module "@tanstack/react-router" {
4953
interface FileRoutesByPath {
50-
'/': {
51-
id: '/'
52-
path: '/'
53-
fullPath: '/'
54-
preLoaderRoute: typeof IndexLazyImport
55-
parentRoute: typeof rootRoute
56-
}
57-
'/ecommerce': {
58-
id: '/ecommerce'
59-
path: '/ecommerce'
60-
fullPath: '/ecommerce'
61-
preLoaderRoute: typeof EcommerceImport
62-
parentRoute: typeof rootRoute
63-
}
64-
'/recs': {
65-
id: '/recs'
66-
path: '/recs'
67-
fullPath: '/recs'
68-
preLoaderRoute: typeof RecsImport
69-
parentRoute: typeof rootRoute
70-
}
71-
'/searchpage': {
72-
id: '/searchpage'
73-
path: '/searchpage'
74-
fullPath: '/searchpage'
75-
preLoaderRoute: typeof SearchpageImport
76-
parentRoute: typeof rootRoute
77-
}
54+
"/": {
55+
id: "/";
56+
path: "/";
57+
fullPath: "/";
58+
preLoaderRoute: typeof IndexLazyImport;
59+
parentRoute: typeof rootRoute;
60+
};
61+
"/ecommerce": {
62+
id: "/ecommerce";
63+
path: "/ecommerce";
64+
fullPath: "/ecommerce";
65+
preLoaderRoute: typeof EcommerceImport;
66+
parentRoute: typeof rootRoute;
67+
};
68+
"/recs": {
69+
id: "/recs";
70+
path: "/recs";
71+
fullPath: "/recs";
72+
preLoaderRoute: typeof RecsImport;
73+
parentRoute: typeof rootRoute;
74+
};
75+
"/searchpage": {
76+
id: "/searchpage";
77+
path: "/searchpage";
78+
fullPath: "/searchpage";
79+
preLoaderRoute: typeof SearchpageImport;
80+
parentRoute: typeof rootRoute;
81+
};
7882
}
7983
}
8084

8185
// Create and export the route tree
8286

8387
export interface FileRoutesByFullPath {
84-
'/': typeof IndexLazyRoute
85-
'/ecommerce': typeof EcommerceRoute
86-
'/recs': typeof RecsRoute
87-
'/searchpage': typeof SearchpageRoute
88+
"/": typeof IndexLazyRoute;
89+
"/ecommerce": typeof EcommerceRoute;
90+
"/recs": typeof RecsRoute;
91+
"/searchpage": typeof SearchpageRoute;
8892
}
8993

9094
export interface FileRoutesByTo {
91-
'/': typeof IndexLazyRoute
92-
'/ecommerce': typeof EcommerceRoute
93-
'/recs': typeof RecsRoute
94-
'/searchpage': typeof SearchpageRoute
95+
"/": typeof IndexLazyRoute;
96+
"/ecommerce": typeof EcommerceRoute;
97+
"/recs": typeof RecsRoute;
98+
"/searchpage": typeof SearchpageRoute;
9599
}
96100

97101
export interface FileRoutesById {
98-
__root__: typeof rootRoute
99-
'/': typeof IndexLazyRoute
100-
'/ecommerce': typeof EcommerceRoute
101-
'/recs': typeof RecsRoute
102-
'/searchpage': typeof SearchpageRoute
102+
__root__: typeof rootRoute;
103+
"/": typeof IndexLazyRoute;
104+
"/ecommerce": typeof EcommerceRoute;
105+
"/recs": typeof RecsRoute;
106+
"/searchpage": typeof SearchpageRoute;
103107
}
104108

105109
export interface FileRouteTypes {
106-
fileRoutesByFullPath: FileRoutesByFullPath
107-
fullPaths: '/' | '/ecommerce' | '/recs' | '/searchpage'
108-
fileRoutesByTo: FileRoutesByTo
109-
to: '/' | '/ecommerce' | '/recs' | '/searchpage'
110-
id: '__root__' | '/' | '/ecommerce' | '/recs' | '/searchpage'
111-
fileRoutesById: FileRoutesById
110+
fileRoutesByFullPath: FileRoutesByFullPath;
111+
fullPaths: "/" | "/ecommerce" | "/recs" | "/searchpage";
112+
fileRoutesByTo: FileRoutesByTo;
113+
to: "/" | "/ecommerce" | "/recs" | "/searchpage";
114+
id: "__root__" | "/" | "/ecommerce" | "/recs" | "/searchpage";
115+
fileRoutesById: FileRoutesById;
112116
}
113117

114118
export interface RootRouteChildren {
115-
IndexLazyRoute: typeof IndexLazyRoute
116-
EcommerceRoute: typeof EcommerceRoute
117-
RecsRoute: typeof RecsRoute
118-
SearchpageRoute: typeof SearchpageRoute
119+
IndexLazyRoute: typeof IndexLazyRoute;
120+
EcommerceRoute: typeof EcommerceRoute;
121+
RecsRoute: typeof RecsRoute;
122+
SearchpageRoute: typeof SearchpageRoute;
119123
}
120124

121125
const rootRouteChildren: RootRouteChildren = {
122126
IndexLazyRoute: IndexLazyRoute,
123127
EcommerceRoute: EcommerceRoute,
124128
RecsRoute: RecsRoute,
125129
SearchpageRoute: SearchpageRoute,
126-
}
130+
};
127131

128132
export const routeTree = rootRoute
129133
._addFileChildren(rootRouteChildren)
130-
._addFileTypes<FileRouteTypes>()
131-
132-
/* prettier-ignore-end */
134+
._addFileTypes<FileRouteTypes>();
133135

134136
/* ROUTE_MANIFEST_START
135137
{

clients/search-component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"import": "./dist/vanilla/index.js"
2020
}
2121
},
22-
"version": "0.4.57",
22+
"version": "0.4.58",
2323
"license": "MIT",
2424
"homepage": "https://github.com/devflowinc/trieve/tree/main/clients/search-component",
2525
"scripts": {

0 commit comments

Comments
 (0)