show grantee and rank info in tokens list

This commit is contained in:
Hazelnoot 2025-06-21 10:04:41 -04:00
parent fe53c16b23
commit 23e69eccbb
5 changed files with 86 additions and 18 deletions

View file

@ -22670,7 +22670,7 @@ export type operations = {
/** @description OK (with results) */
200: {
content: {
'application/json': {
'application/json': ({
/** Format: misskey:id */
id: string;
name?: string;
@ -22679,7 +22679,10 @@ export type operations = {
/** Format: date-time */
lastUsedAt?: string;
permission: string[];
}[];
grantees: components['schemas']['UserLite'][];
/** @enum {string|null} */
rank: 'admin' | 'mod' | 'user';
})[];
};
};
/** @description Client error */