Update types.ts

This commit is contained in:
syuilo 2025-05-09 17:56:15 +09:00
parent 8dd54edfb0
commit ac753667f0
1 changed files with 66 additions and 0 deletions

View File

@ -3247,6 +3247,15 @@ export type paths = {
*/ */
post: operations['notes___show']; post: operations['notes___show'];
}; };
'/notes/show-partial-bulk': {
/**
* notes/show-partial-bulk
* @description No description provided.
*
* **Credential required**: *No*
*/
post: operations['notes___show-partial-bulk'];
};
'/notes/state': { '/notes/state': {
/** /**
* notes/state * notes/state
@ -8772,6 +8781,8 @@ export type operations = {
versionRange: string; versionRange: string;
}[]; }[];
singleUserMode: boolean; singleUserMode: boolean;
/** @enum {string} */
ugcVisibilityForVisitor: 'all' | 'local' | 'none';
}; };
}; };
}; };
@ -11443,6 +11454,8 @@ export type operations = {
versionRange: string; versionRange: string;
}[]; }[];
singleUserMode?: boolean; singleUserMode?: boolean;
/** @enum {string} */
ugcVisibilityForVisitor?: 'all' | 'local' | 'none';
}; };
}; };
}; };
@ -25740,6 +25753,59 @@ export type operations = {
}; };
}; };
}; };
/**
* notes/show-partial-bulk
* @description No description provided.
*
* **Credential required**: *No*
*/
'notes___show-partial-bulk': {
requestBody: {
content: {
'application/json': {
noteIds: string[];
};
};
};
responses: {
/** @description OK (with results) */
200: {
content: {
'application/json': Record<string, 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 Internal server error */
500: {
content: {
'application/json': components['schemas']['Error'];
};
};
};
};
/** /**
* notes/state * notes/state
* @description No description provided. * @description No description provided.