Skip to content

Commit da69df9

Browse files
committed
fix: update nextjs routes file
1 parent f6525d1 commit da69df9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

types/nextjs-routes.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
22
// This file will be automatically regenerated when your Next.js server is running.
3-
// nextjs-routes version: 2.0.1
3+
// nextjs-routes version: 2.2.1
44
/* eslint-disable */
55

66
// prettier-ignore
@@ -11,6 +11,7 @@ declare module "nextjs-routes" {
1111
} from "next";
1212

1313
export type Route =
14+
| StaticRoute<"/">
1415
| DynamicRoute<"/api/as-api/[...asProxy]", { "asProxy": string[] }>
1516
| DynamicRoute<"/api/auth/[auth0]", { "auth0": string }>
1617
| StaticRoute<"/api/configuration/ui-version">
@@ -23,6 +24,7 @@ declare module "nextjs-routes" {
2324
| StaticRoute<"/docs/concepts">
2425
| StaticRoute<"/docs/developer">
2526
| StaticRoute<"/docs/guided-tour">
27+
| StaticRoute<"/docs/how-to">
2628
| StaticRoute<"/docs/how-to/applications">
2729
| StaticRoute<"/docs/how-to/context">
2830
| StaticRoute<"/docs/how-to/create-project">
@@ -32,17 +34,15 @@ declare module "nextjs-routes" {
3234
| StaticRoute<"/docs/how-to/projects-tab">
3335
| StaticRoute<"/docs/how-to/results">
3436
| StaticRoute<"/docs/how-to/usage-quotas">
35-
| StaticRoute<"/docs/how-to">
3637
| StaticRoute<"/docs/jobs">
37-
| StaticRoute<"/">
3838
| DynamicRoute<"/organisation/[organisationId]/inventory", { "organisationId": string }>
3939
| DynamicRoute<"/product/[productId]/charges", { "productId": string }>
4040
| StaticRoute<"/products">
41-
| StaticRoute<"/project/file">
4241
| StaticRoute<"/project">
42+
| StaticRoute<"/project/file">
43+
| StaticRoute<"/results">
4344
| DynamicRoute<"/results/instance/[instanceId]", { "instanceId": string }>
4445
| DynamicRoute<"/results/task/[taskId]", { "taskId": string }>
45-
| StaticRoute<"/results">
4646
| StaticRoute<"/run">
4747
| DynamicRoute<"/unit/[unitId]/charges", { "unitId": string }>
4848
| DynamicRoute<"/unit/[unitId]/inventory", { "unitId": string }>

0 commit comments

Comments
 (0)