chore: bump version to oscar.9b
This commit is contained in:
parent
ad42eccfa4
commit
1345d0e2bd
76
locales/index.d.ts
vendored
76
locales/index.d.ts
vendored
@ -2400,6 +2400,14 @@ export interface Locale extends ILocale {
|
||||
* バナーを解除しますか?
|
||||
*/
|
||||
"unsetUserBannerConfirm": string;
|
||||
/**
|
||||
* 相互リンクを削除
|
||||
*/
|
||||
"unsetUserMutualLink": string;
|
||||
/**
|
||||
* 相互リンクを削除しますか?
|
||||
*/
|
||||
"unsetUserMutualLinkConfirm": string;
|
||||
/**
|
||||
* すべてのファイルを削除
|
||||
*/
|
||||
@ -5147,6 +5155,18 @@ export interface Locale extends ILocale {
|
||||
* 本当に{host}とのすべてのフォロー関係を削除しますか? 実行後は元に戻せません。 相手インスタンスが閉鎖されたと判断した場合のみ実行してください。
|
||||
*/
|
||||
"areYouSureToRemoveAllFollowings": ParameterizedString<"host">;
|
||||
/**
|
||||
* 相互リンク
|
||||
*/
|
||||
"mutualLink": string;
|
||||
/**
|
||||
* このユーザーのバナー
|
||||
*/
|
||||
"mutualBannerThisUser": string;
|
||||
/**
|
||||
* 最大
|
||||
*/
|
||||
"maximum": string;
|
||||
"_bubbleGame": {
|
||||
/**
|
||||
* 遊び方
|
||||
@ -6988,6 +7008,14 @@ export interface Locale extends ILocale {
|
||||
* アイコンデコレーションの最大取付個数
|
||||
*/
|
||||
"avatarDecorationLimit": string;
|
||||
/**
|
||||
* 相互リンクのセクションの最大数
|
||||
*/
|
||||
"mutualLinkSectionLimit": string;
|
||||
/**
|
||||
* セクション内の相互リンクの最大数
|
||||
*/
|
||||
"mutualLinkLimit": string;
|
||||
};
|
||||
"_condition": {
|
||||
/**
|
||||
@ -8340,6 +8368,10 @@ export interface Locale extends ILocale {
|
||||
* ユーザーのバーナーを削除する
|
||||
*/
|
||||
"write:admin:unset-user-banner": string;
|
||||
/**
|
||||
* ユーザーの相互リンクを削除する
|
||||
*/
|
||||
"write:admin:unset-user-mutual-link": string;
|
||||
/**
|
||||
* ユーザーの凍結を解除する
|
||||
*/
|
||||
@ -8926,6 +8958,50 @@ export interface Locale extends ILocale {
|
||||
* 最大{max}つまでデコレーションを付けられます。
|
||||
*/
|
||||
"avatarDecorationMax": ParameterizedString<"max">;
|
||||
/**
|
||||
* 相互リンクを編集
|
||||
*/
|
||||
"mutualLinksEdit": string;
|
||||
/**
|
||||
* 相互リンクのバナー
|
||||
*/
|
||||
"mutualLinksBanner": string;
|
||||
/**
|
||||
* 説明
|
||||
*/
|
||||
"mutualLinksDescriptionEdit": string;
|
||||
/**
|
||||
* リンク先のURL
|
||||
*/
|
||||
"mutualLinksUrl": string;
|
||||
/**
|
||||
* このセクションをプロフィールにピン留め
|
||||
*/
|
||||
"mutualLinkPining": string;
|
||||
/**
|
||||
* 相互リンクを設定すると、あなたのプロフィールにバナーが表示されます。
|
||||
*/
|
||||
"mutualLinksDescription": string;
|
||||
/**
|
||||
* 相互リンクを追加
|
||||
*/
|
||||
"addMutualLink": string;
|
||||
/**
|
||||
* セクションを追加
|
||||
*/
|
||||
"addMutualLinkSection": string;
|
||||
/**
|
||||
* セクション名
|
||||
*/
|
||||
"sectionName": string;
|
||||
/**
|
||||
* セクション名を表示しないようにする
|
||||
*/
|
||||
"sectionNameNoneDescription": string;
|
||||
/**
|
||||
* セクション名を表示しない
|
||||
*/
|
||||
"sectionNameNone": string;
|
||||
};
|
||||
"_exportOrImport": {
|
||||
/**
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "misskey",
|
||||
"version": "2024.5.0-oscar.9",
|
||||
"version": "2024.5.0-oscar.9b",
|
||||
"codename": "nasubi",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "module",
|
||||
"name": "misskey-js",
|
||||
"version": "2024.5.0-oscar.9",
|
||||
"version": "2024.5.0-oscar.9b",
|
||||
"description": "Misskey SDK for JavaScript",
|
||||
"types": "./built/dts/index.d.ts",
|
||||
"exports": {
|
||||
|
@ -290,6 +290,17 @@ declare module '../api.js' {
|
||||
credential?: string | null,
|
||||
): Promise<SwitchCaseResponseType<E, P>>;
|
||||
|
||||
/**
|
||||
* No description provided.
|
||||
*
|
||||
* **Credential required**: *Yes* / **Permission**: *write:admin:unset-user-mutual-link*
|
||||
*/
|
||||
request<E extends 'admin/unset-user-mutual-link', P extends Endpoints[E]['req']>(
|
||||
endpoint: E,
|
||||
params: P,
|
||||
credential?: string | null,
|
||||
): Promise<SwitchCaseResponseType<E, P>>;
|
||||
|
||||
/**
|
||||
* No description provided.
|
||||
*
|
||||
|
@ -37,6 +37,7 @@ import type {
|
||||
AdminAvatarDecorationsUpdateRequest,
|
||||
AdminUnsetUserAvatarRequest,
|
||||
AdminUnsetUserBannerRequest,
|
||||
AdminUnsetUserMutualLinkRequest,
|
||||
AdminDriveDeleteAllFilesOfAUserRequest,
|
||||
AdminDriveFilesRequest,
|
||||
AdminDriveFilesResponse,
|
||||
@ -609,6 +610,7 @@ export type Endpoints = {
|
||||
'admin/unset-user-avatar': { req: AdminUnsetUserAvatarRequest; res: EmptyResponse };
|
||||
'admin/unset-user-banner': { req: AdminUnsetUserBannerRequest; res: EmptyResponse };
|
||||
'admin/dispose-cache': { req: EmptyRequest; res: EmptyResponse };
|
||||
'admin/unset-user-mutual-link': { req: AdminUnsetUserMutualLinkRequest; res: EmptyResponse };
|
||||
'admin/drive/clean-remote-files': { req: EmptyRequest; res: EmptyResponse };
|
||||
'admin/drive/cleanup': { req: EmptyRequest; res: EmptyResponse };
|
||||
'admin/drive/delete-all-files-of-a-user': { req: AdminDriveDeleteAllFilesOfAUserRequest; res: EmptyResponse };
|
||||
|
@ -247,6 +247,15 @@ export type paths = {
|
||||
*/
|
||||
post: operations['admin___dispose-cache'];
|
||||
};
|
||||
'/admin/unset-user-mutual-link': {
|
||||
/**
|
||||
* admin/unset-user-mutual-link
|
||||
* @description No description provided.
|
||||
*
|
||||
* **Credential required**: *Yes* / **Permission**: *write:admin:unset-user-mutual-link*
|
||||
*/
|
||||
post: operations['admin___unset-user-mutual-link'];
|
||||
};
|
||||
'/admin/drive/clean-remote-files': {
|
||||
/**
|
||||
* admin/drive/clean-remote-files
|
||||
@ -3843,6 +3852,16 @@ export type components = {
|
||||
roles: components['schemas']['RoleLite'][];
|
||||
memo: string | null;
|
||||
moderationNote?: string;
|
||||
mutualLinkSections: ({
|
||||
name: string | null;
|
||||
mutualLinks: ({
|
||||
url: string;
|
||||
/** Format: misskey:id */
|
||||
fileId: string;
|
||||
description: string | null;
|
||||
imgSrc: string;
|
||||
})[];
|
||||
})[];
|
||||
isFollowing?: boolean;
|
||||
isFollowed?: boolean;
|
||||
hasPendingFollowRequestFromYou?: boolean;
|
||||
@ -4938,6 +4957,8 @@ export type components = {
|
||||
rateLimitFactor: number;
|
||||
avatarDecorationLimit: number;
|
||||
canUseAccountRemoval: boolean;
|
||||
mutualLinkSectionLimit: number;
|
||||
mutualLinkLimit: number;
|
||||
};
|
||||
ReversiGameLite: {
|
||||
/** Format: id */
|
||||
@ -6878,6 +6899,58 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
};
|
||||
/**
|
||||
* admin/unset-user-mutual-link
|
||||
* @description No description provided.
|
||||
*
|
||||
* **Credential required**: *Yes* / **Permission**: *write:admin:unset-user-mutual-link*
|
||||
*/
|
||||
'admin___unset-user-mutual-link': {
|
||||
requestBody: {
|
||||
content: {
|
||||
'application/json': {
|
||||
/** Format: misskey:id */
|
||||
userId: string;
|
||||
};
|
||||
};
|
||||
};
|
||||
responses: {
|
||||
/** @description OK (without any results) */
|
||||
204: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Client error */
|
||||
400: {
|
||||
content: {
|
||||
'application/json': components['schemas']['Error'];
|
||||
};
|
||||
};
|
||||
/** @description Authentication error */
|
||||
401: {
|
||||
content: {
|
||||
'application/json': components['schemas']['Error'];
|
||||
};
|
||||
};
|
||||
/** @description Forbidden error */
|
||||
403: {
|
||||
content: {
|
||||
'application/json': components['schemas']['Error'];
|
||||
};
|
||||
};
|
||||
/** @description I'm Ai */
|
||||
418: {
|
||||
content: {
|
||||
'application/json': components['schemas']['Error'];
|
||||
};
|
||||
};
|
||||
/** @description Internal server error */
|
||||
500: {
|
||||
content: {
|
||||
'application/json': components['schemas']['Error'];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
/**
|
||||
* admin/drive/clean-remote-files
|
||||
* @description No description provided.
|
||||
@ -20272,6 +20345,16 @@ export type operations = {
|
||||
};
|
||||
emailNotificationTypes?: string[];
|
||||
alsoKnownAs?: string[];
|
||||
mutualLinkSections?: ({
|
||||
name?: string | null;
|
||||
mutualLinks: ({
|
||||
/** Format: url */
|
||||
url: string;
|
||||
/** Format: misskey:id */
|
||||
fileId: string;
|
||||
description?: string | null;
|
||||
})[];
|
||||
})[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user