Skip to content

Commit

Permalink
fix: fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mnahkies committed Aug 26, 2024
1 parent 28c3a60 commit 58f706b
Show file tree
Hide file tree
Showing 466 changed files with 27,956 additions and 8,813 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../generated/api.github.com.yaml/enterprises/[enterprise]/copilot/billing/seats/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/api.github.com.yaml/enterprises/[enterprise]/copilot/usage/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../../generated/api.github.com.yaml/enterprises/[enterprise]/team/[team_slug]/copilot/usage/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/api.github.com.yaml/orgs/[org]/attestations/[subject_digest]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/attach/route"

export const POST = _POST(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _PUT } from "../../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/defaults/route"

export const PUT = _PUT(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/repositories/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import {
_GET,
_PATCH,
_DELETE,
} from "../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const PATCH = _PATCH(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const DELETE = _DELETE(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/defaults/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _DELETE } from "../../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/detach/route"

export const DELETE = _DELETE(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import {
_GET,
_POST,
} from "../../../../../../generated/api.github.com.yaml/orgs/[org]/code-security/configurations/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const POST = _POST(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/api.github.com.yaml/orgs/[org]/copilot/usage/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
import {
_GET,
_PATCH,
_DELETE,
} from "../../../../../../generated/api.github.com.yaml/orgs/[org]/organization-roles/[role_id]/route"
import { _GET } from "../../../../../../generated/api.github.com.yaml/orgs/[org]/organization-roles/[role_id]/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const PATCH = _PATCH(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const DELETE = _DELETE(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
import {
_GET,
_POST,
} from "../../../../../generated/api.github.com.yaml/orgs/[org]/organization-roles/route"
import { _GET } from "../../../../../generated/api.github.com.yaml/orgs/[org]/organization-roles/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const POST = _POST(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../../generated/api.github.com.yaml/orgs/[org]/team/[team_slug]/copilot/usage/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/attestations/[subject_digest]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/attestations/route"

export const POST = _POST(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/code-scanning/codeql/variant-analyses/[codeql_variant_analysis_id]/repos/[repo_owner]/[repo_name]/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/code-scanning/codeql/variant-analyses/[codeql_variant_analysis_id]/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/code-scanning/codeql/variant-analyses/route"

export const POST = _POST(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/code-security-configuration/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../../../../generated/api.github.com.yaml/repos/[owner]/[repo]/secret-scanning/push-protection-bypasses/route"

export const POST = _POST(async ({ params, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { _GET } from "../../../../../generated/api.github.com.yaml/orgs/[org]/organization-fine-grained-permissions/route"
import { _GET } from "../../../../generated/api.github.com.yaml/user/[account_id]/route"

export const GET = _GET(async ({ params }, respond, context) => {
// TODO: implementation
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/api.github.com.yaml/users/[username]/attestations/[subject_digest]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/azure-core-data-plane-service.tsp/manufacturers/[manufacturerId]/operations/[operationId]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import {
_PUT,
_GET,
_DELETE,
} from "../../../../generated/azure-core-data-plane-service.tsp/manufacturers/[manufacturerId]/route"

export const PUT = _PUT(async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const DELETE = _DELETE(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../generated/azure-core-data-plane-service.tsp/manufacturers/route"

export const GET = _GET(async ({ query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../generated/azure-core-data-plane-service.tsp/service-status/route"

export const GET = _GET(async ({ query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetId]/repairs/[operationId]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import {
_GET,
_PATCH,
} from "../../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/analytics/current/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const PATCH = _PATCH(
async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
},
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/operations/[operationId]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts/[widgetPartName]/operations/[operationId]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import {
_GET,
_DELETE,
} from "../../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts/[widgetPartName]/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const DELETE = _DELETE(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import {
_POST,
_GET,
} from "../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts/route"

export const POST = _POST(async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts:reorderParts/route"

export const POST = _POST(async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import {
_PATCH,
_GET,
_DELETE,
} from "../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]/route"

export const PATCH = _PATCH(
async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
},
)
export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
export const DELETE = _DELETE(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../generated/azure-core-data-plane-service.tsp/widgets/[widgetName]:scheduleRepairs/route"

export const POST = _POST(async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../generated/azure-core-data-plane-service.tsp/widgets/route"

export const GET = _GET(async ({ query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../generated/azure-resource-manager.tsp/providers/Microsoft.ContosoProviderHub/operations/route"

export const GET = _GET(async ({ query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _GET } from "../../../../../../../generated/azure-resource-manager.tsp/subscriptions/[subscriptionId]/providers/Microsoft.ContosoProviderHub/employees/route"

export const GET = _GET(async ({ params, query }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { _POST } from "../../../../../../../../../../../generated/azure-resource-manager.tsp/subscriptions/[subscriptionId]/resourceGroups/[resourceGroupName]/providers/Microsoft.ContosoProviderHub/employees/[employeeName]/move/route"

export const POST = _POST(async ({ params, query, body }, respond, context) => {
// TODO: implementation
return respond.withStatus(501).body({ message: "not implemented" } as any)
})
Loading

0 comments on commit 58f706b

Please sign in to comment.