Merge branch 'develop' into re-ed25519
This commit is contained in:
commit
c137167c2c
57 changed files with 1203 additions and 710 deletions
|
|
@ -3789,6 +3789,7 @@ export type components = {
|
|||
/** @default false */
|
||||
securityKeys: boolean;
|
||||
roles: components['schemas']['RoleLite'][];
|
||||
followedMessage?: string | null;
|
||||
memo: string | null;
|
||||
moderationNote?: string;
|
||||
isFollowing?: boolean;
|
||||
|
|
@ -3808,6 +3809,7 @@ export type components = {
|
|||
avatarId: string | null;
|
||||
/** Format: id */
|
||||
bannerId: string | null;
|
||||
followedMessage: string | null;
|
||||
isModerator: boolean | null;
|
||||
isAdmin: boolean | null;
|
||||
injectFeaturedNote: boolean;
|
||||
|
|
@ -4247,7 +4249,7 @@ export type components = {
|
|||
user: components['schemas']['UserLite'];
|
||||
/** Format: id */
|
||||
userId: string;
|
||||
} | {
|
||||
} | ({
|
||||
/** Format: id */
|
||||
id: string;
|
||||
/** Format: date-time */
|
||||
|
|
@ -4257,7 +4259,8 @@ export type components = {
|
|||
user: components['schemas']['UserLite'];
|
||||
/** Format: id */
|
||||
userId: string;
|
||||
} | {
|
||||
message: string | null;
|
||||
}) | {
|
||||
/** Format: id */
|
||||
id: string;
|
||||
/** Format: date-time */
|
||||
|
|
@ -8936,6 +8939,7 @@ export type operations = {
|
|||
'application/json': {
|
||||
email: string | null;
|
||||
emailVerified: boolean;
|
||||
followedMessage: string | null;
|
||||
autoAcceptFollowed: boolean;
|
||||
noCrawle: boolean;
|
||||
preventAiLearning: boolean;
|
||||
|
|
@ -19676,6 +19680,7 @@ export type operations = {
|
|||
'application/json': {
|
||||
name?: string | null;
|
||||
description?: string | null;
|
||||
followedMessage?: string | null;
|
||||
location?: string | null;
|
||||
birthday?: string | null;
|
||||
/** @enum {string|null} */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue