build misskey-js with types

This commit is contained in:
kakkokari-gtyih 2025-11-08 11:56:42 +09:00
parent 8d1b2f2089
commit 2b75b575ac
1 changed files with 8 additions and 0 deletions

View File

@ -4824,6 +4824,8 @@ export type components = {
createdAt: string; createdAt: string;
/** Format: date-time */ /** Format: date-time */
expiresAt: string | null; expiresAt: string | null;
/** @enum {string} */
mutingType: 'all' | 'timelineOnly';
/** Format: id */ /** Format: id */
muteeId: string; muteeId: string;
mutee: components['schemas']['UserDetailedNotMe']; mutee: components['schemas']['UserDetailedNotMe'];
@ -28619,6 +28621,12 @@ export interface operations {
userId: string; userId: string;
/** @description A Unix Epoch timestamp that must lie in the future. `null` means an indefinite mute. */ /** @description A Unix Epoch timestamp that must lie in the future. `null` means an indefinite mute. */
expiresAt?: number | null; expiresAt?: number | null;
/**
* @description Type of muting. `all` mutes everything including notifications. `timelineOnly` mutes only timeline and search, but allows notifications.
* @default all
* @enum {string}
*/
mutingType?: 'all' | 'timelineOnly';
}; };
}; };
}; };