Skip to content

Commit 58f706b

Browse files
committed
fix: fixes after rebase
1 parent 28c3a60 commit 58f706b

466 files changed

Lines changed: 27956 additions & 8813 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../../../../../generated/api.github.com.yaml/enterprises/[enterprise]/copilot/billing/seats/route"
2+
3+
export const GET = _GET(async ({ params, 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/enterprises/[enterprise]/copilot/usage/route"
2+
3+
export const GET = _GET(async ({ params, 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 { _GET } from "../../../../../../../../generated/api.github.com.yaml/enterprises/[enterprise]/team/[team_slug]/copilot/usage/route"
2+
3+
export const GET = _GET(async ({ params, 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/orgs/[org]/attestations/[subject_digest]/route"
2+
3+
export const GET = _GET(async ({ params, 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/orgs/[org]/code-security/configurations/[configuration_id]/attach/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+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _PUT } from "../../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/defaults/route"
2+
3+
export const PUT = _PUT(async ({ params, body }, 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 { _GET } from "../../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/repositories/route"
2+
3+
export const GET = _GET(async ({ params, 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,18 @@
1+
import {
2+
_GET,
3+
_PATCH,
4+
_DELETE,
5+
} from "../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/route"
6+
7+
export const GET = _GET(async ({ params }, respond, context) => {
8+
// TODO: implementation
9+
return respond.withStatus(501).body({ message: "not implemented" } as any)
10+
})
11+
export const PATCH = _PATCH(async ({ params, body }, respond, context) => {
12+
// TODO: implementation
13+
return respond.withStatus(501).body({ message: "not implemented" } as any)
14+
})
15+
export const DELETE = _DELETE(async ({ params }, respond, context) => {
16+
// TODO: implementation
17+
return respond.withStatus(501).body({ message: "not implemented" } as any)
18+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _GET } from "../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/defaults/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+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { _DELETE } from "../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/detach/route"
2+
3+
export const DELETE = _DELETE(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)