Merge branch 'develop' into upstream/2025.5.0

This commit is contained in:
dakkar 2025-06-10 14:02:32 +01:00
commit 3ebf9c4a71
317 changed files with 6144 additions and 2603 deletions

View file

@ -3840,7 +3840,7 @@ declare module '../api.js' {
/**
* No description provided.
*
* **Credential required**: *Yes* / **Permission**: *read:account*
* **Credential required**: *No*
*/
request<E extends 'notes/polls/recommendation', P extends Endpoints[E]['req']>(
endpoint: E,

View file

@ -3317,7 +3317,7 @@ export type paths = {
* notes/polls/recommendation
* @description No description provided.
*
* **Credential required**: *Yes* / **Permission**: *read:account*
* **Credential required**: *No*
*/
post: operations['notes___polls___recommendation'];
};
@ -4286,6 +4286,7 @@ export type components = {
iconUrl: string | null;
faviconUrl: string | null;
themeColor: string | null;
isSilenced: boolean;
};
followersCount: number;
followingCount: number;
@ -4300,6 +4301,7 @@ export type components = {
iconUrl: string | null;
displayOrder: number;
})[];
attributionDomains: string[];
};
UserDetailedNotMeOnly: {
/** Format: url */
@ -5298,6 +5300,7 @@ export type components = {
rejectReports: boolean;
rejectQuotes: boolean;
moderationNote?: string | null;
isBubbled: boolean;
};
GalleryPost: {
/**
@ -6199,6 +6202,7 @@ export type operations = {
assigneeId: string | null;
reporter: components['schemas']['UserDetailedNotMe'];
targetUser: components['schemas']['UserDetailedNotMe'];
targetInstance: components['schemas']['FederationInstance'] | null;
assignee: components['schemas']['UserDetailedNotMe'] | null;
forwarded: boolean;
/** @enum {string|null} */
@ -11217,6 +11221,7 @@ export type operations = {
}]>;
};
isModerator: boolean;
isAdministrator: boolean;
isSystem: boolean;
isSilenced: boolean;
isSuspended: boolean;
@ -12929,7 +12934,14 @@ export type operations = {
requestBody: {
content: {
'application/json': {
uri: string;
uri?: string | null;
/** Format: misskey:id */
userId?: string | null;
/** Format: misskey:id */
noteId?: string | null;
expandCollectionItems?: boolean;
expandCollectionLimit?: number | null;
allowAnonymous?: boolean;
};
};
};
@ -24267,7 +24279,7 @@ export type operations = {
/** @description OK (with results) */
200: {
content: {
'application/json': Record<string, never>;
'application/json': unknown;
};
};
/** @description Client error */
@ -25192,6 +25204,7 @@ export type operations = {
defaultCWPriority?: 'default' | 'parent' | 'defaultParent' | 'parentDefault';
/** @enum {string} */
allowUnsignedFetch?: 'never' | 'always' | 'essential' | 'staff';
attributionDomains?: string[];
};
};
};
@ -27237,12 +27250,6 @@ export type operations = {
untilDate?: number;
/** @default false */
allowPartial?: boolean;
/** @default true */
includeMyRenotes?: boolean;
/** @default true */
includeRenotedMyNotes?: boolean;
/** @default true */
includeLocalRenotes?: boolean;
/** @default false */
withFiles?: boolean;
/** @default true */
@ -27505,7 +27512,7 @@ export type operations = {
* notes/polls/recommendation
* @description No description provided.
*
* **Credential required**: *Yes* / **Permission**: *read:account*
* **Credential required**: *No*
*/
notes___polls___recommendation: {
requestBody: {
@ -27517,6 +27524,10 @@ export type operations = {
offset?: number;
/** @default false */
excludeChannels?: boolean;
/** @default null */
local?: boolean | null;
/** @default false */
expired?: boolean;
};
};
};
@ -28654,12 +28665,6 @@ export type operations = {
untilDate?: number;
/** @default false */
allowPartial?: boolean;
/** @default true */
includeMyRenotes?: boolean;
/** @default true */
includeRenotedMyNotes?: boolean;
/** @default true */
includeLocalRenotes?: boolean;
/** @default false */
withFiles?: boolean;
/** @default true */
@ -28861,12 +28866,6 @@ export type operations = {
/** @default false */
allowPartial?: boolean;
/** @default true */
includeMyRenotes?: boolean;
/** @default true */
includeRenotedMyNotes?: boolean;
/** @default true */
includeLocalRenotes?: boolean;
/** @default true */
withRenotes?: boolean;
/**
* @description Only show notes that have attached files.