fix response type of i/registry/get endpoint

This commit is contained in:
Hazelnoot 2025-06-07 20:22:40 -04:00
parent 735cd12654
commit 16858cf2f7
2 changed files with 2 additions and 4 deletions

View file

@ -20,9 +20,7 @@ export const meta = {
},
},
res: {
type: 'object',
},
res: {},
// 10 calls per 5 seconds
limit: {

View file

@ -24267,7 +24267,7 @@ export type operations = {
/** @description OK (with results) */
200: {
content: {
'application/json': Record<string, never>;
'application/json': unknown;
};
};
/** @description Client error */