mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-24 20:54:13 +02:00
build misskey-js with types
This commit is contained in:
@@ -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';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user