Fix bug
This commit is contained in:
parent
321e851b26
commit
2de8e8c358
@ -19,8 +19,8 @@ import { version, codename, lang } from './config';
|
|||||||
|
|
||||||
let elementLocale;
|
let elementLocale;
|
||||||
switch (lang) {
|
switch (lang) {
|
||||||
case 'ja': elementLocale = ElementLocaleJa; break;
|
case 'ja-JP': elementLocale = ElementLocaleJa; break;
|
||||||
case 'en': elementLocale = ElementLocaleEn; break;
|
case 'en-US': elementLocale = ElementLocaleEn; break;
|
||||||
default: elementLocale = ElementLocaleEn; break;
|
default: elementLocale = ElementLocaleEn; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ block main
|
|||||||
span.path= endpointUrl.path
|
span.path= endpointUrl.path
|
||||||
|
|
||||||
if endpoint.desc
|
if endpoint.desc
|
||||||
p#desc= endpoint.desc[lang] || endpoint.desc['ja']
|
p#desc= endpoint.desc[lang] || endpoint.desc['ja-JP']
|
||||||
|
|
||||||
if endpoint.requireCredential
|
if endpoint.requireCredential
|
||||||
div.ui.info: p
|
div.ui.info: p
|
||||||
|
@ -1,90 +1,90 @@
|
|||||||
name: "DriveFile"
|
name: "DriveFile"
|
||||||
|
|
||||||
desc:
|
desc:
|
||||||
ja: "ドライブのファイル。"
|
ja-JP: "ドライブのファイル。"
|
||||||
en: "A file of Drive."
|
en-US: "A file of Drive."
|
||||||
|
|
||||||
props:
|
props:
|
||||||
id:
|
id:
|
||||||
type: "id"
|
type: "id"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ファイルID"
|
ja-JP: "ファイルID"
|
||||||
en: "The ID of this file"
|
en-US: "The ID of this file"
|
||||||
|
|
||||||
createdAt:
|
createdAt:
|
||||||
type: "date"
|
type: "date"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "アップロード日時"
|
ja-JP: "アップロード日時"
|
||||||
en: "The upload date of this file"
|
en-US: "The upload date of this file"
|
||||||
|
|
||||||
userId:
|
userId:
|
||||||
type: "id(User)"
|
type: "id(User)"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "所有者ID"
|
ja-JP: "所有者ID"
|
||||||
en: "The ID of the owner of this file"
|
en-US: "The ID of the owner of this file"
|
||||||
|
|
||||||
user:
|
user:
|
||||||
type: "entity(User)"
|
type: "entity(User)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "所有者"
|
ja-JP: "所有者"
|
||||||
en: "The owner of this file"
|
en-US: "The owner of this file"
|
||||||
|
|
||||||
name:
|
name:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ファイル名"
|
ja-JP: "ファイル名"
|
||||||
en: "The name of this file"
|
en-US: "The name of this file"
|
||||||
|
|
||||||
md5:
|
md5:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ファイルのMD5ハッシュ値"
|
ja-JP: "ファイルのMD5ハッシュ値"
|
||||||
en: "The md5 hash value of this file"
|
en-US: "The md5 hash value of this file"
|
||||||
|
|
||||||
type:
|
type:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ファイルの種類"
|
ja-JP: "ファイルの種類"
|
||||||
en: "The type of this file"
|
en-US: "The type of this file"
|
||||||
|
|
||||||
datasize:
|
datasize:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ファイルサイズ(bytes)"
|
ja-JP: "ファイルサイズ(bytes)"
|
||||||
en: "The size of this file (bytes)"
|
en-US: "The size of this file (bytes)"
|
||||||
|
|
||||||
url:
|
url:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ファイルのURL"
|
ja-JP: "ファイルのURL"
|
||||||
en: "The URL of this file"
|
en-US: "The URL of this file"
|
||||||
|
|
||||||
folderId:
|
folderId:
|
||||||
type: "id(DriveFolder)"
|
type: "id(DriveFolder)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "フォルダID"
|
ja-JP: "フォルダID"
|
||||||
en: "The ID of the folder of this file"
|
en-US: "The ID of the folder of this file"
|
||||||
|
|
||||||
folder:
|
folder:
|
||||||
type: "entity(DriveFolder)"
|
type: "entity(DriveFolder)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "フォルダ"
|
ja-JP: "フォルダ"
|
||||||
en: "The folder of this file"
|
en-US: "The folder of this file"
|
||||||
|
|
||||||
isSensitive:
|
isSensitive:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "このメディアが「閲覧注意」(NSFW)かどうか"
|
ja-JP: "このメディアが「閲覧注意」(NSFW)かどうか"
|
||||||
en: "Whether this media is NSFW"
|
en-US: "Whether this media is NSFW"
|
||||||
|
@ -1,41 +1,41 @@
|
|||||||
name: "DriveFolder"
|
name: "DriveFolder"
|
||||||
|
|
||||||
desc:
|
desc:
|
||||||
ja: "ドライブのフォルダを表します。"
|
ja-JP: "ドライブのフォルダを表します。"
|
||||||
en: "A folder of Drive."
|
en-US: "A folder of Drive."
|
||||||
|
|
||||||
props:
|
props:
|
||||||
id:
|
id:
|
||||||
type: "id"
|
type: "id"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "フォルダID"
|
ja-JP: "フォルダID"
|
||||||
en: "The ID of this folder"
|
en-US: "The ID of this folder"
|
||||||
|
|
||||||
createdAt:
|
createdAt:
|
||||||
type: "date"
|
type: "date"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "作成日時"
|
ja-JP: "作成日時"
|
||||||
en: "The created date of this folder"
|
en-US: "The created date of this folder"
|
||||||
|
|
||||||
userId:
|
userId:
|
||||||
type: "id(User)"
|
type: "id(User)"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "所有者ID"
|
ja-JP: "所有者ID"
|
||||||
en: "The ID of the owner of this folder"
|
en-US: "The ID of the owner of this folder"
|
||||||
|
|
||||||
parentId:
|
parentId:
|
||||||
type: "entity(DriveFolder)"
|
type: "entity(DriveFolder)"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "親フォルダのID (ルートなら null)"
|
ja-JP: "親フォルダのID (ルートなら null)"
|
||||||
en: "The ID of parent folder"
|
en-US: "The ID of parent folder"
|
||||||
|
|
||||||
name:
|
name:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "フォルダ名"
|
ja-JP: "フォルダ名"
|
||||||
en: "The name of this folder"
|
en-US: "The name of this folder"
|
||||||
|
@ -1,190 +1,190 @@
|
|||||||
name: "Note"
|
name: "Note"
|
||||||
|
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿。"
|
ja-JP: "投稿。"
|
||||||
en: "A note."
|
en-US: "A note."
|
||||||
|
|
||||||
props:
|
props:
|
||||||
id:
|
id:
|
||||||
type: "id"
|
type: "id"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿ID"
|
ja-JP: "投稿ID"
|
||||||
en: "The ID of this note"
|
en-US: "The ID of this note"
|
||||||
|
|
||||||
createdAt:
|
createdAt:
|
||||||
type: "date"
|
type: "date"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿日時"
|
ja-JP: "投稿日時"
|
||||||
en: "The posted date of this note"
|
en-US: "The posted date of this note"
|
||||||
|
|
||||||
viaMobile:
|
viaMobile:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "モバイル端末から投稿したか否か(自己申告であることに留意)"
|
ja-JP: "モバイル端末から投稿したか否か(自己申告であることに留意)"
|
||||||
en: "Whether this note sent via a mobile device"
|
en-US: "Whether this note sent via a mobile device"
|
||||||
|
|
||||||
text:
|
text:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿の本文"
|
ja-JP: "投稿の本文"
|
||||||
en: "The text of this note"
|
en-US: "The text of this note"
|
||||||
|
|
||||||
mediaIds:
|
mediaIds:
|
||||||
type: "id(DriveFile)[]"
|
type: "id(DriveFile)[]"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "添付されているメディアのID (なければレスポンスでは空配列)"
|
ja-JP: "添付されているメディアのID (なければレスポンスでは空配列)"
|
||||||
en: "The IDs of the attached media (empty array for response if no media is attached)"
|
en-US: "The IDs of the attached media (empty array for response if no media is attached)"
|
||||||
|
|
||||||
media:
|
media:
|
||||||
type: "entity(DriveFile)[]"
|
type: "entity(DriveFile)[]"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "添付されているメディア"
|
ja-JP: "添付されているメディア"
|
||||||
en: "The attached media"
|
en-US: "The attached media"
|
||||||
|
|
||||||
userId:
|
userId:
|
||||||
type: "id(User)"
|
type: "id(User)"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿者ID"
|
ja-JP: "投稿者ID"
|
||||||
en: "The ID of author of this note"
|
en-US: "The ID of author of this note"
|
||||||
|
|
||||||
user:
|
user:
|
||||||
type: "entity(User)"
|
type: "entity(User)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿者"
|
ja-JP: "投稿者"
|
||||||
en: "The author of this note"
|
en-US: "The author of this note"
|
||||||
|
|
||||||
myReaction:
|
myReaction:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "この投稿に対する自分の<a href='/docs/api/reactions'>リアクション</a>"
|
ja-JP: "この投稿に対する自分の<a href='/docs/api/reactions'>リアクション</a>"
|
||||||
en: "The your <a href='/docs/api/reactions'>reaction</a> of this note"
|
en-US: "The your <a href='/docs/api/reactions'>reaction</a> of this note"
|
||||||
|
|
||||||
reactionCounts:
|
reactionCounts:
|
||||||
type: "object"
|
type: "object"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "<a href='/docs/api/reactions'>リアクション</a>をキーとし、この投稿に対するそのリアクションの数を値としたオブジェクト"
|
ja-JP: "<a href='/docs/api/reactions'>リアクション</a>をキーとし、この投稿に対するそのリアクションの数を値としたオブジェクト"
|
||||||
|
|
||||||
replyId:
|
replyId:
|
||||||
type: "id(Note)"
|
type: "id(Note)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "返信した投稿のID"
|
ja-JP: "返信した投稿のID"
|
||||||
en: "The ID of the replyed note"
|
en-US: "The ID of the replyed note"
|
||||||
|
|
||||||
reply:
|
reply:
|
||||||
type: "entity(Note)"
|
type: "entity(Note)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "返信した投稿"
|
ja-JP: "返信した投稿"
|
||||||
en: "The replyed note"
|
en-US: "The replyed note"
|
||||||
|
|
||||||
renoteId:
|
renoteId:
|
||||||
type: "id(Note)"
|
type: "id(Note)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "引用した投稿のID"
|
ja-JP: "引用した投稿のID"
|
||||||
en: "The ID of the quoted note"
|
en-US: "The ID of the quoted note"
|
||||||
|
|
||||||
renote:
|
renote:
|
||||||
type: "entity(Note)"
|
type: "entity(Note)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "引用した投稿"
|
ja-JP: "引用した投稿"
|
||||||
en: "The quoted note"
|
en-US: "The quoted note"
|
||||||
|
|
||||||
poll:
|
poll:
|
||||||
type: "object"
|
type: "object"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "投票"
|
ja-JP: "投票"
|
||||||
en: "The poll"
|
en-US: "The poll"
|
||||||
|
|
||||||
props:
|
props:
|
||||||
choices:
|
choices:
|
||||||
type: "object[]"
|
type: "object[]"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "投票の選択肢"
|
ja-JP: "投票の選択肢"
|
||||||
en: "The choices of this poll"
|
en-US: "The choices of this poll"
|
||||||
|
|
||||||
props:
|
props:
|
||||||
id:
|
id:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "選択肢ID"
|
ja-JP: "選択肢ID"
|
||||||
en: "The ID of this choice"
|
en-US: "The ID of this choice"
|
||||||
|
|
||||||
isVoted:
|
isVoted:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "自分がこの選択肢に投票したかどうか"
|
ja-JP: "自分がこの選択肢に投票したかどうか"
|
||||||
en: "Whether you voted to this choice"
|
en-US: "Whether you voted to this choice"
|
||||||
|
|
||||||
text:
|
text:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "選択肢本文"
|
ja-JP: "選択肢本文"
|
||||||
en: "The text of this choice"
|
en-US: "The text of this choice"
|
||||||
|
|
||||||
votes:
|
votes:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "この選択肢に投票された数"
|
ja-JP: "この選択肢に投票された数"
|
||||||
en: "The number voted for this choice"
|
en-US: "The number voted for this choice"
|
||||||
geo:
|
geo:
|
||||||
type: "object"
|
type: "object"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "位置情報"
|
ja-JP: "位置情報"
|
||||||
en: "Geo location"
|
en-US: "Geo location"
|
||||||
|
|
||||||
props:
|
props:
|
||||||
coordinates:
|
coordinates:
|
||||||
type: "number[]"
|
type: "number[]"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "座標。最初に経度:-180〜180で表す。最後に緯度:-90〜90で表す。"
|
ja-JP: "座標。最初に経度:-180〜180で表す。最後に緯度:-90〜90で表す。"
|
||||||
|
|
||||||
altitude:
|
altitude:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "高度。メートル単位で表す。"
|
ja-JP: "高度。メートル単位で表す。"
|
||||||
|
|
||||||
accuracy:
|
accuracy:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "緯度、経度の精度。メートル単位で表す。"
|
ja-JP: "緯度、経度の精度。メートル単位で表す。"
|
||||||
|
|
||||||
altitudeAccuracy:
|
altitudeAccuracy:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "高度の精度。メートル単位で表す。"
|
ja-JP: "高度の精度。メートル単位で表す。"
|
||||||
|
|
||||||
heading:
|
heading:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "方角。0〜360の角度で表す。0が北、90が東、180が南、270が西。"
|
ja-JP: "方角。0〜360の角度で表す。0が北、90が東、180が南、270が西。"
|
||||||
|
|
||||||
speed:
|
speed:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "速度。メートル / 秒数で表す。"
|
ja-JP: "速度。メートル / 秒数で表す。"
|
||||||
|
@ -1,174 +1,174 @@
|
|||||||
name: "User"
|
name: "User"
|
||||||
|
|
||||||
desc:
|
desc:
|
||||||
ja: "ユーザー。"
|
ja-JP: "ユーザー。"
|
||||||
en: "A user."
|
en-US: "A user."
|
||||||
|
|
||||||
props:
|
props:
|
||||||
id:
|
id:
|
||||||
type: "id"
|
type: "id"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ユーザーID"
|
ja-JP: "ユーザーID"
|
||||||
en: "The ID of this user"
|
en-US: "The ID of this user"
|
||||||
|
|
||||||
createdAt:
|
createdAt:
|
||||||
type: "date"
|
type: "date"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "アカウント作成日時"
|
ja-JP: "アカウント作成日時"
|
||||||
en: "The registered date of this user"
|
en-US: "The registered date of this user"
|
||||||
|
|
||||||
username:
|
username:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ユーザー名"
|
ja-JP: "ユーザー名"
|
||||||
en: "The username of this user"
|
en-US: "The username of this user"
|
||||||
|
|
||||||
description:
|
description:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "アカウントの説明(自己紹介)"
|
ja-JP: "アカウントの説明(自己紹介)"
|
||||||
en: "The description of this user"
|
en-US: "The description of this user"
|
||||||
|
|
||||||
avatarId:
|
avatarId:
|
||||||
type: "id(DriveFile)"
|
type: "id(DriveFile)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "アバターのID"
|
ja-JP: "アバターのID"
|
||||||
en: "The ID of the avatar of this user"
|
en-US: "The ID of the avatar of this user"
|
||||||
|
|
||||||
avatarUrl:
|
avatarUrl:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "アバターのURL"
|
ja-JP: "アバターのURL"
|
||||||
en: "The URL of the avatar of this user"
|
en-US: "The URL of the avatar of this user"
|
||||||
|
|
||||||
bannerId:
|
bannerId:
|
||||||
type: "id(DriveFile)"
|
type: "id(DriveFile)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "バナーのID"
|
ja-JP: "バナーのID"
|
||||||
en: "The ID of the banner of this user"
|
en-US: "The ID of the banner of this user"
|
||||||
|
|
||||||
bannerUrl:
|
bannerUrl:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "バナーのURL"
|
ja-JP: "バナーのURL"
|
||||||
en: "The URL of the banner of this user"
|
en-US: "The URL of the banner of this user"
|
||||||
|
|
||||||
followersCount:
|
followersCount:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "フォロワーの数"
|
ja-JP: "フォロワーの数"
|
||||||
en: "The number of the followers for this user"
|
en-US: "The number of the followers for this user"
|
||||||
|
|
||||||
followingCount:
|
followingCount:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "フォローしているユーザーの数"
|
ja-JP: "フォローしているユーザーの数"
|
||||||
en: "The number of the following users for this user"
|
en-US: "The number of the following users for this user"
|
||||||
|
|
||||||
isFollowing:
|
isFollowing:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "自分がこのユーザーをフォローしているか"
|
ja-JP: "自分がこのユーザーをフォローしているか"
|
||||||
|
|
||||||
isFollowed:
|
isFollowed:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "自分がこのユーザーにフォローされているか"
|
ja-JP: "自分がこのユーザーにフォローされているか"
|
||||||
|
|
||||||
isMuted:
|
isMuted:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "自分がこのユーザーをミュートしているか"
|
ja-JP: "自分がこのユーザーをミュートしているか"
|
||||||
en: "Whether you muted this user"
|
en-US: "Whether you muted this user"
|
||||||
|
|
||||||
notesCount:
|
notesCount:
|
||||||
type: "number"
|
type: "number"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "投稿の数"
|
ja-JP: "投稿の数"
|
||||||
en: "The number of the notes of this user"
|
en-US: "The number of the notes of this user"
|
||||||
|
|
||||||
pinnedNote:
|
pinnedNote:
|
||||||
type: "entity(Note)"
|
type: "entity(Note)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "ピン留めされた投稿"
|
ja-JP: "ピン留めされた投稿"
|
||||||
en: "The pinned note of this user"
|
en-US: "The pinned note of this user"
|
||||||
|
|
||||||
pinnedNoteId:
|
pinnedNoteId:
|
||||||
type: "id(Note)"
|
type: "id(Note)"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "ピン留めされた投稿のID"
|
ja-JP: "ピン留めされた投稿のID"
|
||||||
en: "The ID of the pinned note of this user"
|
en-US: "The ID of the pinned note of this user"
|
||||||
|
|
||||||
host:
|
host:
|
||||||
type: "string | null"
|
type: "string | null"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ホスト (例: example.com:3000)"
|
ja-JP: "ホスト (例: example.com:3000)"
|
||||||
en: "Host (e.g. example.com:3000)"
|
en-US: "Host (e.g. example.com:3000)"
|
||||||
|
|
||||||
twitter:
|
twitter:
|
||||||
type: "object"
|
type: "object"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "連携されているTwitterアカウント情報"
|
ja-JP: "連携されているTwitterアカウント情報"
|
||||||
en: "The info of the connected twitter account of this user"
|
en-US: "The info of the connected twitter account of this user"
|
||||||
|
|
||||||
props:
|
props:
|
||||||
userId:
|
userId:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ユーザーID"
|
ja-JP: "ユーザーID"
|
||||||
en: "The user ID"
|
en-US: "The user ID"
|
||||||
|
|
||||||
screenName:
|
screenName:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "ユーザー名"
|
ja-JP: "ユーザー名"
|
||||||
en: "The screen name of this user"
|
en-US: "The screen name of this user"
|
||||||
|
|
||||||
isBot:
|
isBot:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "botか否か(自己申告であることに留意)"
|
ja-JP: "botか否か(自己申告であることに留意)"
|
||||||
en: "Whether is bot or not"
|
en-US: "Whether is bot or not"
|
||||||
|
|
||||||
profile:
|
profile:
|
||||||
type: "object"
|
type: "object"
|
||||||
optional: false
|
optional: false
|
||||||
desc:
|
desc:
|
||||||
ja: "プロフィール"
|
ja-JP: "プロフィール"
|
||||||
en: "The profile of this user"
|
en-US: "The profile of this user"
|
||||||
|
|
||||||
props:
|
props:
|
||||||
location:
|
location:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "場所"
|
ja-JP: "場所"
|
||||||
en: "The location of this user"
|
en-US: "The location of this user"
|
||||||
|
|
||||||
birthday:
|
birthday:
|
||||||
type: "string"
|
type: "string"
|
||||||
optional: true
|
optional: true
|
||||||
desc:
|
desc:
|
||||||
ja: "誕生日 (YYYY-MM-DD)"
|
ja-JP: "誕生日 (YYYY-MM-DD)"
|
||||||
en: "The birthday of this user (YYYY-MM-DD)"
|
en-US: "The birthday of this user (YYYY-MM-DD)"
|
||||||
|
@ -7,7 +7,7 @@ block meta
|
|||||||
block main
|
block main
|
||||||
h1= name
|
h1= name
|
||||||
|
|
||||||
p#desc= desc[lang] || desc['ja']
|
p#desc= desc[lang] || desc['ja-JP']
|
||||||
|
|
||||||
section
|
section
|
||||||
h2= i18n('docs.api.entities.properties')
|
h2= i18n('docs.api.entities.properties')
|
||||||
|
@ -31,4 +31,4 @@ mixin propTable(props)
|
|||||||
td.name= prop.name
|
td.name= prop.name
|
||||||
td.type
|
td.type
|
||||||
+type(prop)
|
+type(prop)
|
||||||
td.desc!= prop.desc ? prop.desc[lang] || prop.desc['ja'] : null
|
td.desc!= prop.desc ? prop.desc[lang] || prop.desc['ja-JP'] : null
|
||||||
|
@ -16,7 +16,7 @@ html(lang= lang)
|
|||||||
nav
|
nav
|
||||||
ul
|
ul
|
||||||
each doc in docs
|
each doc in docs
|
||||||
li: a(href=`/docs/${lang}/${doc.name}`)= doc.title[lang] || doc.title['ja']
|
li: a(href=`/docs/${lang}/${doc.name}`)= doc.title[lang] || doc.title['ja-JP']
|
||||||
section
|
section
|
||||||
h2 API
|
h2 API
|
||||||
ul
|
ul
|
||||||
|
@ -3,7 +3,7 @@ import RegistrationTicket from '../../../../models/registration-tickets';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '招待コードを発行します。'
|
'ja-JP': '招待コードを発行します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import User from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーを凍結します。',
|
'ja-JP': '指定したユーザーを凍結します。',
|
||||||
en: 'Suspend a user.'
|
'en-US': 'Suspend a user.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -15,8 +15,8 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
userId: $.type(ID).note({
|
userId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '対象のユーザーID',
|
'ja-JP': '対象のユーザーID',
|
||||||
en: 'The user ID which you want to suspend'
|
'en-US': 'The user ID which you want to suspend'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,8 @@ import User from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーの凍結を解除します。',
|
'ja-JP': '指定したユーザーの凍結を解除します。',
|
||||||
en: 'Unsuspend a user.'
|
'en-US': 'Unsuspend a user.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -15,8 +15,8 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
userId: $.type(ID).note({
|
userId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '対象のユーザーID',
|
'ja-JP': '対象のユーザーID',
|
||||||
en: 'The user ID which you want to unsuspend'
|
'en-US': 'The user ID which you want to unsuspend'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,8 @@ import User from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーの公式アカウントを解除します。',
|
'ja-JP': '指定したユーザーの公式アカウントを解除します。',
|
||||||
en: 'Mark a user as unverified.'
|
'en-US': 'Mark a user as unverified.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -15,8 +15,8 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
userId: $.type(ID).note({
|
userId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '対象のユーザーID',
|
'ja-JP': '対象のユーザーID',
|
||||||
en: 'The user ID which you want to unverify'
|
'en-US': 'The user ID which you want to unverify'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ import getParams from '../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'インスタンスの設定を更新します。'
|
'ja-JP': 'インスタンスの設定を更新します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -13,7 +13,7 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
disableRegistration: $.bool.optional.nullable.note({
|
disableRegistration: $.bool.optional.nullable.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '招待制か否か'
|
'ja-JP': '招待制か否か'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,8 @@ import User from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーを公式アカウントにします。',
|
'ja-JP': '指定したユーザーを公式アカウントにします。',
|
||||||
en: 'Mark a user as verified.'
|
'en-US': 'Mark a user as verified.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -15,8 +15,8 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
userId: $.type(ID).note({
|
userId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '対象のユーザーID',
|
'ja-JP': '対象のユーザーID',
|
||||||
en: 'The user ID which you want to verify'
|
'en-US': 'The user ID which you want to verify'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,8 @@ import config from '../../../config';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブの情報を取得します。',
|
'ja-JP': 'ドライブの情報を取得します。',
|
||||||
en: 'Get drive information.'
|
'en-US': 'Get drive information.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブのファイル一覧を取得します。',
|
'ja-JP': 'ドライブのファイル一覧を取得します。',
|
||||||
en: 'Get files of drive.'
|
'en-US': 'Get files of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -8,8 +8,8 @@ import getParams from '../../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブにファイルをアップロードします。',
|
'ja-JP': 'ドライブにファイルをアップロードします。',
|
||||||
en: 'Upload a file to drive.'
|
'en-US': 'Upload a file to drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -27,15 +27,15 @@ export const meta = {
|
|||||||
folderId: $.type(ID).optional.nullable.note({
|
folderId: $.type(ID).optional.nullable.note({
|
||||||
default: null,
|
default: null,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'フォルダID'
|
'ja-JP': 'フォルダID'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
isSensitive: $.bool.optional.note({
|
isSensitive: $.bool.optional.note({
|
||||||
default: false,
|
default: false,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'このメディアが「閲覧注意」(NSFW)かどうか',
|
'ja-JP': 'このメディアが「閲覧注意」(NSFW)かどうか',
|
||||||
en: 'Whether this media is NSFW'
|
'en-US': 'Whether this media is NSFW'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブのファイルを削除します。',
|
'ja-JP': 'ドライブのファイルを削除します。',
|
||||||
en: 'Delete a file of drive.'
|
'en-US': 'Delete a file of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したドライブのファイルの情報を取得します。',
|
'ja-JP': '指定したドライブのファイルの情報を取得します。',
|
||||||
en: 'Get specified file of drive.'
|
'en-US': 'Get specified file of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -7,8 +7,8 @@ import getParams from '../../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したドライブのファイルの情報を更新します。',
|
'ja-JP': '指定したドライブのファイルの情報を更新します。',
|
||||||
en: 'Update specified file of drive.'
|
'en-US': 'Update specified file of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -18,30 +18,30 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
fileId: $.type(ID).note({
|
fileId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '対象のファイルID'
|
'ja-JP': '対象のファイルID'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
folderId: $.type(ID).optional.nullable.note({
|
folderId: $.type(ID).optional.nullable.note({
|
||||||
default: undefined,
|
default: undefined,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'フォルダID'
|
'ja-JP': 'フォルダID'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
name: $.str.optional.pipe(validateFileName).note({
|
name: $.str.optional.pipe(validateFileName).note({
|
||||||
default: undefined,
|
default: undefined,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ファイル名',
|
'ja-JP': 'ファイル名',
|
||||||
en: 'Name of the file'
|
'en-US': 'Name of the file'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
isSensitive: $.bool.optional.note({
|
isSensitive: $.bool.optional.note({
|
||||||
default: undefined,
|
default: undefined,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'このメディアが「閲覧注意」(NSFW)かどうか',
|
'ja-JP': 'このメディアが「閲覧注意」(NSFW)かどうか',
|
||||||
en: 'Whether this media is NSFW'
|
'en-US': 'Whether this media is NSFW'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブに指定されたURLに存在するファイルをアップロードします。'
|
'ja-JP': 'ドライブに指定されたURLに存在するファイルをアップロードします。'
|
||||||
},
|
},
|
||||||
|
|
||||||
limit: {
|
limit: {
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブのフォルダ一覧を取得します。',
|
'ja-JP': 'ドライブのフォルダ一覧を取得します。',
|
||||||
en: 'Get folders of drive.'
|
'en-US': 'Get folders of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ドライブのフォルダを作成します。',
|
'ja-JP': 'ドライブのフォルダを作成します。',
|
||||||
en: 'Create a folder of drive.'
|
'en-US': 'Create a folder of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,7 +4,7 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したドライブのフォルダの情報を取得します。'
|
'ja-JP': '指定したドライブのフォルダの情報を取得します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したドライブのフォルダの情報を更新します。',
|
'ja-JP': '指定したドライブのフォルダの情報を更新します。',
|
||||||
en: 'Update specified folder of drive.'
|
'en-US': 'Update specified folder of drive.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -6,8 +6,8 @@ import create from '../../../../services/following/create';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーをフォローします。',
|
'ja-JP': '指定したユーザーをフォローします。',
|
||||||
en: 'Follow a user.'
|
'en-US': 'Follow a user.'
|
||||||
},
|
},
|
||||||
|
|
||||||
limit: {
|
limit: {
|
||||||
|
@ -6,8 +6,8 @@ import deleteFollowing from '../../../../services/following/delete';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーのフォローを解除します。',
|
'ja-JP': '指定したユーザーのフォローを解除します。',
|
||||||
en: 'Unfollow a user.'
|
'en-US': 'Unfollow a user.'
|
||||||
},
|
},
|
||||||
|
|
||||||
limit: {
|
limit: {
|
||||||
|
@ -4,8 +4,8 @@ import User, { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分に届いた、指定したフォローリクエストを承認します。',
|
'ja-JP': '自分に届いた、指定したフォローリクエストを承認します。',
|
||||||
en: 'Accept a follow request.'
|
'en-US': 'Accept a follow request.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import User, { pack, ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分が作成した、指定したフォローリクエストをキャンセルします。',
|
'ja-JP': '自分が作成した、指定したフォローリクエストをキャンセルします。',
|
||||||
en: 'Cancel a follow request.'
|
'en-US': 'Cancel a follow request.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分に届いたフォローリクエストの一覧を取得します。',
|
'ja-JP': '自分に届いたフォローリクエストの一覧を取得します。',
|
||||||
en: 'Get all pending received follow requests.'
|
'en-US': 'Get all pending received follow requests.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import User, { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分に届いた、指定したフォローリクエストを拒否します。',
|
'ja-JP': '自分に届いた、指定したフォローリクエストを拒否します。',
|
||||||
en: 'Reject a follow request.'
|
'en-US': 'Reject a follow request.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーをストーキングします。',
|
'ja-JP': '指定したユーザーをストーキングします。',
|
||||||
en: 'Stalk a user.'
|
'en-US': 'Stalk a user.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーのストーキングをやめます。',
|
'ja-JP': '指定したユーザーのストーキングをやめます。',
|
||||||
en: 'Unstalk a user.'
|
'en-US': 'Unstalk a user.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -6,7 +6,7 @@ import { publishReversiGameStream } from '../../../../../../stream';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したリバーシの対局で投了します。'
|
'ja-JP': '指定したリバーシの対局で投了します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -14,7 +14,7 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
gameId: $.type(ID).note({
|
gameId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '投了したい対局'
|
'ja-JP': '投了したい対局'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ const escapeRegexp = require('escape-regexp');
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ハッシュタグを検索します。'
|
'ja-JP': 'ハッシュタグを検索します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: false,
|
requireCredential: false,
|
||||||
@ -14,20 +14,20 @@ export const meta = {
|
|||||||
limit: $.num.optional.range(1, 100).note({
|
limit: $.num.optional.range(1, 100).note({
|
||||||
default: 10,
|
default: 10,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '最大数'
|
'ja-JP': '最大数'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
query: $.str.note({
|
query: $.str.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'クエリ'
|
'ja-JP': 'クエリ'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
offset: $.num.optional.min(0).note({
|
offset: $.num.optional.min(0).note({
|
||||||
default: 0,
|
default: 0,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'オフセット'
|
'ja-JP': 'オフセット'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ import { IApp } from '../../../models/app';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分のアカウント情報を取得します。'
|
'ja-JP': '自分のアカウント情報を取得します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'お気に入りに登録した投稿一覧を取得します。',
|
'ja-JP': 'お気に入りに登録した投稿一覧を取得します。',
|
||||||
en: 'Get favorited notes'
|
'en-US': 'Get favorited notes'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -8,8 +8,8 @@ import config from '../../../../config';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'アカウント情報を更新します。',
|
'ja-JP': 'アカウント情報を更新します。',
|
||||||
en: 'Update myself'
|
'en-US': 'Update myself'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -6,8 +6,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Messagingの履歴を取得します。',
|
'ja-JP': 'Messagingの履歴を取得します。',
|
||||||
en: 'Show messaging history.'
|
'en-US': 'Show messaging history.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -6,8 +6,8 @@ import read from '../../common/read-messaging-message';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーとのMessagingのメッセージ一覧を取得します。',
|
'ja-JP': '指定したユーザーとのMessagingのメッセージ一覧を取得します。',
|
||||||
en: 'Get messages of messaging.'
|
'en-US': 'Get messages of messaging.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -12,8 +12,8 @@ import pushSw from '../../../../../push-sw';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーへMessagingのメッセージを送信します。',
|
'ja-JP': '指定したユーザーへMessagingのメッセージを送信します。',
|
||||||
en: 'Create a message of messaging.'
|
'en-US': 'Create a message of messaging.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -6,8 +6,8 @@ import getParams from '../../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した自分宛てのメッセージを既読にします。',
|
'ja-JP': '指定した自分宛てのメッセージを既読にします。',
|
||||||
en: 'Mark as read a message of messaging.'
|
'en-US': 'Mark as read a message of messaging.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -17,8 +17,8 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
messageId: $.type(ID).note({
|
messageId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '既読にするメッセージのID',
|
'ja-JP': '既読にするメッセージのID',
|
||||||
en: 'The ID of a message that you want to mark as read'
|
'en-US': 'The ID of a message that you want to mark as read'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,8 @@ import Mute from '../../../../models/mute';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ユーザーをミュートします。',
|
'ja-JP': 'ユーザーをミュートします。',
|
||||||
en: 'Mute a user'
|
'en-US': 'Mute a user'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import Mute from '../../../../models/mute';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ユーザーのミュートを解除します。',
|
'ja-JP': 'ユーザーのミュートを解除します。',
|
||||||
en: 'Unmute a user'
|
'en-US': 'Unmute a user'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import { getFriendIds } from '../../common/get-friends';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ミュートしているユーザー一覧を取得します。',
|
'ja-JP': 'ミュートしているユーザー一覧を取得します。',
|
||||||
en: 'Get muted users.'
|
'en-US': 'Get muted users.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分のアプリケーション一覧を取得します。',
|
'ja-JP': '自分のアプリケーション一覧を取得します。',
|
||||||
en: 'Get my apps'
|
'en-US': 'Get my apps'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true
|
requireCredential: true
|
||||||
|
@ -9,7 +9,7 @@ import getParams from '../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '投稿します。'
|
'ja-JP': '投稿します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -25,33 +25,33 @@ export const meta = {
|
|||||||
visibility: $.str.optional.or(['public', 'home', 'followers', 'specified', 'private']).note({
|
visibility: $.str.optional.or(['public', 'home', 'followers', 'specified', 'private']).note({
|
||||||
default: 'public',
|
default: 'public',
|
||||||
desc: {
|
desc: {
|
||||||
ja: '投稿の公開範囲'
|
'ja-JP': '投稿の公開範囲'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
visibleUserIds: $.arr($.type(ID)).optional.unique().min(1).note({
|
visibleUserIds: $.arr($.type(ID)).optional.unique().min(1).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '(投稿の公開範囲が specified の場合)投稿を閲覧できるユーザー'
|
'ja-JP': '(投稿の公開範囲が specified の場合)投稿を閲覧できるユーザー'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
text: $.str.optional.nullable.pipe(isValidText).note({
|
text: $.str.optional.nullable.pipe(isValidText).note({
|
||||||
default: null,
|
default: null,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '投稿内容'
|
'ja-JP': '投稿内容'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
cw: $.str.optional.nullable.pipe(isValidCw).note({
|
cw: $.str.optional.nullable.pipe(isValidCw).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'コンテンツの警告。このパラメータを指定すると設定したテキストで投稿のコンテンツを隠す事が出来ます。'
|
'ja-JP': 'コンテンツの警告。このパラメータを指定すると設定したテキストで投稿のコンテンツを隠す事が出来ます。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
viaMobile: $.bool.optional.note({
|
viaMobile: $.bool.optional.note({
|
||||||
default: false,
|
default: false,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'モバイルデバイスからの投稿か否か。'
|
'ja-JP': 'モバイルデバイスからの投稿か否か。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
@ -66,20 +66,20 @@ export const meta = {
|
|||||||
speed: $.num.nullable
|
speed: $.num.nullable
|
||||||
}).optional.nullable.strict().note({
|
}).optional.nullable.strict().note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '位置情報'
|
'ja-JP': '位置情報'
|
||||||
},
|
},
|
||||||
ref: 'geo'
|
ref: 'geo'
|
||||||
}),
|
}),
|
||||||
|
|
||||||
mediaIds: $.arr($.type(ID)).optional.unique().range(1, 4).note({
|
mediaIds: $.arr($.type(ID)).optional.unique().range(1, 4).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '添付するメディア'
|
'ja-JP': '添付するメディア'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
renoteId: $.type(ID).optional.note({
|
renoteId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renote対象'
|
'ja-JP': 'Renote対象'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
@ -90,7 +90,7 @@ export const meta = {
|
|||||||
.each(c => c.length > 0 && c.length < 50)
|
.each(c => c.length > 0 && c.length < 50)
|
||||||
}).optional.strict().note({
|
}).optional.strict().note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'アンケート'
|
'ja-JP': 'アンケート'
|
||||||
},
|
},
|
||||||
ref: 'poll'
|
ref: 'poll'
|
||||||
})
|
})
|
||||||
@ -102,7 +102,7 @@ export const meta = {
|
|||||||
createdNote: {
|
createdNote: {
|
||||||
type: 'entity(Note)',
|
type: 'entity(Note)',
|
||||||
desc: {
|
desc: {
|
||||||
ja: '作成した投稿'
|
'ja-JP': '作成した投稿'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿を削除します。',
|
'ja-JP': '指定した投稿を削除します。',
|
||||||
en: 'Delete a note.'
|
'en-US': 'Delete a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿をお気に入りに登録します。',
|
'ja-JP': '指定した投稿をお気に入りに登録します。',
|
||||||
en: 'Favorite a note.'
|
'en-US': 'Favorite a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿のお気に入りを解除します。',
|
'ja-JP': '指定した投稿のお気に入りを解除します。',
|
||||||
en: 'Unfavorite a note.'
|
'en-US': 'Unfavorite a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -10,65 +10,65 @@ export const meta = {
|
|||||||
name: 'notes/hybrid-timeline',
|
name: 'notes/hybrid-timeline',
|
||||||
|
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ハイブリッドタイムラインを取得します。'
|
'ja-JP': 'ハイブリッドタイムラインを取得します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
params: {
|
params: {
|
||||||
limit: $.num.optional.range(1, 100).note({
|
limit: $.num.optional.range(1, 100).note({
|
||||||
default: 10,
|
default: 10,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '最大数'
|
'ja-JP': '最大数'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
sinceId: $.type(ID).optional.note({
|
sinceId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
untilId: $.type(ID).optional.note({
|
untilId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定すると、この投稿を基点としてより古い投稿を取得します'
|
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
sinceDate: $.num.optional.note({
|
sinceDate: $.num.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
untilDate: $.num.optional.note({
|
untilDate: $.num.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeMyRenotes: $.bool.optional.note({
|
includeMyRenotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分の行ったRenoteを含めるかどうか'
|
'ja-JP': '自分の行ったRenoteを含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeRenotedMyNotes: $.bool.optional.note({
|
includeRenotedMyNotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renoteされた自分の投稿を含めるかどうか'
|
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeLocalRenotes: $.bool.optional.note({
|
includeLocalRenotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renoteされたローカルの投稿を含めるかどうか'
|
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
mediaOnly: $.bool.optional.note({
|
mediaOnly: $.bool.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'true にすると、メディアが添付された投稿だけ取得します'
|
'ja-JP': 'true にすると、メディアが添付された投稿だけ取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分に言及している投稿の一覧を取得します。',
|
'ja-JP': '自分に言及している投稿の一覧を取得します。',
|
||||||
en: 'Get mentions of myself.'
|
'en-US': 'Get mentions of myself.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true
|
requireCredential: true
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'おすすめのアンケート一覧を取得します。',
|
'ja-JP': 'おすすめのアンケート一覧を取得します。',
|
||||||
en: 'Get recommended polls.'
|
'en-US': 'Get recommended polls.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -9,8 +9,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿のアンケートに投票します。',
|
'ja-JP': '指定した投稿のアンケートに投票します。',
|
||||||
en: 'Vote poll of a note.'
|
'en-US': 'Vote poll of a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿のリアクション一覧を取得します。',
|
'ja-JP': '指定した投稿のリアクション一覧を取得します。',
|
||||||
en: 'Show reactions of a note.'
|
'en-US': 'Show reactions of a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true
|
requireCredential: true
|
||||||
|
@ -7,8 +7,8 @@ import getParams from '../../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿にリアクションします。',
|
'ja-JP': '指定した投稿にリアクションします。',
|
||||||
en: 'React to a note.'
|
'en-US': 'React to a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -18,13 +18,13 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
noteId: $.type(ID).note({
|
noteId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '対象の投稿'
|
'ja-JP': '対象の投稿'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
reaction: $.str.pipe(validateReaction.ok).note({
|
reaction: $.str.pipe(validateReaction.ok).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'リアクションの種類'
|
'ja-JP': 'リアクションの種類'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した投稿へのリアクションを取り消します。',
|
'ja-JP': '指定した投稿へのリアクションを取り消します。',
|
||||||
en: 'Unreact to a note.'
|
'en-US': 'Unreact to a note.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -8,8 +8,8 @@ import getParams from '../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'タイムラインを取得します。',
|
'ja-JP': 'タイムラインを取得します。',
|
||||||
en: 'Get timeline of myself.'
|
'en-US': 'Get timeline of myself.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -18,58 +18,58 @@ export const meta = {
|
|||||||
limit: $.num.optional.range(1, 100).note({
|
limit: $.num.optional.range(1, 100).note({
|
||||||
default: 10,
|
default: 10,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '最大数'
|
'ja-JP': '最大数'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
sinceId: $.type(ID).optional.note({
|
sinceId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
untilId: $.type(ID).optional.note({
|
untilId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定すると、この投稿を基点としてより古い投稿を取得します'
|
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
sinceDate: $.num.optional.note({
|
sinceDate: $.num.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
untilDate: $.num.optional.note({
|
untilDate: $.num.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeMyRenotes: $.bool.optional.note({
|
includeMyRenotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分の行ったRenoteを含めるかどうか'
|
'ja-JP': '自分の行ったRenoteを含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeRenotedMyNotes: $.bool.optional.note({
|
includeRenotedMyNotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renoteされた自分の投稿を含めるかどうか'
|
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeLocalRenotes: $.bool.optional.note({
|
includeLocalRenotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renoteされたローカルの投稿を含めるかどうか'
|
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
mediaOnly: $.bool.optional.note({
|
mediaOnly: $.bool.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'true にすると、メディアが添付された投稿だけ取得します'
|
'ja-JP': 'true にすると、メディアが添付された投稿だけ取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,8 @@ import { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '人気の投稿の一覧を取得します。',
|
'ja-JP': '人気の投稿の一覧を取得します。',
|
||||||
en: 'Get trend notes.'
|
'en-US': 'Get trend notes.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true
|
requireCredential: true
|
||||||
|
@ -8,8 +8,8 @@ import getParams from '../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーリストのタイムラインを取得します。',
|
'ja-JP': '指定したユーザーリストのタイムラインを取得します。',
|
||||||
en: 'Get timeline of a user list.'
|
'en-US': 'Get timeline of a user list.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
@ -17,65 +17,65 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
listId: $.type(ID).note({
|
listId: $.type(ID).note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'リストのID'
|
'ja-JP': 'リストのID'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
limit: $.num.optional.range(1, 100).note({
|
limit: $.num.optional.range(1, 100).note({
|
||||||
default: 10,
|
default: 10,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '最大数'
|
'ja-JP': '最大数'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
sinceId: $.type(ID).optional.note({
|
sinceId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
untilId: $.type(ID).optional.note({
|
untilId: $.type(ID).optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定すると、この投稿を基点としてより古い投稿を取得します'
|
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
sinceDate: $.num.optional.note({
|
sinceDate: $.num.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
untilDate: $.num.optional.note({
|
untilDate: $.num.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeMyRenotes: $.bool.optional.note({
|
includeMyRenotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分の行ったRenoteを含めるかどうか'
|
'ja-JP': '自分の行ったRenoteを含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeRenotedMyNotes: $.bool.optional.note({
|
includeRenotedMyNotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renoteされた自分の投稿を含めるかどうか'
|
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
includeLocalRenotes: $.bool.optional.note({
|
includeLocalRenotes: $.bool.optional.note({
|
||||||
default: true,
|
default: true,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'Renoteされたローカルの投稿を含めるかどうか'
|
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
mediaOnly: $.bool.optional.note({
|
mediaOnly: $.bool.optional.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'true にすると、メディアが添付された投稿だけ取得します'
|
'ja-JP': 'true にすると、メディアが添付された投稿だけ取得します'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,8 @@ import User, { ILocalUser } from '../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '全ての通知を既読にします。',
|
'ja-JP': '全ての通知を既読にします。',
|
||||||
en: 'Mark all notifications as read.'
|
'en-US': 'Mark all notifications as read.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ユーザーリストを作成します。',
|
'ja-JP': 'ユーザーリストを作成します。',
|
||||||
en: 'Create a user list'
|
'en-US': 'Create a user list'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -3,7 +3,7 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '自分の作成したユーザーリスト一覧を取得します。'
|
'ja-JP': '自分の作成したユーザーリスト一覧を取得します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -8,8 +8,8 @@ import { deliver } from '../../../../../queue';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーリストに指定したユーザーを追加します。',
|
'ja-JP': '指定したユーザーリストに指定したユーザーを追加します。',
|
||||||
en: 'Add a user to a user list.'
|
'en-US': 'Add a user to a user list.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -4,8 +4,8 @@ import { ILocalUser } from '../../../../../models/user';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: '指定したユーザーリストの情報を取得します。',
|
'ja-JP': '指定したユーザーリストの情報を取得します。',
|
||||||
en: 'Show a user list.'
|
'en-US': 'Show a user list.'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -6,7 +6,7 @@ import Mute from '../../../../models/mute';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'おすすめのユーザー一覧を取得します。'
|
'ja-JP': 'おすすめのユーザー一覧を取得します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: true,
|
requireCredential: true,
|
||||||
|
@ -5,7 +5,7 @@ import getParams from '../../get-params';
|
|||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ユーザーを検索します。'
|
'ja-JP': 'ユーザーを検索します。'
|
||||||
},
|
},
|
||||||
|
|
||||||
requireCredential: false,
|
requireCredential: false,
|
||||||
@ -13,28 +13,28 @@ export const meta = {
|
|||||||
params: {
|
params: {
|
||||||
query: $.str.note({
|
query: $.str.note({
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'クエリ'
|
'ja-JP': 'クエリ'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
offset: $.num.optional.min(0).note({
|
offset: $.num.optional.min(0).note({
|
||||||
default: 0,
|
default: 0,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'オフセット'
|
'ja-JP': 'オフセット'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
limit: $.num.optional.range(1, 100).note({
|
limit: $.num.optional.range(1, 100).note({
|
||||||
default: 10,
|
default: 10,
|
||||||
desc: {
|
desc: {
|
||||||
ja: '取得する数'
|
'ja-JP': '取得する数'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
localOnly: $.bool.optional.note({
|
localOnly: $.bool.optional.note({
|
||||||
default: false,
|
default: false,
|
||||||
desc: {
|
desc: {
|
||||||
ja: 'ローカルユーザーのみ検索対象にするか否か'
|
'ja-JP': 'ローカルユーザーのみ検索対象にするか否か'
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user