Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/spec-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
git config user.email "github-actions[bot]@users.noreply.github.com"
branch="chore/update-api-types-$(date +%Y%m%d%H%M%S)"
git checkout -b "$branch"
git add src/generated/api.ts docs/openapi/monitoring-api.json
git add -f src/generated/api.ts docs/openapi/monitoring-api.json
git commit -m "chore: update generated API types from latest spec"
git push -u origin "$branch"
gh pr create \
Expand Down
22 changes: 15 additions & 7 deletions docs/openapi/monitoring-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -6412,7 +6412,9 @@
"enum": [
"DASHBOARD",
"CLI",
"TERRAFORM"
"TERRAFORM",
"MCP",
"API"
]
}
},
Expand Down Expand Up @@ -23307,11 +23309,13 @@
},
"managedBy": {
"type": "string",
"description": "Who manages this monitor: DASHBOARD or CLI",
"description": "Source that created/owns this monitor: DASHBOARD, CLI, TERRAFORM, MCP, or API. Use the value matching your surface so audit logs, drift detection, and analytics attribute correctly.",
"enum": [
"DASHBOARD",
"CLI",
"TERRAFORM"
"TERRAFORM",
"MCP",
"API"
]
},
"environmentId": {
Expand Down Expand Up @@ -27194,11 +27198,13 @@
},
"managedBy": {
"type": "string",
"description": "Management source: DASHBOARD or CLI",
"description": "Source that created/owns this monitor: DASHBOARD, CLI, TERRAFORM, MCP, or API",
"enum": [
"DASHBOARD",
"CLI",
"TERRAFORM"
"TERRAFORM",
"MCP",
"API"
]
},
"createdAt": {
Expand Down Expand Up @@ -33345,12 +33351,14 @@
},
"managedBy": {
"type": "string",
"description": "New management source; null preserves current",
"description": "New ownership source: DASHBOARD, CLI, TERRAFORM, MCP, or API; null preserves current value",
"nullable": true,
"enum": [
"DASHBOARD",
"CLI",
"TERRAFORM"
"TERRAFORM",
"MCP",
"API"
]
},
"environmentId": {
Expand Down
Loading
Loading