regenerate misskey-js

This commit is contained in:
Hazelnoot 2025-08-09 21:22:54 -04:00
parent 19a7c68fb8
commit 38abbb078a
4 changed files with 16 additions and 6 deletions

View file

@ -250,6 +250,9 @@ type AdminFederationUpdateInstanceRequest = operations['admin___federation___upd
// @public (undocumented) // @public (undocumented)
type AdminForwardAbuseUserReportRequest = operations['admin___forward-abuse-user-report']['requestBody']['content']['application/json']; type AdminForwardAbuseUserReportRequest = operations['admin___forward-abuse-user-report']['requestBody']['content']['application/json'];
// @public (undocumented)
type AdminGenVapidKeysResponse = operations['admin___gen-vapid-keys']['responses']['200']['content']['application/json'];
// @public (undocumented) // @public (undocumented)
type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json']; type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json'];
@ -1598,6 +1601,7 @@ declare namespace entities {
AdminFederationRemoveAllFollowingRequest, AdminFederationRemoveAllFollowingRequest,
AdminFederationUpdateInstanceRequest, AdminFederationUpdateInstanceRequest,
AdminForwardAbuseUserReportRequest, AdminForwardAbuseUserReportRequest,
AdminGenVapidKeysResponse,
AdminGetIndexStatsResponse, AdminGetIndexStatsResponse,
AdminGetTableStatsResponse, AdminGetTableStatsResponse,
AdminGetUserIpsRequest, AdminGetUserIpsRequest,

View file

@ -71,6 +71,7 @@ import type {
AdminFederationRemoveAllFollowingRequest, AdminFederationRemoveAllFollowingRequest,
AdminFederationUpdateInstanceRequest, AdminFederationUpdateInstanceRequest,
AdminForwardAbuseUserReportRequest, AdminForwardAbuseUserReportRequest,
AdminGenVapidKeysResponse,
AdminGetIndexStatsResponse, AdminGetIndexStatsResponse,
AdminGetTableStatsResponse, AdminGetTableStatsResponse,
AdminGetUserIpsRequest, AdminGetUserIpsRequest,
@ -726,7 +727,7 @@ export type Endpoints = {
'admin/federation/remove-all-following': { req: AdminFederationRemoveAllFollowingRequest; res: EmptyResponse }; 'admin/federation/remove-all-following': { req: AdminFederationRemoveAllFollowingRequest; res: EmptyResponse };
'admin/federation/update-instance': { req: AdminFederationUpdateInstanceRequest; res: EmptyResponse }; 'admin/federation/update-instance': { req: AdminFederationUpdateInstanceRequest; res: EmptyResponse };
'admin/forward-abuse-user-report': { req: AdminForwardAbuseUserReportRequest; res: EmptyResponse }; 'admin/forward-abuse-user-report': { req: AdminForwardAbuseUserReportRequest; res: EmptyResponse };
'admin/gen-vapid-keys': { req: EmptyRequest; res: EmptyResponse }; 'admin/gen-vapid-keys': { req: EmptyRequest; res: AdminGenVapidKeysResponse };
'admin/get-index-stats': { req: EmptyRequest; res: AdminGetIndexStatsResponse }; 'admin/get-index-stats': { req: EmptyRequest; res: AdminGetIndexStatsResponse };
'admin/get-table-stats': { req: EmptyRequest; res: AdminGetTableStatsResponse }; 'admin/get-table-stats': { req: EmptyRequest; res: AdminGetTableStatsResponse };
'admin/get-user-ips': { req: AdminGetUserIpsRequest; res: AdminGetUserIpsResponse }; 'admin/get-user-ips': { req: AdminGetUserIpsRequest; res: AdminGetUserIpsResponse };

View file

@ -74,6 +74,7 @@ export type AdminFederationRefreshRemoteInstanceMetadataRequest = operations['ad
export type AdminFederationRemoveAllFollowingRequest = operations['admin___federation___remove-all-following']['requestBody']['content']['application/json']; export type AdminFederationRemoveAllFollowingRequest = operations['admin___federation___remove-all-following']['requestBody']['content']['application/json'];
export type AdminFederationUpdateInstanceRequest = operations['admin___federation___update-instance']['requestBody']['content']['application/json']; export type AdminFederationUpdateInstanceRequest = operations['admin___federation___update-instance']['requestBody']['content']['application/json'];
export type AdminForwardAbuseUserReportRequest = operations['admin___forward-abuse-user-report']['requestBody']['content']['application/json']; export type AdminForwardAbuseUserReportRequest = operations['admin___forward-abuse-user-report']['requestBody']['content']['application/json'];
export type AdminGenVapidKeysResponse = operations['admin___gen-vapid-keys']['responses']['200']['content']['application/json'];
export type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json']; export type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json'];
export type AdminGetTableStatsResponse = operations['admin___get-table-stats']['responses']['200']['content']['application/json']; export type AdminGetTableStatsResponse = operations['admin___get-table-stats']['responses']['200']['content']['application/json'];
export type AdminGetUserIpsRequest = operations['admin___get-user-ips']['requestBody']['content']['application/json']; export type AdminGetUserIpsRequest = operations['admin___get-user-ips']['requestBody']['content']['application/json'];

View file

@ -15800,12 +15800,17 @@ export interface operations {
}; };
requestBody?: never; requestBody?: never;
responses: { responses: {
/** @description OK (without any results) */ /** @description OK (with results) */
204: { 200: {
headers: { headers: {
[name: string]: unknown; [name: string]: unknown;
}; };
content?: never; content: {
'application/json': {
public: string;
private: string;
};
};
}; };
/** @description Client error */ /** @description Client error */
400: { 400: {
@ -16346,6 +16351,7 @@ export interface operations {
defaultLightTheme: string | null; defaultLightTheme: string | null;
defaultLike: string; defaultLike: string;
description: string | null; description: string | null;
about: string | null;
disableRegistration: boolean; disableRegistration: boolean;
impressumUrl: string | null; impressumUrl: string | null;
donationUrl: string | null; donationUrl: string | null;
@ -47895,8 +47901,6 @@ export interface operations {
/** @default false */ /** @default false */
withReplies?: boolean; withReplies?: boolean;
/** @default true */ /** @default true */
withRepliesToSelf?: boolean;
/** @default true */
withQuotes?: boolean; withQuotes?: boolean;
/** @default true */ /** @default true */
withRenotes?: boolean; withRenotes?: boolean;