-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
466 changed files
with
27,956 additions
and
8,813 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
...extjs/src/app/api.github.com.yaml/enterprises/[enterprise]/copilot/billing/seats/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...script-nextjs/src/app/api.github.com.yaml/enterprises/[enterprise]/copilot/usage/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
.../app/api.github.com.yaml/enterprises/[enterprise]/team/[team_slug]/copilot/usage/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...ript-nextjs/src/app/api.github.com.yaml/orgs/[org]/attestations/[subject_digest]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...ithub.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/attach/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...hub.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/defaults/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/repositories/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
18 changes: 18 additions & 0 deletions
18
...p/api.github.com.yaml/orgs/[org]/code-security/configurations/[configuration_id]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...tjs/src/app/api.github.com.yaml/orgs/[org]/code-security/configurations/defaults/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...extjs/src/app/api.github.com.yaml/orgs/[org]/code-security/configurations/detach/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
13 changes: 13 additions & 0 deletions
13
...cript-nextjs/src/app/api.github.com.yaml/orgs/[org]/code-security/configurations/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...ion-tests/typescript-nextjs/src/app/api.github.com.yaml/orgs/[org]/copilot/usage/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
14 changes: 1 addition & 13 deletions
14
...cript-nextjs/src/app/api.github.com.yaml/orgs/[org]/organization-roles/[role_id]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
9 changes: 1 addition & 8 deletions
9
...ests/typescript-nextjs/src/app/api.github.com.yaml/orgs/[org]/organization-roles/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...ipt-nextjs/src/app/api.github.com.yaml/orgs/[org]/team/[team_slug]/copilot/usage/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...s/src/app/api.github.com.yaml/repos/[owner]/[repo]/attestations/[subject_digest]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
.../typescript-nextjs/src/app/api.github.com.yaml/repos/[owner]/[repo]/attestations/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...eql/variant-analyses/[codeql_variant_analysis_id]/repos/[repo_owner]/[repo_name]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...owner]/[repo]/code-scanning/codeql/variant-analyses/[codeql_variant_analysis_id]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...p/api.github.com.yaml/repos/[owner]/[repo]/code-scanning/codeql/variant-analyses/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...tjs/src/app/api.github.com.yaml/repos/[owner]/[repo]/code-security-configuration/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...pi.github.com.yaml/repos/[owner]/[repo]/secret-scanning/push-protection-bypasses/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
2 changes: 1 addition & 1 deletion
2
...ization-fine-grained-permissions/route.ts → ...ithub.com.yaml/user/[account_id]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...extjs/src/app/api.github.com.yaml/users/[username]/attestations/[subject_digest]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...e-data-plane-service.tsp/manufacturers/[manufacturerId]/operations/[operationId]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
18 changes: 18 additions & 0 deletions
18
...-nextjs/src/app/azure-core-data-plane-service.tsp/manufacturers/[manufacturerId]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...-tests/typescript-nextjs/src/app/azure-core-data-plane-service.tsp/manufacturers/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...tests/typescript-nextjs/src/app/azure-core-data-plane-service.tsp/service-status/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...c/app/azure-core-data-plane-service.tsp/widgets/[widgetId]/repairs/[operationId]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
15 changes: 15 additions & 0 deletions
15
...src/app/azure-core-data-plane-service.tsp/widgets/[widgetName]/analytics/current/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}, | ||
) |
6 changes: 6 additions & 0 deletions
6
.../azure-core-data-plane-service.tsp/widgets/[widgetName]/operations/[operationId]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...service.tsp/widgets/[widgetName]/parts/[widgetPartName]/operations/[operationId]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
13 changes: 13 additions & 0 deletions
13
...pp/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts/[widgetPartName]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
13 changes: 13 additions & 0 deletions
13
...ript-nextjs/src/app/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...rc/app/azure-core-data-plane-service.tsp/widgets/[widgetName]/parts:reorderParts/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
20 changes: 20 additions & 0 deletions
20
...typescript-nextjs/src/app/azure-core-data-plane-service.tsp/widgets/[widgetName]/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...s/src/app/azure-core-data-plane-service.tsp/widgets/[widgetName]:scheduleRepairs/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...ration-tests/typescript-nextjs/src/app/azure-core-data-plane-service.tsp/widgets/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...app/azure-resource-manager.tsp/providers/Microsoft.ContosoProviderHub/operations/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
.../subscriptions/[subscriptionId]/providers/Microsoft.ContosoProviderHub/employees/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
6 changes: 6 additions & 0 deletions
6
...eGroupName]/providers/Microsoft.ContosoProviderHub/employees/[employeeName]/move/route.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) |
Oops, something went wrong.