Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ddff050
Dependabot auto sync
timotheeguerin Mar 27, 2026
33fcf6a
extra filter
timotheeguerin Mar 27, 2026
95bf0fc
only on original pr
timotheeguerin Mar 27, 2026
13e0ab8
tweaks
timotheeguerin Mar 27, 2026
0d6a6cc
compute playground samples from samples package
timotheeguerin Apr 2, 2026
16b37ea
Use category
timotheeguerin Apr 2, 2026
b83c28e
abc
timotheeguerin Apr 3, 2026
023a607
don't include multi files for now
timotheeguerin Apr 3, 2026
cf31106
Merge branch 'main' of https://github.com/Azure/typespec-azure into s…
timotheeguerin Apr 3, 2026
3fa1f51
bump
timotheeguerin Apr 3, 2026
e5937c9
Merge branch 'main' of https://github.com/Azure/typespec-azure into s…
timotheeguerin Apr 7, 2026
145a61e
Merge branch 'main' into samples-unify-playground
timotheeguerin Apr 7, 2026
6ff2d8e
Merge branch 'main' into samples-unify-playground
timotheeguerin Apr 8, 2026
829896f
Merge branch 'main' into samples-unify-playground
timotheeguerin Apr 10, 2026
18d46c6
Merge branch 'main' into samples-unify-playground
timotheeguerin Apr 13, 2026
fe2a9ed
Merge branch 'main' of https://github.com/Azure/typespec-azure into s…
timotheeguerin Apr 20, 2026
6ca5086
Merge branch 'main' of https://github.com/timotheeguerin/typespec-azu…
timotheeguerin May 7, 2026
52dc6ed
Merge branch 'main' of https://github.com/Azure/typespec-azure into s…
timotheeguerin May 7, 2026
72ae7ba
use main core
timotheeguerin May 7, 2026
8c5ede0
fix merge issues
timotheeguerin May 7, 2026
d0a53ab
fix lock
timotheeguerin May 7, 2026
d1b811f
fix e2e tests
timotheeguerin May 7, 2026
b60bfb6
f
timotheeguerin May 7, 2026
4bab2fe
skip legacy from
timotheeguerin May 8, 2026
518120e
order
timotheeguerin May 8, 2026
b15d26b
fmt
timotheeguerin May 11, 2026
43135db
Merge branch 'main' of https://github.com/Azure/typespec-azure into s…
timotheeguerin May 15, 2026
2ffe744
use core
timotheeguerin May 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ using Versioning;
using Azure.Core;
using Azure.Core.Traits;

@service
@service(#{ title: "Azure Core Scalars" })
@versioned(Contoso.WidgetManager.Versions)
@useAuth(ApiKeyAuth<ApiKeyLocation.header, "X-Key">)
namespace Contoso.WidgetManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ title: Widget Manager
description: Sample configuration for widget-manager in data-plane.

llmstxt: true
order: 1
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
directory: true
danger: These samples are for grandfathered specs only and should not be used for new specs.
order: 1000
playground: false
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"swagger": "2.0",
"info": {
"title": "(title)",
"title": "Azure Core Scalars",
"version": "2022-08-31",
"x-typespec-generated": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.0
info:
title: (title)
title: Azure Core Scalars
version: '2022-08-31'
tags: []
paths:
Expand Down
5 changes: 3 additions & 2 deletions packages/typespec-azure-playground-website/e2e/smoke.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ test.describe("typespec-azure-playground-website UI tests", () => {
await page.goto(host);
const samplesButton = page.locator('button[aria-label="Browse samples"]');
await samplesButton.click();
await page.locator("text=Azure Resource Manager framework").first().click();
await expect(page.getByText(`"title": "ContosoProviderHubClient"`)).toBeVisible();
await page.locator("text=Azure Core Scalars").first().click();
// Check the version is there
await expect(page.getByText(`"title": "Azure Core Scalars"`)).toBeVisible();
});
});
1 change: 0 additions & 1 deletion packages/typespec-azure-playground-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<html lang="en">
<head>
<script type="module" async src="./node_modules/es-module-shims"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TypeSpec Azure Playground</title>
Expand Down
7 changes: 5 additions & 2 deletions packages/typespec-azure-playground-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
},
"scripts": {
"clean": "rimraf ./dist ./dist-dev ./temp ./samples/dist",
"build-samples": "node ./samples/build.js",
"build-samples": "tsx ./samples/build.ts",
"build": "npm run build-samples && tsc -p tsconfig.build.json && vite build 2>&1",
"preview": "pnpm build && vite preview",
"start": "npm run -s watch",
"test": "vitest run",
"test:ci": "vitest run",
Expand Down Expand Up @@ -74,7 +75,8 @@
"es-module-shims": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"vite": "catalog:"
"vite": "catalog:",
"yaml": "catalog:"
},
"devDependencies": {
"@playwright/test": "catalog:",
Expand All @@ -86,6 +88,7 @@
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"cross-env": "catalog:",
"pathe": "catalog:",
"rimraf": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
Expand Down
129 changes: 0 additions & 129 deletions packages/typespec-azure-playground-website/samples/arm.tsp

This file was deleted.

Loading
Loading