diff --git a/packages/backend/src/misc/schema.ts b/packages/backend/src/misc/schema.ts
index b4486fbd03..6c4d3f7680 100644
--- a/packages/backend/src/misc/schema.ts
+++ b/packages/backend/src/misc/schema.ts
@@ -101,7 +101,7 @@ export type SchemaType
=
p['type'] extends 'string' ?
p['enum'] extends ReadonlyArray ?
NullOrUndefined :
- NullOrUndefined
:
+ NullOrUndefined
:
p['type'] extends 'boolean' ? NullOrUndefined
:
p['type'] extends 'array' ? NullOrUndefined
>[]> :
p['type'] extends 'object' ? (
diff --git a/packages/backend/src/server/api/endpoints.ts b/packages/backend/src/server/api/endpoints.ts
index 57da1e347a..bb4e972b8e 100644
--- a/packages/backend/src/server/api/endpoints.ts
+++ b/packages/backend/src/server/api/endpoints.ts
@@ -18,87 +18,87 @@ export type Param = {
};
export interface IEndpointMeta {
- stability?: string; //'deprecated' | 'experimental' | 'stable';
+ readonly stability?: 'deprecated' | 'experimental' | 'stable';
- tags?: string[];
+ readonly tags?: ReadonlyArray;
- params?: {
- [key: string]: Param;
+ readonly params?: {
+ readonly [key: string]: Param;
};
- errors?: {
- [key: string]: {
- message: string;
- code: string;
- id: string;
+ readonly errors?: {
+ readonly [key: string]: {
+ readonly message: string;
+ readonly code: string;
+ readonly id: string;
};
};
- res?: Schema;
+ readonly res?: Schema;
/**
* このエンドポイントにリクエストするのにユーザー情報が必須か否か
* 省略した場合は false として解釈されます。
*/
- requireCredential?: boolean;
+ readonly requireCredential?: boolean;
/**
* 管理者のみ使えるエンドポイントか否か
*/
- requireAdmin?: boolean;
+ readonly requireAdmin?: boolean;
/**
* 管理者またはモデレーターのみ使えるエンドポイントか否か
*/
- requireModerator?: boolean;
+ readonly requireModerator?: boolean;
/**
* エンドポイントのリミテーションに関するやつ
* 省略した場合はリミテーションは無いものとして解釈されます。
* また、withCredential が false の場合はリミテーションを行うことはできません。
*/
- limit?: {
+ readonly limit?: {
/**
* 複数のエンドポイントでリミットを共有したい場合に指定するキー
*/
- key?: string;
+ readonly key?: string;
/**
* リミットを適用する期間(ms)
* このプロパティを設定する場合、max プロパティも設定する必要があります。
*/
- duration?: number;
+ readonly duration?: number;
/**
* durationで指定した期間内にいくつまでリクエストできるのか
* このプロパティを設定する場合、duration プロパティも設定する必要があります。
*/
- max?: number;
+ readonly max?: number;
/**
* 最低でもどれくらいの間隔を開けてリクエストしなければならないか(ms)
*/
- minInterval?: number;
+ readonly minInterval?: number;
};
/**
* ファイルの添付を必要とするか否か
* 省略した場合は false として解釈されます。
*/
- requireFile?: boolean;
+ readonly requireFile?: boolean;
/**
* サードパーティアプリからはリクエストすることができないか否か
* 省略した場合は false として解釈されます。
*/
- secure?: boolean;
+ readonly secure?: boolean;
/**
* エンドポイントの種類
* パーミッションの実現に利用されます。
*/
- kind?: string;
+ readonly kind?: string;
}
export interface IEndpoint {
diff --git a/packages/backend/src/server/api/endpoints/announcements.ts b/packages/backend/src/server/api/endpoints/announcements.ts
index 122d04f17c..0bd29607d6 100644
--- a/packages/backend/src/server/api/endpoints/announcements.ts
+++ b/packages/backend/src/server/api/endpoints/announcements.ts
@@ -7,7 +7,7 @@ import { makePaginationQuery } from '../common/make-pagination-query';
export const meta = {
tags: ['meta'],
- requireCredential: false as const,
+ requireCredential: false,
params: {
limit: {
@@ -30,48 +30,48 @@ export const meta = {
},
res: {
- type: 'array' as const,
- optional: false as const, nullable: false as const,
+ type: 'array',
+ optional: false, nullable: false,
items: {
- type: 'object' as const,
- optional: false as const, nullable: false as const,
+ type: 'object',
+ optional: false, nullable: false,
properties: {
id: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
+ type: 'string',
+ optional: false, nullable: false,
format: 'id',
example: 'xxxxxxxxxx',
},
createdAt: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
+ type: 'string',
+ optional: false, nullable: false,
format: 'date-time',
},
updatedAt: {
- type: 'string' as const,
- optional: false as const, nullable: true as const,
+ type: 'string',
+ optional: false, nullable: true,
format: 'date-time',
},
text: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
+ type: 'string',
+ optional: false, nullable: false,
},
title: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
+ type: 'string',
+ optional: false, nullable: false,
},
imageUrl: {
- type: 'string' as const,
- optional: false as const, nullable: true as const,
+ type: 'string',
+ optional: false, nullable: true,
},
isRead: {
- type: 'boolean' as const,
- optional: false as const, nullable: false as const,
+ type: 'boolean',
+ optional: true, nullable: false,
},
},
},
},
-};
+} as const;
// eslint-disable-next-line import/no-default-export
export default define(meta, async (ps, user) => {