chore(teams): regenerate the OpenAPI spec and the route manifests

`npm run swagger` + `npm run routes:manifest` for the one added route,
`GET /api/v1/public/teams/:slug/activity`, and for `optionalAuth` joining
`/teams/:slug/members`.

The guards manifest names `optionalAuth` on both, which is the point of that
file: a reviewer can see that two public routes now read the caller's identity
without reading the routers.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-08-17 20:16:04 -05:00
parent 8f4aff6946
commit 203ce9c654
3 changed files with 349 additions and 5 deletions

View File

@@ -1731,10 +1731,20 @@
},
{
"method": "GET",
"path": "/api/v1/public/teams/:slug/members",
"handlers": 2,
"path": "/api/v1/public/teams/:slug/activity",
"handlers": 3,
"gates": [
"siteMode"
"siteMode",
"optionalAuth"
]
},
{
"method": "GET",
"path": "/api/v1/public/teams/:slug/members",
"handlers": 3,
"gates": [
"siteMode",
"optionalAuth"
]
},
{