Skip to content

Commit f0ce0ce

Browse files
committed
fix: relative imports
1 parent bfbbaf4 commit f0ce0ce

File tree

2,068 files changed

+298259
-551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,068 files changed

+298259
-551
lines changed

integration-tests/typescript-nextjs/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
"build": "next build",
88
"start": "next start",
99
"lint": "next lint",
10-
"clean": "rm -rf ./.next && rm -rf ./src/api",
10+
"clean": "rm -rf ./.next && rm -rf ./src/generated && rm -rf -- ./src/app/*/",
1111
"validate": "tsc -p ./tsconfig.json"
1212
},
1313
"dependencies": {
14-
"next": "14.1.4",
15-
"react": "^18",
16-
"react-dom": "^18"
14+
"next": "14.2.2",
15+
"react": "^18.2.0",
16+
"react-dom": "^18.2.0"
1717
},
1818
"devDependencies": {
19-
"@types/node": "^20",
20-
"@types/react": "^18",
21-
"@types/react-dom": "^18",
19+
"@types/node": "^20.12.7",
20+
"@types/react": "^18.2.79",
21+
"@types/react-dom": "^18.2.25",
2222
"typescript": "^5"
2323
}
2424
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../../generated/api.github.com.yaml/advisories/[ghsa_id]/route"
2+
3+
export const GET = _GET(async ({ params }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../generated/api.github.com.yaml/advisories/route"
2+
3+
export const GET = _GET(async ({ query }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _POST } from "../../../../../generated/api.github.com.yaml/app-manifests/[code]/conversions/route"
2+
3+
export const POST = _POST(async ({ params }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import {
2+
_GET,
3+
_PATCH,
4+
} from "../../../../../generated/api.github.com.yaml/app/hook/config/route"
5+
6+
export const GET = _GET(async ({}, respond, context) => {
7+
// TODO: implementation
8+
return respond.withStatus(501).body({ message: "not implemented" } as any)
9+
})
10+
export const PATCH = _PATCH(async ({ body }, respond, context) => {
11+
// TODO: implementation
12+
return respond.withStatus(501).body({ message: "not implemented" } as any)
13+
})
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _POST } from "../../../../../../../generated/api.github.com.yaml/app/hook/deliveries/[delivery_id]/attempts/route"
2+
3+
export const POST = _POST(async ({ params }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../../../../generated/api.github.com.yaml/app/hook/deliveries/[delivery_id]/route"
2+
3+
export const GET = _GET(async ({ params }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../../../generated/api.github.com.yaml/app/hook/deliveries/route"
2+
3+
export const GET = _GET(async ({ query }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../../generated/api.github.com.yaml/app/installation-requests/route"
2+
3+
export const GET = _GET(async ({ query }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _POST } from "../../../../../../generated/api.github.com.yaml/app/installations/[installation_id]/access_tokens/route"
2+
3+
export const POST = _POST(async ({ params, body }, respond, context) => {
4+
// TODO: implementation
5+
return respond.withStatus(501).body({ message: "not implemented" } as any)
6+
})

0 commit comments

Comments
 (0)