update deps (MisskeyIO#775)

This commit is contained in:
あわわわとーにゅ 2024-10-23 05:48:11 +09:00 committed by GitHub
parent 6e07857b1c
commit f33e1b5e87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 3584 additions and 2046 deletions

View file

@ -211,7 +211,10 @@ export function genOpenapiSpec(config: Config, includeSelfRef = false) {
spec.paths['/' + endpoint.name] = {
...(endpoint.meta.allowGet ? {
get: info,
get: {
...info,
operationId: info.operationId + '_get',
},
} : {}),
post: info,
};