A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz

refactor: standardize import statements and update route definitions to use single quotes

+405 -405
+405 -405
apps/web/src/routeTree.gen.ts
··· 8 8 // You should NOT make any changes in this file as it will be overwritten. 9 9 // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. 10 10 11 - import { Route as rootRouteImport } from "./routes/__root"; 12 - import { Route as ScrobbleRouteImport } from "./routes/scrobble"; 13 - import { Route as LoadingRouteImport } from "./routes/loading"; 14 - import { Route as ApikeysRouteImport } from "./routes/apikeys"; 15 - import { Route as IndexRouteImport } from "./routes/index"; 16 - import { Route as GoogledriveIndexRouteImport } from "./routes/googledrive/index"; 17 - import { Route as DropboxIndexRouteImport } from "./routes/dropbox/index"; 18 - import { Route as GoogledriveIdRouteImport } from "./routes/googledrive/$id"; 19 - import { Route as DropboxIdRouteImport } from "./routes/dropbox/$id"; 20 - import { Route as ProfileDidIndexRouteImport } from "./routes/profile/$did/index"; 21 - import { Route as ProfileDidTracksRouteImport } from "./routes/profile/$did/tracks"; 22 - import { Route as ProfileDidTagsRouteImport } from "./routes/profile/$did/tags"; 23 - import { Route as ProfileDidScrobblesRouteImport } from "./routes/profile/$did/scrobbles"; 24 - import { Route as ProfileDidPlaylistsRouteImport } from "./routes/profile/$did/playlists"; 25 - import { Route as ProfileDidLikesRouteImport } from "./routes/profile/$did/likes"; 26 - import { Route as ProfileDidLibraryRouteImport } from "./routes/profile/$did/library"; 27 - import { Route as ProfileDidArtistsRouteImport } from "./routes/profile/$did/artists"; 28 - import { Route as ProfileDidAlbumsRouteImport } from "./routes/profile/$did/albums"; 29 - import { Route as DidSongRkeyRouteImport } from "./routes/$did.song.$rkey"; 30 - import { Route as DidScrobbleRkeyRouteImport } from "./routes/$did.scrobble.$rkey"; 31 - import { Route as DidPlaylistRkeyRouteImport } from "./routes/$did.playlist.$rkey"; 32 - import { Route as DidArtistRkeyRouteImport } from "./routes/$did.artist.$rkey"; 33 - import { Route as DidAlbumRkeyRouteImport } from "./routes/$did.album.$rkey"; 11 + import { Route as rootRouteImport } from './routes/__root' 12 + import { Route as ScrobbleRouteImport } from './routes/scrobble' 13 + import { Route as LoadingRouteImport } from './routes/loading' 14 + import { Route as ApikeysRouteImport } from './routes/apikeys' 15 + import { Route as IndexRouteImport } from './routes/index' 16 + import { Route as GoogledriveIndexRouteImport } from './routes/googledrive/index' 17 + import { Route as DropboxIndexRouteImport } from './routes/dropbox/index' 18 + import { Route as GoogledriveIdRouteImport } from './routes/googledrive/$id' 19 + import { Route as DropboxIdRouteImport } from './routes/dropbox/$id' 20 + import { Route as ProfileDidIndexRouteImport } from './routes/profile/$did/index' 21 + import { Route as ProfileDidTracksRouteImport } from './routes/profile/$did/tracks' 22 + import { Route as ProfileDidTagsRouteImport } from './routes/profile/$did/tags' 23 + import { Route as ProfileDidScrobblesRouteImport } from './routes/profile/$did/scrobbles' 24 + import { Route as ProfileDidPlaylistsRouteImport } from './routes/profile/$did/playlists' 25 + import { Route as ProfileDidLikesRouteImport } from './routes/profile/$did/likes' 26 + import { Route as ProfileDidLibraryRouteImport } from './routes/profile/$did/library' 27 + import { Route as ProfileDidArtistsRouteImport } from './routes/profile/$did/artists' 28 + import { Route as ProfileDidAlbumsRouteImport } from './routes/profile/$did/albums' 29 + import { Route as DidSongRkeyRouteImport } from './routes/$did.song.$rkey' 30 + import { Route as DidScrobbleRkeyRouteImport } from './routes/$did.scrobble.$rkey' 31 + import { Route as DidPlaylistRkeyRouteImport } from './routes/$did.playlist.$rkey' 32 + import { Route as DidArtistRkeyRouteImport } from './routes/$did.artist.$rkey' 33 + import { Route as DidAlbumRkeyRouteImport } from './routes/$did.album.$rkey' 34 34 35 35 const ScrobbleRoute = ScrobbleRouteImport.update({ 36 - id: "/scrobble", 37 - path: "/scrobble", 36 + id: '/scrobble', 37 + path: '/scrobble', 38 38 getParentRoute: () => rootRouteImport, 39 - } as any); 39 + } as any) 40 40 const LoadingRoute = LoadingRouteImport.update({ 41 - id: "/loading", 42 - path: "/loading", 41 + id: '/loading', 42 + path: '/loading', 43 43 getParentRoute: () => rootRouteImport, 44 - } as any); 44 + } as any) 45 45 const ApikeysRoute = ApikeysRouteImport.update({ 46 - id: "/apikeys", 47 - path: "/apikeys", 46 + id: '/apikeys', 47 + path: '/apikeys', 48 48 getParentRoute: () => rootRouteImport, 49 - } as any); 49 + } as any) 50 50 const IndexRoute = IndexRouteImport.update({ 51 - id: "/", 52 - path: "/", 51 + id: '/', 52 + path: '/', 53 53 getParentRoute: () => rootRouteImport, 54 - } as any); 54 + } as any) 55 55 const GoogledriveIndexRoute = GoogledriveIndexRouteImport.update({ 56 - id: "/googledrive/", 57 - path: "/googledrive/", 56 + id: '/googledrive/', 57 + path: '/googledrive/', 58 58 getParentRoute: () => rootRouteImport, 59 - } as any); 59 + } as any) 60 60 const DropboxIndexRoute = DropboxIndexRouteImport.update({ 61 - id: "/dropbox/", 62 - path: "/dropbox/", 61 + id: '/dropbox/', 62 + path: '/dropbox/', 63 63 getParentRoute: () => rootRouteImport, 64 - } as any); 64 + } as any) 65 65 const GoogledriveIdRoute = GoogledriveIdRouteImport.update({ 66 - id: "/googledrive/$id", 67 - path: "/googledrive/$id", 66 + id: '/googledrive/$id', 67 + path: '/googledrive/$id', 68 68 getParentRoute: () => rootRouteImport, 69 - } as any); 69 + } as any) 70 70 const DropboxIdRoute = DropboxIdRouteImport.update({ 71 - id: "/dropbox/$id", 72 - path: "/dropbox/$id", 71 + id: '/dropbox/$id', 72 + path: '/dropbox/$id', 73 73 getParentRoute: () => rootRouteImport, 74 - } as any); 74 + } as any) 75 75 const ProfileDidIndexRoute = ProfileDidIndexRouteImport.update({ 76 - id: "/profile/$did/", 77 - path: "/profile/$did/", 76 + id: '/profile/$did/', 77 + path: '/profile/$did/', 78 78 getParentRoute: () => rootRouteImport, 79 - } as any); 79 + } as any) 80 80 const ProfileDidTracksRoute = ProfileDidTracksRouteImport.update({ 81 - id: "/profile/$did/tracks", 82 - path: "/profile/$did/tracks", 81 + id: '/profile/$did/tracks', 82 + path: '/profile/$did/tracks', 83 83 getParentRoute: () => rootRouteImport, 84 - } as any); 84 + } as any) 85 85 const ProfileDidTagsRoute = ProfileDidTagsRouteImport.update({ 86 - id: "/profile/$did/tags", 87 - path: "/profile/$did/tags", 86 + id: '/profile/$did/tags', 87 + path: '/profile/$did/tags', 88 88 getParentRoute: () => rootRouteImport, 89 - } as any); 89 + } as any) 90 90 const ProfileDidScrobblesRoute = ProfileDidScrobblesRouteImport.update({ 91 - id: "/profile/$did/scrobbles", 92 - path: "/profile/$did/scrobbles", 91 + id: '/profile/$did/scrobbles', 92 + path: '/profile/$did/scrobbles', 93 93 getParentRoute: () => rootRouteImport, 94 - } as any); 94 + } as any) 95 95 const ProfileDidPlaylistsRoute = ProfileDidPlaylistsRouteImport.update({ 96 - id: "/profile/$did/playlists", 97 - path: "/profile/$did/playlists", 96 + id: '/profile/$did/playlists', 97 + path: '/profile/$did/playlists', 98 98 getParentRoute: () => rootRouteImport, 99 - } as any); 99 + } as any) 100 100 const ProfileDidLikesRoute = ProfileDidLikesRouteImport.update({ 101 - id: "/profile/$did/likes", 102 - path: "/profile/$did/likes", 101 + id: '/profile/$did/likes', 102 + path: '/profile/$did/likes', 103 103 getParentRoute: () => rootRouteImport, 104 - } as any); 104 + } as any) 105 105 const ProfileDidLibraryRoute = ProfileDidLibraryRouteImport.update({ 106 - id: "/profile/$did/library", 107 - path: "/profile/$did/library", 106 + id: '/profile/$did/library', 107 + path: '/profile/$did/library', 108 108 getParentRoute: () => rootRouteImport, 109 - } as any); 109 + } as any) 110 110 const ProfileDidArtistsRoute = ProfileDidArtistsRouteImport.update({ 111 - id: "/profile/$did/artists", 112 - path: "/profile/$did/artists", 111 + id: '/profile/$did/artists', 112 + path: '/profile/$did/artists', 113 113 getParentRoute: () => rootRouteImport, 114 - } as any); 114 + } as any) 115 115 const ProfileDidAlbumsRoute = ProfileDidAlbumsRouteImport.update({ 116 - id: "/profile/$did/albums", 117 - path: "/profile/$did/albums", 116 + id: '/profile/$did/albums', 117 + path: '/profile/$did/albums', 118 118 getParentRoute: () => rootRouteImport, 119 - } as any); 119 + } as any) 120 120 const DidSongRkeyRoute = DidSongRkeyRouteImport.update({ 121 - id: "/$did/song/$rkey", 122 - path: "/$did/song/$rkey", 121 + id: '/$did/song/$rkey', 122 + path: '/$did/song/$rkey', 123 123 getParentRoute: () => rootRouteImport, 124 - } as any); 124 + } as any) 125 125 const DidScrobbleRkeyRoute = DidScrobbleRkeyRouteImport.update({ 126 - id: "/$did/scrobble/$rkey", 127 - path: "/$did/scrobble/$rkey", 126 + id: '/$did/scrobble/$rkey', 127 + path: '/$did/scrobble/$rkey', 128 128 getParentRoute: () => rootRouteImport, 129 - } as any); 129 + } as any) 130 130 const DidPlaylistRkeyRoute = DidPlaylistRkeyRouteImport.update({ 131 - id: "/$did/playlist/$rkey", 132 - path: "/$did/playlist/$rkey", 131 + id: '/$did/playlist/$rkey', 132 + path: '/$did/playlist/$rkey', 133 133 getParentRoute: () => rootRouteImport, 134 - } as any); 134 + } as any) 135 135 const DidArtistRkeyRoute = DidArtistRkeyRouteImport.update({ 136 - id: "/$did/artist/$rkey", 137 - path: "/$did/artist/$rkey", 136 + id: '/$did/artist/$rkey', 137 + path: '/$did/artist/$rkey', 138 138 getParentRoute: () => rootRouteImport, 139 - } as any); 139 + } as any) 140 140 const DidAlbumRkeyRoute = DidAlbumRkeyRouteImport.update({ 141 - id: "/$did/album/$rkey", 142 - path: "/$did/album/$rkey", 141 + id: '/$did/album/$rkey', 142 + path: '/$did/album/$rkey', 143 143 getParentRoute: () => rootRouteImport, 144 - } as any); 144 + } as any) 145 145 146 146 export interface FileRoutesByFullPath { 147 - "/": typeof IndexRoute; 148 - "/apikeys": typeof ApikeysRoute; 149 - "/loading": typeof LoadingRoute; 150 - "/scrobble": typeof ScrobbleRoute; 151 - "/dropbox/$id": typeof DropboxIdRoute; 152 - "/googledrive/$id": typeof GoogledriveIdRoute; 153 - "/dropbox": typeof DropboxIndexRoute; 154 - "/googledrive": typeof GoogledriveIndexRoute; 155 - "/$did/album/$rkey": typeof DidAlbumRkeyRoute; 156 - "/$did/artist/$rkey": typeof DidArtistRkeyRoute; 157 - "/$did/playlist/$rkey": typeof DidPlaylistRkeyRoute; 158 - "/$did/scrobble/$rkey": typeof DidScrobbleRkeyRoute; 159 - "/$did/song/$rkey": typeof DidSongRkeyRoute; 160 - "/profile/$did/albums": typeof ProfileDidAlbumsRoute; 161 - "/profile/$did/artists": typeof ProfileDidArtistsRoute; 162 - "/profile/$did/library": typeof ProfileDidLibraryRoute; 163 - "/profile/$did/likes": typeof ProfileDidLikesRoute; 164 - "/profile/$did/playlists": typeof ProfileDidPlaylistsRoute; 165 - "/profile/$did/scrobbles": typeof ProfileDidScrobblesRoute; 166 - "/profile/$did/tags": typeof ProfileDidTagsRoute; 167 - "/profile/$did/tracks": typeof ProfileDidTracksRoute; 168 - "/profile/$did": typeof ProfileDidIndexRoute; 147 + '/': typeof IndexRoute 148 + '/apikeys': typeof ApikeysRoute 149 + '/loading': typeof LoadingRoute 150 + '/scrobble': typeof ScrobbleRoute 151 + '/dropbox/$id': typeof DropboxIdRoute 152 + '/googledrive/$id': typeof GoogledriveIdRoute 153 + '/dropbox': typeof DropboxIndexRoute 154 + '/googledrive': typeof GoogledriveIndexRoute 155 + '/$did/album/$rkey': typeof DidAlbumRkeyRoute 156 + '/$did/artist/$rkey': typeof DidArtistRkeyRoute 157 + '/$did/playlist/$rkey': typeof DidPlaylistRkeyRoute 158 + '/$did/scrobble/$rkey': typeof DidScrobbleRkeyRoute 159 + '/$did/song/$rkey': typeof DidSongRkeyRoute 160 + '/profile/$did/albums': typeof ProfileDidAlbumsRoute 161 + '/profile/$did/artists': typeof ProfileDidArtistsRoute 162 + '/profile/$did/library': typeof ProfileDidLibraryRoute 163 + '/profile/$did/likes': typeof ProfileDidLikesRoute 164 + '/profile/$did/playlists': typeof ProfileDidPlaylistsRoute 165 + '/profile/$did/scrobbles': typeof ProfileDidScrobblesRoute 166 + '/profile/$did/tags': typeof ProfileDidTagsRoute 167 + '/profile/$did/tracks': typeof ProfileDidTracksRoute 168 + '/profile/$did': typeof ProfileDidIndexRoute 169 169 } 170 170 export interface FileRoutesByTo { 171 - "/": typeof IndexRoute; 172 - "/apikeys": typeof ApikeysRoute; 173 - "/loading": typeof LoadingRoute; 174 - "/scrobble": typeof ScrobbleRoute; 175 - "/dropbox/$id": typeof DropboxIdRoute; 176 - "/googledrive/$id": typeof GoogledriveIdRoute; 177 - "/dropbox": typeof DropboxIndexRoute; 178 - "/googledrive": typeof GoogledriveIndexRoute; 179 - "/$did/album/$rkey": typeof DidAlbumRkeyRoute; 180 - "/$did/artist/$rkey": typeof DidArtistRkeyRoute; 181 - "/$did/playlist/$rkey": typeof DidPlaylistRkeyRoute; 182 - "/$did/scrobble/$rkey": typeof DidScrobbleRkeyRoute; 183 - "/$did/song/$rkey": typeof DidSongRkeyRoute; 184 - "/profile/$did/albums": typeof ProfileDidAlbumsRoute; 185 - "/profile/$did/artists": typeof ProfileDidArtistsRoute; 186 - "/profile/$did/library": typeof ProfileDidLibraryRoute; 187 - "/profile/$did/likes": typeof ProfileDidLikesRoute; 188 - "/profile/$did/playlists": typeof ProfileDidPlaylistsRoute; 189 - "/profile/$did/scrobbles": typeof ProfileDidScrobblesRoute; 190 - "/profile/$did/tags": typeof ProfileDidTagsRoute; 191 - "/profile/$did/tracks": typeof ProfileDidTracksRoute; 192 - "/profile/$did": typeof ProfileDidIndexRoute; 171 + '/': typeof IndexRoute 172 + '/apikeys': typeof ApikeysRoute 173 + '/loading': typeof LoadingRoute 174 + '/scrobble': typeof ScrobbleRoute 175 + '/dropbox/$id': typeof DropboxIdRoute 176 + '/googledrive/$id': typeof GoogledriveIdRoute 177 + '/dropbox': typeof DropboxIndexRoute 178 + '/googledrive': typeof GoogledriveIndexRoute 179 + '/$did/album/$rkey': typeof DidAlbumRkeyRoute 180 + '/$did/artist/$rkey': typeof DidArtistRkeyRoute 181 + '/$did/playlist/$rkey': typeof DidPlaylistRkeyRoute 182 + '/$did/scrobble/$rkey': typeof DidScrobbleRkeyRoute 183 + '/$did/song/$rkey': typeof DidSongRkeyRoute 184 + '/profile/$did/albums': typeof ProfileDidAlbumsRoute 185 + '/profile/$did/artists': typeof ProfileDidArtistsRoute 186 + '/profile/$did/library': typeof ProfileDidLibraryRoute 187 + '/profile/$did/likes': typeof ProfileDidLikesRoute 188 + '/profile/$did/playlists': typeof ProfileDidPlaylistsRoute 189 + '/profile/$did/scrobbles': typeof ProfileDidScrobblesRoute 190 + '/profile/$did/tags': typeof ProfileDidTagsRoute 191 + '/profile/$did/tracks': typeof ProfileDidTracksRoute 192 + '/profile/$did': typeof ProfileDidIndexRoute 193 193 } 194 194 export interface FileRoutesById { 195 - __root__: typeof rootRouteImport; 196 - "/": typeof IndexRoute; 197 - "/apikeys": typeof ApikeysRoute; 198 - "/loading": typeof LoadingRoute; 199 - "/scrobble": typeof ScrobbleRoute; 200 - "/dropbox/$id": typeof DropboxIdRoute; 201 - "/googledrive/$id": typeof GoogledriveIdRoute; 202 - "/dropbox/": typeof DropboxIndexRoute; 203 - "/googledrive/": typeof GoogledriveIndexRoute; 204 - "/$did/album/$rkey": typeof DidAlbumRkeyRoute; 205 - "/$did/artist/$rkey": typeof DidArtistRkeyRoute; 206 - "/$did/playlist/$rkey": typeof DidPlaylistRkeyRoute; 207 - "/$did/scrobble/$rkey": typeof DidScrobbleRkeyRoute; 208 - "/$did/song/$rkey": typeof DidSongRkeyRoute; 209 - "/profile/$did/albums": typeof ProfileDidAlbumsRoute; 210 - "/profile/$did/artists": typeof ProfileDidArtistsRoute; 211 - "/profile/$did/library": typeof ProfileDidLibraryRoute; 212 - "/profile/$did/likes": typeof ProfileDidLikesRoute; 213 - "/profile/$did/playlists": typeof ProfileDidPlaylistsRoute; 214 - "/profile/$did/scrobbles": typeof ProfileDidScrobblesRoute; 215 - "/profile/$did/tags": typeof ProfileDidTagsRoute; 216 - "/profile/$did/tracks": typeof ProfileDidTracksRoute; 217 - "/profile/$did/": typeof ProfileDidIndexRoute; 195 + __root__: typeof rootRouteImport 196 + '/': typeof IndexRoute 197 + '/apikeys': typeof ApikeysRoute 198 + '/loading': typeof LoadingRoute 199 + '/scrobble': typeof ScrobbleRoute 200 + '/dropbox/$id': typeof DropboxIdRoute 201 + '/googledrive/$id': typeof GoogledriveIdRoute 202 + '/dropbox/': typeof DropboxIndexRoute 203 + '/googledrive/': typeof GoogledriveIndexRoute 204 + '/$did/album/$rkey': typeof DidAlbumRkeyRoute 205 + '/$did/artist/$rkey': typeof DidArtistRkeyRoute 206 + '/$did/playlist/$rkey': typeof DidPlaylistRkeyRoute 207 + '/$did/scrobble/$rkey': typeof DidScrobbleRkeyRoute 208 + '/$did/song/$rkey': typeof DidSongRkeyRoute 209 + '/profile/$did/albums': typeof ProfileDidAlbumsRoute 210 + '/profile/$did/artists': typeof ProfileDidArtistsRoute 211 + '/profile/$did/library': typeof ProfileDidLibraryRoute 212 + '/profile/$did/likes': typeof ProfileDidLikesRoute 213 + '/profile/$did/playlists': typeof ProfileDidPlaylistsRoute 214 + '/profile/$did/scrobbles': typeof ProfileDidScrobblesRoute 215 + '/profile/$did/tags': typeof ProfileDidTagsRoute 216 + '/profile/$did/tracks': typeof ProfileDidTracksRoute 217 + '/profile/$did/': typeof ProfileDidIndexRoute 218 218 } 219 219 export interface FileRouteTypes { 220 - fileRoutesByFullPath: FileRoutesByFullPath; 220 + fileRoutesByFullPath: FileRoutesByFullPath 221 221 fullPaths: 222 - | "/" 223 - | "/apikeys" 224 - | "/loading" 225 - | "/scrobble" 226 - | "/dropbox/$id" 227 - | "/googledrive/$id" 228 - | "/dropbox" 229 - | "/googledrive" 230 - | "/$did/album/$rkey" 231 - | "/$did/artist/$rkey" 232 - | "/$did/playlist/$rkey" 233 - | "/$did/scrobble/$rkey" 234 - | "/$did/song/$rkey" 235 - | "/profile/$did/albums" 236 - | "/profile/$did/artists" 237 - | "/profile/$did/library" 238 - | "/profile/$did/likes" 239 - | "/profile/$did/playlists" 240 - | "/profile/$did/scrobbles" 241 - | "/profile/$did/tags" 242 - | "/profile/$did/tracks" 243 - | "/profile/$did"; 244 - fileRoutesByTo: FileRoutesByTo; 222 + | '/' 223 + | '/apikeys' 224 + | '/loading' 225 + | '/scrobble' 226 + | '/dropbox/$id' 227 + | '/googledrive/$id' 228 + | '/dropbox' 229 + | '/googledrive' 230 + | '/$did/album/$rkey' 231 + | '/$did/artist/$rkey' 232 + | '/$did/playlist/$rkey' 233 + | '/$did/scrobble/$rkey' 234 + | '/$did/song/$rkey' 235 + | '/profile/$did/albums' 236 + | '/profile/$did/artists' 237 + | '/profile/$did/library' 238 + | '/profile/$did/likes' 239 + | '/profile/$did/playlists' 240 + | '/profile/$did/scrobbles' 241 + | '/profile/$did/tags' 242 + | '/profile/$did/tracks' 243 + | '/profile/$did' 244 + fileRoutesByTo: FileRoutesByTo 245 245 to: 246 - | "/" 247 - | "/apikeys" 248 - | "/loading" 249 - | "/scrobble" 250 - | "/dropbox/$id" 251 - | "/googledrive/$id" 252 - | "/dropbox" 253 - | "/googledrive" 254 - | "/$did/album/$rkey" 255 - | "/$did/artist/$rkey" 256 - | "/$did/playlist/$rkey" 257 - | "/$did/scrobble/$rkey" 258 - | "/$did/song/$rkey" 259 - | "/profile/$did/albums" 260 - | "/profile/$did/artists" 261 - | "/profile/$did/library" 262 - | "/profile/$did/likes" 263 - | "/profile/$did/playlists" 264 - | "/profile/$did/scrobbles" 265 - | "/profile/$did/tags" 266 - | "/profile/$did/tracks" 267 - | "/profile/$did"; 246 + | '/' 247 + | '/apikeys' 248 + | '/loading' 249 + | '/scrobble' 250 + | '/dropbox/$id' 251 + | '/googledrive/$id' 252 + | '/dropbox' 253 + | '/googledrive' 254 + | '/$did/album/$rkey' 255 + | '/$did/artist/$rkey' 256 + | '/$did/playlist/$rkey' 257 + | '/$did/scrobble/$rkey' 258 + | '/$did/song/$rkey' 259 + | '/profile/$did/albums' 260 + | '/profile/$did/artists' 261 + | '/profile/$did/library' 262 + | '/profile/$did/likes' 263 + | '/profile/$did/playlists' 264 + | '/profile/$did/scrobbles' 265 + | '/profile/$did/tags' 266 + | '/profile/$did/tracks' 267 + | '/profile/$did' 268 268 id: 269 - | "__root__" 270 - | "/" 271 - | "/apikeys" 272 - | "/loading" 273 - | "/scrobble" 274 - | "/dropbox/$id" 275 - | "/googledrive/$id" 276 - | "/dropbox/" 277 - | "/googledrive/" 278 - | "/$did/album/$rkey" 279 - | "/$did/artist/$rkey" 280 - | "/$did/playlist/$rkey" 281 - | "/$did/scrobble/$rkey" 282 - | "/$did/song/$rkey" 283 - | "/profile/$did/albums" 284 - | "/profile/$did/artists" 285 - | "/profile/$did/library" 286 - | "/profile/$did/likes" 287 - | "/profile/$did/playlists" 288 - | "/profile/$did/scrobbles" 289 - | "/profile/$did/tags" 290 - | "/profile/$did/tracks" 291 - | "/profile/$did/"; 292 - fileRoutesById: FileRoutesById; 269 + | '__root__' 270 + | '/' 271 + | '/apikeys' 272 + | '/loading' 273 + | '/scrobble' 274 + | '/dropbox/$id' 275 + | '/googledrive/$id' 276 + | '/dropbox/' 277 + | '/googledrive/' 278 + | '/$did/album/$rkey' 279 + | '/$did/artist/$rkey' 280 + | '/$did/playlist/$rkey' 281 + | '/$did/scrobble/$rkey' 282 + | '/$did/song/$rkey' 283 + | '/profile/$did/albums' 284 + | '/profile/$did/artists' 285 + | '/profile/$did/library' 286 + | '/profile/$did/likes' 287 + | '/profile/$did/playlists' 288 + | '/profile/$did/scrobbles' 289 + | '/profile/$did/tags' 290 + | '/profile/$did/tracks' 291 + | '/profile/$did/' 292 + fileRoutesById: FileRoutesById 293 293 } 294 294 export interface RootRouteChildren { 295 - IndexRoute: typeof IndexRoute; 296 - ApikeysRoute: typeof ApikeysRoute; 297 - LoadingRoute: typeof LoadingRoute; 298 - ScrobbleRoute: typeof ScrobbleRoute; 299 - DropboxIdRoute: typeof DropboxIdRoute; 300 - GoogledriveIdRoute: typeof GoogledriveIdRoute; 301 - DropboxIndexRoute: typeof DropboxIndexRoute; 302 - GoogledriveIndexRoute: typeof GoogledriveIndexRoute; 303 - DidAlbumRkeyRoute: typeof DidAlbumRkeyRoute; 304 - DidArtistRkeyRoute: typeof DidArtistRkeyRoute; 305 - DidPlaylistRkeyRoute: typeof DidPlaylistRkeyRoute; 306 - DidScrobbleRkeyRoute: typeof DidScrobbleRkeyRoute; 307 - DidSongRkeyRoute: typeof DidSongRkeyRoute; 308 - ProfileDidAlbumsRoute: typeof ProfileDidAlbumsRoute; 309 - ProfileDidArtistsRoute: typeof ProfileDidArtistsRoute; 310 - ProfileDidLibraryRoute: typeof ProfileDidLibraryRoute; 311 - ProfileDidLikesRoute: typeof ProfileDidLikesRoute; 312 - ProfileDidPlaylistsRoute: typeof ProfileDidPlaylistsRoute; 313 - ProfileDidScrobblesRoute: typeof ProfileDidScrobblesRoute; 314 - ProfileDidTagsRoute: typeof ProfileDidTagsRoute; 315 - ProfileDidTracksRoute: typeof ProfileDidTracksRoute; 316 - ProfileDidIndexRoute: typeof ProfileDidIndexRoute; 295 + IndexRoute: typeof IndexRoute 296 + ApikeysRoute: typeof ApikeysRoute 297 + LoadingRoute: typeof LoadingRoute 298 + ScrobbleRoute: typeof ScrobbleRoute 299 + DropboxIdRoute: typeof DropboxIdRoute 300 + GoogledriveIdRoute: typeof GoogledriveIdRoute 301 + DropboxIndexRoute: typeof DropboxIndexRoute 302 + GoogledriveIndexRoute: typeof GoogledriveIndexRoute 303 + DidAlbumRkeyRoute: typeof DidAlbumRkeyRoute 304 + DidArtistRkeyRoute: typeof DidArtistRkeyRoute 305 + DidPlaylistRkeyRoute: typeof DidPlaylistRkeyRoute 306 + DidScrobbleRkeyRoute: typeof DidScrobbleRkeyRoute 307 + DidSongRkeyRoute: typeof DidSongRkeyRoute 308 + ProfileDidAlbumsRoute: typeof ProfileDidAlbumsRoute 309 + ProfileDidArtistsRoute: typeof ProfileDidArtistsRoute 310 + ProfileDidLibraryRoute: typeof ProfileDidLibraryRoute 311 + ProfileDidLikesRoute: typeof ProfileDidLikesRoute 312 + ProfileDidPlaylistsRoute: typeof ProfileDidPlaylistsRoute 313 + ProfileDidScrobblesRoute: typeof ProfileDidScrobblesRoute 314 + ProfileDidTagsRoute: typeof ProfileDidTagsRoute 315 + ProfileDidTracksRoute: typeof ProfileDidTracksRoute 316 + ProfileDidIndexRoute: typeof ProfileDidIndexRoute 317 317 } 318 318 319 - declare module "@tanstack/react-router" { 319 + declare module '@tanstack/react-router' { 320 320 interface FileRoutesByPath { 321 - "/scrobble": { 322 - id: "/scrobble"; 323 - path: "/scrobble"; 324 - fullPath: "/scrobble"; 325 - preLoaderRoute: typeof ScrobbleRouteImport; 326 - parentRoute: typeof rootRouteImport; 327 - }; 328 - "/loading": { 329 - id: "/loading"; 330 - path: "/loading"; 331 - fullPath: "/loading"; 332 - preLoaderRoute: typeof LoadingRouteImport; 333 - parentRoute: typeof rootRouteImport; 334 - }; 335 - "/apikeys": { 336 - id: "/apikeys"; 337 - path: "/apikeys"; 338 - fullPath: "/apikeys"; 339 - preLoaderRoute: typeof ApikeysRouteImport; 340 - parentRoute: typeof rootRouteImport; 341 - }; 342 - "/": { 343 - id: "/"; 344 - path: "/"; 345 - fullPath: "/"; 346 - preLoaderRoute: typeof IndexRouteImport; 347 - parentRoute: typeof rootRouteImport; 348 - }; 349 - "/googledrive/": { 350 - id: "/googledrive/"; 351 - path: "/googledrive"; 352 - fullPath: "/googledrive"; 353 - preLoaderRoute: typeof GoogledriveIndexRouteImport; 354 - parentRoute: typeof rootRouteImport; 355 - }; 356 - "/dropbox/": { 357 - id: "/dropbox/"; 358 - path: "/dropbox"; 359 - fullPath: "/dropbox"; 360 - preLoaderRoute: typeof DropboxIndexRouteImport; 361 - parentRoute: typeof rootRouteImport; 362 - }; 363 - "/googledrive/$id": { 364 - id: "/googledrive/$id"; 365 - path: "/googledrive/$id"; 366 - fullPath: "/googledrive/$id"; 367 - preLoaderRoute: typeof GoogledriveIdRouteImport; 368 - parentRoute: typeof rootRouteImport; 369 - }; 370 - "/dropbox/$id": { 371 - id: "/dropbox/$id"; 372 - path: "/dropbox/$id"; 373 - fullPath: "/dropbox/$id"; 374 - preLoaderRoute: typeof DropboxIdRouteImport; 375 - parentRoute: typeof rootRouteImport; 376 - }; 377 - "/profile/$did/": { 378 - id: "/profile/$did/"; 379 - path: "/profile/$did"; 380 - fullPath: "/profile/$did"; 381 - preLoaderRoute: typeof ProfileDidIndexRouteImport; 382 - parentRoute: typeof rootRouteImport; 383 - }; 384 - "/profile/$did/tracks": { 385 - id: "/profile/$did/tracks"; 386 - path: "/profile/$did/tracks"; 387 - fullPath: "/profile/$did/tracks"; 388 - preLoaderRoute: typeof ProfileDidTracksRouteImport; 389 - parentRoute: typeof rootRouteImport; 390 - }; 391 - "/profile/$did/tags": { 392 - id: "/profile/$did/tags"; 393 - path: "/profile/$did/tags"; 394 - fullPath: "/profile/$did/tags"; 395 - preLoaderRoute: typeof ProfileDidTagsRouteImport; 396 - parentRoute: typeof rootRouteImport; 397 - }; 398 - "/profile/$did/scrobbles": { 399 - id: "/profile/$did/scrobbles"; 400 - path: "/profile/$did/scrobbles"; 401 - fullPath: "/profile/$did/scrobbles"; 402 - preLoaderRoute: typeof ProfileDidScrobblesRouteImport; 403 - parentRoute: typeof rootRouteImport; 404 - }; 405 - "/profile/$did/playlists": { 406 - id: "/profile/$did/playlists"; 407 - path: "/profile/$did/playlists"; 408 - fullPath: "/profile/$did/playlists"; 409 - preLoaderRoute: typeof ProfileDidPlaylistsRouteImport; 410 - parentRoute: typeof rootRouteImport; 411 - }; 412 - "/profile/$did/likes": { 413 - id: "/profile/$did/likes"; 414 - path: "/profile/$did/likes"; 415 - fullPath: "/profile/$did/likes"; 416 - preLoaderRoute: typeof ProfileDidLikesRouteImport; 417 - parentRoute: typeof rootRouteImport; 418 - }; 419 - "/profile/$did/library": { 420 - id: "/profile/$did/library"; 421 - path: "/profile/$did/library"; 422 - fullPath: "/profile/$did/library"; 423 - preLoaderRoute: typeof ProfileDidLibraryRouteImport; 424 - parentRoute: typeof rootRouteImport; 425 - }; 426 - "/profile/$did/artists": { 427 - id: "/profile/$did/artists"; 428 - path: "/profile/$did/artists"; 429 - fullPath: "/profile/$did/artists"; 430 - preLoaderRoute: typeof ProfileDidArtistsRouteImport; 431 - parentRoute: typeof rootRouteImport; 432 - }; 433 - "/profile/$did/albums": { 434 - id: "/profile/$did/albums"; 435 - path: "/profile/$did/albums"; 436 - fullPath: "/profile/$did/albums"; 437 - preLoaderRoute: typeof ProfileDidAlbumsRouteImport; 438 - parentRoute: typeof rootRouteImport; 439 - }; 440 - "/$did/song/$rkey": { 441 - id: "/$did/song/$rkey"; 442 - path: "/$did/song/$rkey"; 443 - fullPath: "/$did/song/$rkey"; 444 - preLoaderRoute: typeof DidSongRkeyRouteImport; 445 - parentRoute: typeof rootRouteImport; 446 - }; 447 - "/$did/scrobble/$rkey": { 448 - id: "/$did/scrobble/$rkey"; 449 - path: "/$did/scrobble/$rkey"; 450 - fullPath: "/$did/scrobble/$rkey"; 451 - preLoaderRoute: typeof DidScrobbleRkeyRouteImport; 452 - parentRoute: typeof rootRouteImport; 453 - }; 454 - "/$did/playlist/$rkey": { 455 - id: "/$did/playlist/$rkey"; 456 - path: "/$did/playlist/$rkey"; 457 - fullPath: "/$did/playlist/$rkey"; 458 - preLoaderRoute: typeof DidPlaylistRkeyRouteImport; 459 - parentRoute: typeof rootRouteImport; 460 - }; 461 - "/$did/artist/$rkey": { 462 - id: "/$did/artist/$rkey"; 463 - path: "/$did/artist/$rkey"; 464 - fullPath: "/$did/artist/$rkey"; 465 - preLoaderRoute: typeof DidArtistRkeyRouteImport; 466 - parentRoute: typeof rootRouteImport; 467 - }; 468 - "/$did/album/$rkey": { 469 - id: "/$did/album/$rkey"; 470 - path: "/$did/album/$rkey"; 471 - fullPath: "/$did/album/$rkey"; 472 - preLoaderRoute: typeof DidAlbumRkeyRouteImport; 473 - parentRoute: typeof rootRouteImport; 474 - }; 321 + '/scrobble': { 322 + id: '/scrobble' 323 + path: '/scrobble' 324 + fullPath: '/scrobble' 325 + preLoaderRoute: typeof ScrobbleRouteImport 326 + parentRoute: typeof rootRouteImport 327 + } 328 + '/loading': { 329 + id: '/loading' 330 + path: '/loading' 331 + fullPath: '/loading' 332 + preLoaderRoute: typeof LoadingRouteImport 333 + parentRoute: typeof rootRouteImport 334 + } 335 + '/apikeys': { 336 + id: '/apikeys' 337 + path: '/apikeys' 338 + fullPath: '/apikeys' 339 + preLoaderRoute: typeof ApikeysRouteImport 340 + parentRoute: typeof rootRouteImport 341 + } 342 + '/': { 343 + id: '/' 344 + path: '/' 345 + fullPath: '/' 346 + preLoaderRoute: typeof IndexRouteImport 347 + parentRoute: typeof rootRouteImport 348 + } 349 + '/googledrive/': { 350 + id: '/googledrive/' 351 + path: '/googledrive' 352 + fullPath: '/googledrive' 353 + preLoaderRoute: typeof GoogledriveIndexRouteImport 354 + parentRoute: typeof rootRouteImport 355 + } 356 + '/dropbox/': { 357 + id: '/dropbox/' 358 + path: '/dropbox' 359 + fullPath: '/dropbox' 360 + preLoaderRoute: typeof DropboxIndexRouteImport 361 + parentRoute: typeof rootRouteImport 362 + } 363 + '/googledrive/$id': { 364 + id: '/googledrive/$id' 365 + path: '/googledrive/$id' 366 + fullPath: '/googledrive/$id' 367 + preLoaderRoute: typeof GoogledriveIdRouteImport 368 + parentRoute: typeof rootRouteImport 369 + } 370 + '/dropbox/$id': { 371 + id: '/dropbox/$id' 372 + path: '/dropbox/$id' 373 + fullPath: '/dropbox/$id' 374 + preLoaderRoute: typeof DropboxIdRouteImport 375 + parentRoute: typeof rootRouteImport 376 + } 377 + '/profile/$did/': { 378 + id: '/profile/$did/' 379 + path: '/profile/$did' 380 + fullPath: '/profile/$did' 381 + preLoaderRoute: typeof ProfileDidIndexRouteImport 382 + parentRoute: typeof rootRouteImport 383 + } 384 + '/profile/$did/tracks': { 385 + id: '/profile/$did/tracks' 386 + path: '/profile/$did/tracks' 387 + fullPath: '/profile/$did/tracks' 388 + preLoaderRoute: typeof ProfileDidTracksRouteImport 389 + parentRoute: typeof rootRouteImport 390 + } 391 + '/profile/$did/tags': { 392 + id: '/profile/$did/tags' 393 + path: '/profile/$did/tags' 394 + fullPath: '/profile/$did/tags' 395 + preLoaderRoute: typeof ProfileDidTagsRouteImport 396 + parentRoute: typeof rootRouteImport 397 + } 398 + '/profile/$did/scrobbles': { 399 + id: '/profile/$did/scrobbles' 400 + path: '/profile/$did/scrobbles' 401 + fullPath: '/profile/$did/scrobbles' 402 + preLoaderRoute: typeof ProfileDidScrobblesRouteImport 403 + parentRoute: typeof rootRouteImport 404 + } 405 + '/profile/$did/playlists': { 406 + id: '/profile/$did/playlists' 407 + path: '/profile/$did/playlists' 408 + fullPath: '/profile/$did/playlists' 409 + preLoaderRoute: typeof ProfileDidPlaylistsRouteImport 410 + parentRoute: typeof rootRouteImport 411 + } 412 + '/profile/$did/likes': { 413 + id: '/profile/$did/likes' 414 + path: '/profile/$did/likes' 415 + fullPath: '/profile/$did/likes' 416 + preLoaderRoute: typeof ProfileDidLikesRouteImport 417 + parentRoute: typeof rootRouteImport 418 + } 419 + '/profile/$did/library': { 420 + id: '/profile/$did/library' 421 + path: '/profile/$did/library' 422 + fullPath: '/profile/$did/library' 423 + preLoaderRoute: typeof ProfileDidLibraryRouteImport 424 + parentRoute: typeof rootRouteImport 425 + } 426 + '/profile/$did/artists': { 427 + id: '/profile/$did/artists' 428 + path: '/profile/$did/artists' 429 + fullPath: '/profile/$did/artists' 430 + preLoaderRoute: typeof ProfileDidArtistsRouteImport 431 + parentRoute: typeof rootRouteImport 432 + } 433 + '/profile/$did/albums': { 434 + id: '/profile/$did/albums' 435 + path: '/profile/$did/albums' 436 + fullPath: '/profile/$did/albums' 437 + preLoaderRoute: typeof ProfileDidAlbumsRouteImport 438 + parentRoute: typeof rootRouteImport 439 + } 440 + '/$did/song/$rkey': { 441 + id: '/$did/song/$rkey' 442 + path: '/$did/song/$rkey' 443 + fullPath: '/$did/song/$rkey' 444 + preLoaderRoute: typeof DidSongRkeyRouteImport 445 + parentRoute: typeof rootRouteImport 446 + } 447 + '/$did/scrobble/$rkey': { 448 + id: '/$did/scrobble/$rkey' 449 + path: '/$did/scrobble/$rkey' 450 + fullPath: '/$did/scrobble/$rkey' 451 + preLoaderRoute: typeof DidScrobbleRkeyRouteImport 452 + parentRoute: typeof rootRouteImport 453 + } 454 + '/$did/playlist/$rkey': { 455 + id: '/$did/playlist/$rkey' 456 + path: '/$did/playlist/$rkey' 457 + fullPath: '/$did/playlist/$rkey' 458 + preLoaderRoute: typeof DidPlaylistRkeyRouteImport 459 + parentRoute: typeof rootRouteImport 460 + } 461 + '/$did/artist/$rkey': { 462 + id: '/$did/artist/$rkey' 463 + path: '/$did/artist/$rkey' 464 + fullPath: '/$did/artist/$rkey' 465 + preLoaderRoute: typeof DidArtistRkeyRouteImport 466 + parentRoute: typeof rootRouteImport 467 + } 468 + '/$did/album/$rkey': { 469 + id: '/$did/album/$rkey' 470 + path: '/$did/album/$rkey' 471 + fullPath: '/$did/album/$rkey' 472 + preLoaderRoute: typeof DidAlbumRkeyRouteImport 473 + parentRoute: typeof rootRouteImport 474 + } 475 475 } 476 476 } 477 477 ··· 498 498 ProfileDidTagsRoute: ProfileDidTagsRoute, 499 499 ProfileDidTracksRoute: ProfileDidTracksRoute, 500 500 ProfileDidIndexRoute: ProfileDidIndexRoute, 501 - }; 501 + } 502 502 export const routeTree = rootRouteImport 503 503 ._addFileChildren(rootRouteChildren) 504 - ._addFileTypes<FileRouteTypes>(); 504 + ._addFileTypes<FileRouteTypes>()