build misskey-js with types
This commit is contained in:
parent
8d1b2f2089
commit
2b75b575ac
|
|
@ -4824,6 +4824,8 @@ export type components = {
|
|||
createdAt: string;
|
||||
/** Format: date-time */
|
||||
expiresAt: string | null;
|
||||
/** @enum {string} */
|
||||
mutingType: 'all' | 'timelineOnly';
|
||||
/** Format: id */
|
||||
muteeId: string;
|
||||
mutee: components['schemas']['UserDetailedNotMe'];
|
||||
|
|
@ -28619,6 +28621,12 @@ export interface operations {
|
|||
userId: string;
|
||||
/** @description A Unix Epoch timestamp that must lie in the future. `null` means an indefinite mute. */
|
||||
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';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue