mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-19 01:18:39 -06:00
fix conflict
This commit is contained in:
parent
54b2449bf2
commit
b83f0c02bc
5 changed files with 95 additions and 0 deletions
|
@ -1600,6 +1600,7 @@ declare namespace entities {
|
||||||
NotesCreateRequest,
|
NotesCreateRequest,
|
||||||
NotesCreateResponse,
|
NotesCreateResponse,
|
||||||
NotesDeleteRequest,
|
NotesDeleteRequest,
|
||||||
|
NotesUpdateRequest,
|
||||||
NotesFavoritesCreateRequest,
|
NotesFavoritesCreateRequest,
|
||||||
NotesFavoritesDeleteRequest,
|
NotesFavoritesDeleteRequest,
|
||||||
NotesFeaturedRequest,
|
NotesFeaturedRequest,
|
||||||
|
@ -2689,6 +2690,9 @@ type NotesTranslateResponse = operations['notes___translate']['responses']['200'
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
type NotesUnrenoteRequest = operations['notes___unrenote']['requestBody']['content']['application/json'];
|
type NotesUnrenoteRequest = operations['notes___unrenote']['requestBody']['content']['application/json'];
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
type NotesUpdateRequest = operations['notes___update']['requestBody']['content']['application/json'];
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
type NotesUserListTimelineRequest = operations['notes___user-list-timeline']['requestBody']['content']['application/json'];
|
type NotesUserListTimelineRequest = operations['notes___user-list-timeline']['requestBody']['content']['application/json'];
|
||||||
|
|
||||||
|
|
|
@ -3051,6 +3051,17 @@ declare module '../api.js' {
|
||||||
credential?: string | null,
|
credential?: string | null,
|
||||||
): Promise<SwitchCaseResponseType<E, P>>;
|
): 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.
|
* No description provided.
|
||||||
*
|
*
|
||||||
|
|
|
@ -409,6 +409,7 @@ import type {
|
||||||
NotesCreateRequest,
|
NotesCreateRequest,
|
||||||
NotesCreateResponse,
|
NotesCreateResponse,
|
||||||
NotesDeleteRequest,
|
NotesDeleteRequest,
|
||||||
|
NotesUpdateRequest,
|
||||||
NotesFavoritesCreateRequest,
|
NotesFavoritesCreateRequest,
|
||||||
NotesFavoritesDeleteRequest,
|
NotesFavoritesDeleteRequest,
|
||||||
NotesFeaturedRequest,
|
NotesFeaturedRequest,
|
||||||
|
@ -847,6 +848,7 @@ export type Endpoints = {
|
||||||
'notes/conversation': { req: NotesConversationRequest; res: NotesConversationResponse };
|
'notes/conversation': { req: NotesConversationRequest; res: NotesConversationResponse };
|
||||||
'notes/create': { req: NotesCreateRequest; res: NotesCreateResponse };
|
'notes/create': { req: NotesCreateRequest; res: NotesCreateResponse };
|
||||||
'notes/delete': { req: NotesDeleteRequest; res: EmptyResponse };
|
'notes/delete': { req: NotesDeleteRequest; res: EmptyResponse };
|
||||||
|
'notes/update': { req: NotesUpdateRequest; res: EmptyResponse };
|
||||||
'notes/favorites/create': { req: NotesFavoritesCreateRequest; res: EmptyResponse };
|
'notes/favorites/create': { req: NotesFavoritesCreateRequest; res: EmptyResponse };
|
||||||
'notes/favorites/delete': { req: NotesFavoritesDeleteRequest; res: EmptyResponse };
|
'notes/favorites/delete': { req: NotesFavoritesDeleteRequest; res: EmptyResponse };
|
||||||
'notes/featured': { req: NotesFeaturedRequest; res: NotesFeaturedResponse };
|
'notes/featured': { req: NotesFeaturedRequest; res: NotesFeaturedResponse };
|
||||||
|
|
|
@ -412,6 +412,7 @@ export type NotesConversationResponse = operations['notes___conversation']['resp
|
||||||
export type NotesCreateRequest = operations['notes___create']['requestBody']['content']['application/json'];
|
export type NotesCreateRequest = operations['notes___create']['requestBody']['content']['application/json'];
|
||||||
export type NotesCreateResponse = operations['notes___create']['responses']['200']['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 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 NotesFavoritesCreateRequest = operations['notes___favorites___create']['requestBody']['content']['application/json'];
|
||||||
export type NotesFavoritesDeleteRequest = operations['notes___favorites___delete']['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'];
|
export type NotesFeaturedRequest = operations['notes___featured']['requestBody']['content']['application/json'];
|
||||||
|
|
|
@ -2640,6 +2640,15 @@ export type paths = {
|
||||||
*/
|
*/
|
||||||
post: operations['notes___delete'];
|
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': {
|
||||||
/**
|
/**
|
||||||
* notes/favorites/create
|
* notes/favorites/create
|
||||||
|
@ -4036,6 +4045,14 @@ export type components = {
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
/** Format: date-time */
|
/** 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;
|
deletedAt?: string | null;
|
||||||
text: string | null;
|
text: string | null;
|
||||||
cw?: 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
|
* notes/favorites/create
|
||||||
* @description No description provided.
|
* @description No description provided.
|
||||||
|
|
Loading…
Reference in a new issue