Merge branch 'develop' into feat-1714
This commit is contained in:
@@ -5881,15 +5881,15 @@ export type operations = {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
id: string;
|
||||
memo: string;
|
||||
url: string;
|
||||
imageUrl: string;
|
||||
place: string;
|
||||
priority: string;
|
||||
ratio: number;
|
||||
expiresAt: number;
|
||||
startsAt: number;
|
||||
dayOfWeek: number;
|
||||
memo?: string;
|
||||
url?: string;
|
||||
imageUrl?: string;
|
||||
place?: string;
|
||||
priority?: string;
|
||||
ratio?: number;
|
||||
expiresAt?: number;
|
||||
startsAt?: number;
|
||||
dayOfWeek?: number;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -9744,21 +9744,21 @@ export type operations = {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
roleId: string;
|
||||
name: string;
|
||||
description: string;
|
||||
color: string | null;
|
||||
iconUrl: string | null;
|
||||
name?: string;
|
||||
description?: string;
|
||||
color?: string | null;
|
||||
iconUrl?: string | null;
|
||||
/** @enum {string} */
|
||||
target: 'manual' | 'conditional';
|
||||
condFormula: Record<string, never>;
|
||||
isPublic: boolean;
|
||||
isModerator: boolean;
|
||||
isAdministrator: boolean;
|
||||
target?: 'manual' | 'conditional';
|
||||
condFormula?: Record<string, never>;
|
||||
isPublic?: boolean;
|
||||
isModerator?: boolean;
|
||||
isAdministrator?: boolean;
|
||||
isExplorable?: boolean;
|
||||
asBadge: boolean;
|
||||
canEditMembersByModerator: boolean;
|
||||
displayOrder: number;
|
||||
policies: Record<string, never>;
|
||||
asBadge?: boolean;
|
||||
canEditMembersByModerator?: boolean;
|
||||
displayOrder?: number;
|
||||
policies?: Record<string, never>;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -13400,7 +13400,7 @@ export type operations = {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
clipId: string;
|
||||
name: string;
|
||||
name?: string;
|
||||
isPublic?: boolean;
|
||||
description?: string | null;
|
||||
};
|
||||
@@ -16247,9 +16247,9 @@ export type operations = {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
postId: string;
|
||||
title: string;
|
||||
title?: string;
|
||||
description?: string | null;
|
||||
fileIds: string[];
|
||||
fileIds?: string[];
|
||||
/** @default false */
|
||||
isSensitive?: boolean;
|
||||
};
|
||||
@@ -20030,12 +20030,11 @@ export type operations = {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
webhookId: string;
|
||||
name: string;
|
||||
url: string;
|
||||
/** @default */
|
||||
secret?: string;
|
||||
on: ('mention' | 'unfollow' | 'follow' | 'followed' | 'note' | 'reply' | 'renote' | 'reaction')[];
|
||||
active: boolean;
|
||||
name?: string;
|
||||
url?: string;
|
||||
secret?: string | null;
|
||||
on?: ('mention' | 'unfollow' | 'follow' | 'followed' | 'note' | 'reply' | 'renote' | 'reaction')[];
|
||||
active?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -23404,16 +23403,16 @@ export type operations = {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
pageId: string;
|
||||
title: string;
|
||||
name: string;
|
||||
title?: string;
|
||||
name?: string;
|
||||
summary?: string | null;
|
||||
content: {
|
||||
content?: {
|
||||
[key: string]: unknown;
|
||||
}[];
|
||||
variables: {
|
||||
variables?: {
|
||||
[key: string]: unknown;
|
||||
}[];
|
||||
script: string;
|
||||
script?: string;
|
||||
/** Format: misskey:id */
|
||||
eyeCatchingImageId?: string | null;
|
||||
/** @enum {string} */
|
||||
|
Reference in New Issue
Block a user