regenerate misskey-js
This commit is contained in:
parent
19a7c68fb8
commit
38abbb078a
4 changed files with 16 additions and 6 deletions
|
|
@ -250,6 +250,9 @@ type AdminFederationUpdateInstanceRequest = operations['admin___federation___upd
|
|||
// @public (undocumented)
|
||||
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)
|
||||
type AdminGetIndexStatsResponse = operations['admin___get-index-stats']['responses']['200']['content']['application/json'];
|
||||
|
||||
|
|
@ -1598,6 +1601,7 @@ declare namespace entities {
|
|||
AdminFederationRemoveAllFollowingRequest,
|
||||
AdminFederationUpdateInstanceRequest,
|
||||
AdminForwardAbuseUserReportRequest,
|
||||
AdminGenVapidKeysResponse,
|
||||
AdminGetIndexStatsResponse,
|
||||
AdminGetTableStatsResponse,
|
||||
AdminGetUserIpsRequest,
|
||||
|
|
|
|||
|
|
@ -71,6 +71,7 @@ import type {
|
|||
AdminFederationRemoveAllFollowingRequest,
|
||||
AdminFederationUpdateInstanceRequest,
|
||||
AdminForwardAbuseUserReportRequest,
|
||||
AdminGenVapidKeysResponse,
|
||||
AdminGetIndexStatsResponse,
|
||||
AdminGetTableStatsResponse,
|
||||
AdminGetUserIpsRequest,
|
||||
|
|
@ -726,7 +727,7 @@ export type Endpoints = {
|
|||
'admin/federation/remove-all-following': { req: AdminFederationRemoveAllFollowingRequest; res: EmptyResponse };
|
||||
'admin/federation/update-instance': { req: AdminFederationUpdateInstanceRequest; 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-table-stats': { req: EmptyRequest; res: AdminGetTableStatsResponse };
|
||||
'admin/get-user-ips': { req: AdminGetUserIpsRequest; res: AdminGetUserIpsResponse };
|
||||
|
|
|
|||
|
|
@ -74,6 +74,7 @@ export type AdminFederationRefreshRemoteInstanceMetadataRequest = operations['ad
|
|||
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 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 AdminGetTableStatsResponse = operations['admin___get-table-stats']['responses']['200']['content']['application/json'];
|
||||
export type AdminGetUserIpsRequest = operations['admin___get-user-ips']['requestBody']['content']['application/json'];
|
||||
|
|
|
|||
|
|
@ -15800,12 +15800,17 @@ export interface operations {
|
|||
};
|
||||
requestBody?: never;
|
||||
responses: {
|
||||
/** @description OK (without any results) */
|
||||
204: {
|
||||
/** @description OK (with results) */
|
||||
200: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content?: never;
|
||||
content: {
|
||||
'application/json': {
|
||||
public: string;
|
||||
private: string;
|
||||
};
|
||||
};
|
||||
};
|
||||
/** @description Client error */
|
||||
400: {
|
||||
|
|
@ -16346,6 +16351,7 @@ export interface operations {
|
|||
defaultLightTheme: string | null;
|
||||
defaultLike: string;
|
||||
description: string | null;
|
||||
about: string | null;
|
||||
disableRegistration: boolean;
|
||||
impressumUrl: string | null;
|
||||
donationUrl: string | null;
|
||||
|
|
@ -47895,8 +47901,6 @@ export interface operations {
|
|||
/** @default false */
|
||||
withReplies?: boolean;
|
||||
/** @default true */
|
||||
withRepliesToSelf?: boolean;
|
||||
/** @default true */
|
||||
withQuotes?: boolean;
|
||||
/** @default true */
|
||||
withRenotes?: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue