Skip to content

Commit f6394f1

Browse files
author
Aman Jain
committed
Merge branch 'main' of https://github.com/Azure/azure-rest-api-specs into dev/Aman-Jain-14/StorageCache_AutoImport_2025-05-01_API_spec
2 parents c969147 + fc1f625 commit f6394f1

File tree

3,868 files changed

+445605
-92236
lines changed

Some content is hidden

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

3,868 files changed

+445605
-92236
lines changed

.github/.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coverage

.github/CODEOWNERS

+3
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@
180180
# PRLabel: %Monitor - Operational Insights
181181
/specification/operationalinsights/ @sw47
182182

183+
# PRLabel: %Online Experimentation
184+
/specification/onlineexperimentation/ @Azure/azure-sdk-write-onlineexperimentation
185+
183186
# PRLabel: %Operations Management
184187
/specification/operationsmanagement/ @dashimi16
185188

.github/dependabot.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ updates:
4040
versioning-strategy: increase-if-necessary
4141
- package-ecosystem: "npm"
4242
directories:
43-
- "/.github/"
43+
- "/.github"
44+
- "/.github/shared"
4445
schedule:
4546
interval: "daily"
4647
ignore:

.github/package-lock.json

+329-302
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,30 @@
11
{
2+
"private": "true",
23
"type": "module",
34
"_comments": {
4-
"dependencies": "Runtime dependencies must be kept to an absolute minimum for performance, ideally with no transitive dependencies"
5+
"dependencies": "Runtime dependencies must be kept to an absolute minimum for performance, ideally with no transitive dependencies",
6+
"dependencies2": "All runtime and dev dependencies in this file, must be a superset of shared/package.json"
57
},
68
"dependencies": {
79
"@apidevtools/json-schema-ref-parser": "^11.9.3",
10+
"debug": "^4.4.0",
811
"js-yaml": "^4.1.0",
9-
"marked": "^15.0.7"
12+
"marked": "^15.0.7",
13+
"simple-git": "^3.27.0"
1014
},
1115
"devDependencies": {
1216
"@eslint/js": "^9.22.0",
1317
"@octokit/webhooks-types": "^7.5.1",
1418
"@tsconfig/node20": "^20.1.4",
19+
"@types/debug": "^4.1.12",
1520
"@types/github-script": "github:actions/github-script",
1621
"@types/js-yaml": "^4.0.9",
1722
"@types/node": "^20.0.0",
1823
"@vitest/coverage-v8": "^3.0.7",
1924
"eslint": "^9.22.0",
2025
"globals": "^16.0.0",
2126
"prettier": "~3.5.3",
27+
"semver": "^7.7.1",
2228
"typescript": "~5.8.2",
2329
"vitest": "^3.0.7"
2430
},

.github/shared/.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coverage

.github/shared/eslint.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import pluginJs from "@eslint/js";
2+
import globals from "globals";
3+
4+
/** @type {import('eslint').Linter.Config[]} */
5+
export default [
6+
{ languageOptions: { globals: globals.node } },
7+
pluginJs.configs.recommended,
8+
];

0 commit comments

Comments
 (0)