import { localUsernameSchema, passwordSchema } from "./schemas/user"; import type { JSONSchema7 } from 'schema-type'; export type RolePolicies = { gtlAvailable: boolean; ltlAvailable: boolean; canPublicNote: boolean; canInvite: boolean; canManageCustomEmojis: boolean; canSearchNotes: boolean; canHideAds: boolean; driveCapacityMb: number; pinLimit: number; antennaLimit: number; wordMuteLimit: number; webhookLimit: number; clipLimit: number; noteEachClipsLimit: number; userListLimit: number; userEachUserListsLimit: number; rateLimitFactor: number; }; export type EndpointDefines = ReadonlyArray<{ req: JSONSchema7 | undefined; res: JSONSchema7 | undefined; }>; export interface IEndpointMeta { readonly stability?: 'deprecated' | 'experimental' | 'stable'; readonly tags?: ReadonlyArray; readonly errors?: { readonly [key: string]: { readonly message: string; readonly code: string; readonly id: string; }; }; readonly defines: EndpointDefines; /** * このエンドポイントにリクエストするのにユーザー情報が必須か否か * 省略した場合は false として解釈されます。 */ readonly requireCredential?: boolean; /** * isModeratorなロールを必要とするか */ readonly requireModerator?: boolean; /** * isAdministratorなロールを必要とするか */ readonly requireAdmin?: boolean; readonly requireRolePolicy?: keyof RolePolicies; /** * 引っ越し済みのユーザーによるリクエストを禁止するか * 省略した場合は false として解釈されます。 */ readonly prohibitMoved?: boolean; /** * エンドポイントのリミテーションに関するやつ * 省略した場合はリミテーションは無いものとして解釈されます。 */ readonly limit?: { /** * 複数のエンドポイントでリミットを共有したい場合に指定するキー */ readonly key?: string; /** * リミットを適用する期間(ms) * このプロパティを設定する場合、max プロパティも設定する必要があります。 */ readonly duration?: number; /** * durationで指定した期間内にいくつまでリクエストできるのか * このプロパティを設定する場合、duration プロパティも設定する必要があります。 */ readonly max?: number; /** * 最低でもどれくらいの間隔を開けてリクエストしなければならないか(ms) */ readonly minInterval?: number; }; /** * ファイルの添付を必要とするか否か * 省略した場合は false として解釈されます。 */ readonly requireFile?: boolean; /** * サードパーティアプリからはリクエストすることができないか否か * 省略した場合は false として解釈されます。 */ readonly secure?: boolean; /** * エンドポイントの種類 * パーミッションの実現に利用されます。 */ readonly kind?: string; readonly description?: string; /** * GETでのリクエストを許容するか否か */ readonly allowGet?: boolean; /** * 正常応答をキャッシュ (Cache-Control: public) する秒数 */ readonly cacheSec?: number; } export const endpoints = { "admin/accounts/create": { tags: ['admin'], defines: [{ req: { type: 'object', properties: { username: localUsernameSchema, password: passwordSchema, }, required: ['username', 'password'], }, res: { allOf: [{ $ref: 'https://misskey-hub.net/api/schemas/MeDetailed', }, { type: 'object', properties: { token: { type: 'string', }, }, required: ['token'], }], }, }], }, "admin/accounts/delete": { tags: ['admin'], requireCredential: true, requireAdmin: true, defines: [{ req: { type: 'object', properties: { userId: { type: 'string', format: 'misskey:id' }, }, required: ['userId'], }, res: undefined, }], }, "admin/ad/create": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: { type: 'object', properties: { url: { type: 'string', minLength: 1 }, memo: { type: 'string' }, place: { type: 'string' }, priority: { type: 'string' }, ratio: { type: 'integer' }, expiresAt: { type: 'integer' }, startsAt: { type: 'integer' }, imageUrl: { type: 'string', minLength: 1 }, }, required: ['url', 'memo', 'place', 'priority', 'ratio', 'expiresAt', 'startsAt', 'imageUrl'], }, res: undefined, }] }, "admin/ad/delete": { tags: ['admin'], requireCredential: true, requireModerator: true, errors: { noSuchAd: { message: 'No such ad.', code: 'NO_SUCH_AD', id: 'ccac9863-3a03-416e-b899-8a64041118b1', }, }, defines: [{ req: { type: 'object', properties: { id: { type: 'string', format: 'misskey:id' }, }, required: ['id'], }, res: undefined, }], }, "admin/ad/list": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: { type: 'object', properties: { limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 }, sinceId: { type: 'string', format: 'misskey:id' }, untilId: { type: 'string', format: 'misskey:id' }, }, required: [], }, res: { type: 'array', items: { $ref: 'https://misskey-hub.net/api/schemas/Ad', }, }, }], }, "admin/ad/update": { tags: ['admin'], requireCredential: true, requireModerator: true, errors: { noSuchAd: { message: 'No such ad.', code: 'NO_SUCH_AD', id: 'b7aa1727-1354-47bc-a182-3a9c3973d300', }, }, defines: [{ req: { type: 'object', properties: { id: { type: 'string', format: 'misskey:id' }, memo: { type: 'string' }, url: { type: 'string', minLength: 1 }, imageUrl: { type: 'string', minLength: 1 }, place: { type: 'string' }, priority: { type: 'string' }, ratio: { type: 'integer' }, expiresAt: { type: 'integer' }, startsAt: { type: 'integer' }, }, required: ['id', 'memo', 'url', 'imageUrl', 'place', 'priority', 'ratio', 'expiresAt', 'startsAt'], }, res: undefined, }], }, "admin/announcements/create": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: { type: 'object', properties: { title: { type: 'string', minLength: 1 }, text: { type: 'string', minLength: 1 }, imageUrl: { type: 'string', nullable: true, minLength: 1 }, }, required: ['title', 'text', 'imageUrl'], }, res: { $ref: 'https://misskey-hub.net/api/schemas/Announcement', }, }], }, "admin/announcements/delete": { tags: ['admin'], requireCredential: true, requireModerator: true, errors: { noSuchAnnouncement: { message: 'No such announcement.', code: 'NO_SUCH_ANNOUNCEMENT', id: 'ecad8040-a276-4e85-bda9-015a708d291e', }, }, defines: [{ req: { type: 'object', properties: { id: { type: 'string', format: 'misskey:id' }, }, required: ['id'], }, res: undefined, }], }, "admin/announcements/list": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: { type: 'object', properties: { limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 }, sinceId: { type: 'string', format: 'misskey:id' }, untilId: { type: 'string', format: 'misskey:id' }, }, required: [], }, res: { type: 'array', items: { $ref: 'https://misskey-hub.net/api/schemas/Announcement', }, }, }], }, "admin/announcements/update": { tags: ['admin'], requireCredential: true, requireModerator: true, errors: { noSuchAnnouncement: { message: 'No such announcement.', code: 'NO_SUCH_ANNOUNCEMENT', id: 'd3aae5a7-6372-4cb4-b61c-f511ffc2d7cc', }, }, defines: [{ req: { type: 'object', properties: { id: { type: 'string', format: 'misskey:id' }, title: { type: 'string', minLength: 1 }, text: { type: 'string', minLength: 1 }, imageUrl: { type: 'string', nullable: true, minLength: 1 }, }, required: ['id', 'title', 'text', 'imageUrl'], }, res: undefined, }], }, "admin/drive/clean-remote-files": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: undefined, res: undefined, }], }, "admin/drive/clenaup": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: undefined, res: undefined, }], }, "admin/drive/files": { tags: ['admin'], requireCredential: true, requireModerator: true, defines: [{ req: { type: 'object', properties: { limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 }, sinceId: { type: 'string', format: 'misskey:id' }, untilId: { type: 'string', format: 'misskey:id' }, userId: { type: 'string', format: 'misskey:id', nullable: true }, type: { type: 'string', nullable: true, pattern: /^[a-zA-Z0-9\/\-*]+$/.toString().slice(1, -1) }, origin: { type: 'string', enum: ['combined', 'local', 'remote'], default: 'local' }, hostname: { type: 'string', nullable: true, default: null, description: 'The local host is represented with `null`.', }, }, required: [], }, res: { type: 'array', items: { $ref: 'https://misskey-hub.net/api/schemas/DriveFile', }, }, }], }, "admin/drive/show-file": { tags: ['admin'], requireCredential: true, requireModerator: true, errors: { noSuchFile: { message: 'No such file.', code: 'NO_SUCH_FILE', id: 'caf3ca38-c6e5-472e-a30c-b05377dcc240', }, }, defines: [{ req: { type: 'object', properties: { fileId: { type: 'string', format: 'misskey:id' }, url: { type: 'string' }, }, anyOf: [ { required: ['fileId'] }, { required: ['url'] }, ], }, res: { allOf: [{ $ref: 'https://misskey-hub.net/api/schemas/DriveFile', }, { type: 'object', properties: { requestIp: { type: ['string', 'null'], }, requestHeaders: { oneOf: [{ type: 'object', }, { type: 'null', }], } }, required: ['requestIp', 'requestHeaders'], }], }, }], }, } as const satisfies { [x: string]: IEndpointMeta; };