fix conflict

This commit is contained in:
Nya Candy 2024-01-26 23:45:42 +08:00 committed by fly_mc
parent 54b2449bf2
commit b83f0c02bc
5 changed files with 95 additions and 0 deletions

View file

@ -1600,6 +1600,7 @@ declare namespace entities {
NotesCreateRequest,
NotesCreateResponse,
NotesDeleteRequest,
NotesUpdateRequest,
NotesFavoritesCreateRequest,
NotesFavoritesDeleteRequest,
NotesFeaturedRequest,
@ -2689,6 +2690,9 @@ type NotesTranslateResponse = operations['notes___translate']['responses']['200'
// @public (undocumented)
type NotesUnrenoteRequest = operations['notes___unrenote']['requestBody']['content']['application/json'];
// @public (undocumented)
type NotesUpdateRequest = operations['notes___update']['requestBody']['content']['application/json'];
// @public (undocumented)
type NotesUserListTimelineRequest = operations['notes___user-list-timeline']['requestBody']['content']['application/json'];

View file

@ -3051,6 +3051,17 @@ declare module '../api.js' {
credential?: string | null,
): Promise<SwitchCaseResponseType<E, P>>;
/**
* No description provided.
*
* **Credential required**: *Yes* / **Permission**: *write:notes*
*/
request<E extends 'notes/update', P extends Endpoints[E]['req']>(
endpoint: E,
params: P,
credential?: string | null,
): Promise<SwitchCaseResponseType<E, P>>;
/**
* No description provided.
*

View file

@ -409,6 +409,7 @@ import type {
NotesCreateRequest,
NotesCreateResponse,
NotesDeleteRequest,
NotesUpdateRequest,
NotesFavoritesCreateRequest,
NotesFavoritesDeleteRequest,
NotesFeaturedRequest,
@ -847,6 +848,7 @@ export type Endpoints = {
'notes/conversation': { req: NotesConversationRequest; res: NotesConversationResponse };
'notes/create': { req: NotesCreateRequest; res: NotesCreateResponse };
'notes/delete': { req: NotesDeleteRequest; res: EmptyResponse };
'notes/update': { req: NotesUpdateRequest; res: EmptyResponse };
'notes/favorites/create': { req: NotesFavoritesCreateRequest; res: EmptyResponse };
'notes/favorites/delete': { req: NotesFavoritesDeleteRequest; res: EmptyResponse };
'notes/featured': { req: NotesFeaturedRequest; res: NotesFeaturedResponse };

View file

@ -412,6 +412,7 @@ export type NotesConversationResponse = operations['notes___conversation']['resp
export type NotesCreateRequest = operations['notes___create']['requestBody']['content']['application/json'];
export type NotesCreateResponse = operations['notes___create']['responses']['200']['content']['application/json'];
export type NotesDeleteRequest = operations['notes___delete']['requestBody']['content']['application/json'];
export type NotesUpdateRequest = operations['notes/update']['requestBody']['content']['application/json'];
export type NotesFavoritesCreateRequest = operations['notes___favorites___create']['requestBody']['content']['application/json'];
export type NotesFavoritesDeleteRequest = operations['notes___favorites___delete']['requestBody']['content']['application/json'];
export type NotesFeaturedRequest = operations['notes___featured']['requestBody']['content']['application/json'];

View file

@ -2640,6 +2640,15 @@ export type paths = {
*/
post: operations['notes___delete'];
};
'/notes/update': {
/**
* notes/update
* @description No description provided.
*
* **Credential required**: *Yes* / **Permission**: *write:notes*
*/
post: operations['notes/update'];
};
'/notes/favorites/create': {
/**
* notes/favorites/create
@ -4036,6 +4045,14 @@ export type components = {
/** Format: date-time */
createdAt: string;
/** Format: date-time */
updatedAt?: string | null;
history?: (({
/** Format: date-time */
createdAt: string;
text: string | null;
cw?: string | null;
})[]) | null;
/** Format: date-time */
deletedAt?: string | null;
text: string | null;
cw?: string | null;
@ -21346,6 +21363,66 @@ export type operations = {
};
};
};
/**
* notes/update
* @description No description provided.
*
* **Credential required**: *Yes* / **Permission**: *write:notes*
*/
'notes/update': {
requestBody: {
content: {
'application/json': {
/** Format: misskey:id */
noteId: string;
text: string;
cw: string | null;
};
};
};
responses: {
/** @description OK (without any results) */
204: {
content: never;
};
/** @description Client error */
400: {
content: {
'application/json': components['schemas']['Error'];
};
};
/** @description Authentication error */
401: {
content: {
'application/json': components['schemas']['Error'];
};
};
/** @description Forbidden error */
403: {
content: {
'application/json': components['schemas']['Error'];
};
};
/** @description I'm Ai */
418: {
content: {
'application/json': components['schemas']['Error'];
};
};
/** @description To many requests */
429: {
content: {
'application/json': components['schemas']['Error'];
};
};
/** @description Internal server error */
500: {
content: {
'application/json': components['schemas']['Error'];
};
};
};
};
/**
* notes/favorites/create
* @description No description provided.