Compare commits
45 commits
e97f988f00
...
1af7c8724c
Author | SHA1 | Date | |
---|---|---|---|
1af7c8724c | |||
1907a97d2f | |||
1ff87448bc | |||
937b92c175 | |||
bac7692c71 | |||
e579e427cf | |||
59132aac2e | |||
979c486ce3 | |||
5aa4f2d409 | |||
d6fe9c1f73 | |||
380d0c3d96 | |||
d06764fb24 | |||
c1e3d2eb81 | |||
47c324282d | |||
e2abfe0ec1 | |||
d9a3f9ea8a | |||
7dc213525b | |||
e2a641d81c | |||
e31b060f2d | |||
2ec60095cc | |||
e55e278fc5 | |||
af877ca3c7 | |||
4066b45940 | |||
5d11093207 | |||
944fa6e234 | |||
285de75efa | |||
eaf2134126 | |||
f93472ed3e | |||
eeb5c88fc9 | |||
6a192aa1ab | |||
45e26d5583 | |||
697f35a594 | |||
aefd107e63 | |||
4adf85739b | |||
e5af90f472 | |||
5ad7ef679f | |||
fd0cc71444 | |||
102bee990f | |||
ba02ba37a8 | |||
8fa67c5350 | |||
2696984000 | |||
316be2db8c | |||
aa642f4f7c | |||
a8597febfd | |||
08eeead6aa |
3 changed files with 107 additions and 109 deletions
|
@ -8,11 +8,10 @@ Sharkey is a soft fork of the mighty mighty mighty Misskey Project<br>
|
||||||
<b>Use at your own risk</b>
|
<b>Use at your own risk</b>
|
||||||
|
|
||||||
I have tested and launched an instance via docker build (not compose) and manual install methods
|
I have tested and launched an instance via docker build (not compose) and manual install methods
|
||||||
|
Clone into /Quollkey directory, cd Quollkey and its basically the same as Misskey instructions for docker build, Sharkey instructions for manual install, from there.
|
||||||
|
|
||||||
A lot of updates to readme files regarding installing, current code changes and future code changes need to be done.<br>
|
A lot of updates to readme files regarding installing, current code changes and future code changes need to be done.<br>
|
||||||
|
|
||||||
All the logos/images etc are a draft, repository and Quollkey
|
All the logos/images etc are a draft, repository and Quollkey
|
||||||
|
|
||||||
Clone into /Quollkey directory, cd Quollkey and its basically the same as Misskey instructions for docker build, Sharkey instructions for manual install, from there.
|
|
||||||
|
|
||||||
Use main or develop branches, they will definitely be more usable/stable than other branches
|
Use main or develop branches, they will definitely be more usable/stable than other branches
|
||||||
|
|
|
@ -8,7 +8,6 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<template #header><MkPageHeader :actions="headerActions" :displayBackButton="true" :tabs="headerTabs"/></template>
|
<template #header><MkPageHeader :actions="headerActions" :displayBackButton="true" :tabs="headerTabs"/></template>
|
||||||
<MkSpacer :contentMax="800">
|
<MkSpacer :contentMax="800">
|
||||||
<div ref="rootEl">
|
<div ref="rootEl">
|
||||||
<div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
|
|
||||||
<div :class="$style.tl">
|
<div :class="$style.tl">
|
||||||
<MkTimeline
|
<MkTimeline
|
||||||
ref="tlEl" :key="antennaId"
|
ref="tlEl" :key="antennaId"
|
||||||
|
|
|
@ -3916,30 +3916,30 @@ export type components = {
|
||||||
avatarDecorations: {
|
avatarDecorations: {
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
id: string;
|
id: string;
|
||||||
angle?: number;
|
angle: number;
|
||||||
flipH?: boolean;
|
flipH: boolean;
|
||||||
/** Format: url */
|
/** Format: url */
|
||||||
url: string;
|
url: string;
|
||||||
offsetX?: number;
|
offsetX: number;
|
||||||
offsetY?: number;
|
offsetY: number;
|
||||||
showBelow?: boolean;
|
showBelow: boolean;
|
||||||
}[];
|
}[];
|
||||||
/** @default false */
|
/** @default false */
|
||||||
isAdmin?: boolean;
|
isAdmin: boolean;
|
||||||
/** @default false */
|
/** @default false */
|
||||||
isModerator?: boolean;
|
isModerator: boolean;
|
||||||
/** @default false */
|
/** @default false */
|
||||||
isSystem?: boolean;
|
isSystem: boolean;
|
||||||
noindex: boolean;
|
noindex: boolean;
|
||||||
enableRss: boolean;
|
enableRss: boolean;
|
||||||
isBot?: boolean;
|
isBot: boolean;
|
||||||
isCat?: boolean;
|
isCat: boolean;
|
||||||
speakAsCat?: boolean;
|
speakAsCat: boolean;
|
||||||
isSilenced: boolean;
|
isSilenced: boolean;
|
||||||
requireSigninToViewContents?: boolean;
|
requireSigninToViewContents: boolean;
|
||||||
makeNotesFollowersOnlyBefore?: number | null;
|
makeNotesFollowersOnlyBefore: number | null;
|
||||||
makeNotesHiddenBefore?: number | null;
|
makeNotesHiddenBefore: number | null;
|
||||||
instance?: {
|
instance: {
|
||||||
name: string | null;
|
name: string | null;
|
||||||
softwareName: string | null;
|
softwareName: string | null;
|
||||||
softwareVersion: string | null;
|
softwareVersion: string | null;
|
||||||
|
@ -3952,7 +3952,7 @@ export type components = {
|
||||||
};
|
};
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
onlineStatus: 'unknown' | 'online' | 'active' | 'offline';
|
onlineStatus: 'unknown' | 'online' | 'active' | 'offline';
|
||||||
badgeRoles?: ({
|
badgeRoles: ({
|
||||||
name: string;
|
name: string;
|
||||||
iconUrl: string | null;
|
iconUrl: string | null;
|
||||||
displayOrder: number;
|
displayOrder: number;
|
||||||
|
@ -4009,23 +4009,23 @@ export type components = {
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
followersVisibility: 'public' | 'followers' | 'private';
|
followersVisibility: 'public' | 'followers' | 'private';
|
||||||
roles: components['schemas']['RoleLite'][];
|
roles: components['schemas']['RoleLite'][];
|
||||||
followedMessage?: string | null;
|
followedMessage: string | null;
|
||||||
memo: string | null;
|
memo: string | null;
|
||||||
moderationNote?: string;
|
moderationNote: string;
|
||||||
twoFactorEnabled?: boolean;
|
twoFactorEnabled: boolean;
|
||||||
usePasswordLessLogin?: boolean;
|
usePasswordLessLogin: boolean;
|
||||||
securityKeys?: boolean;
|
securityKeys: boolean;
|
||||||
isFollowing?: boolean;
|
isFollowing: boolean;
|
||||||
isFollowed?: boolean;
|
isFollowed: boolean;
|
||||||
hasPendingFollowRequestFromYou?: boolean;
|
hasPendingFollowRequestFromYou: boolean;
|
||||||
hasPendingFollowRequestToYou?: boolean;
|
hasPendingFollowRequestToYou: boolean;
|
||||||
isBlocking?: boolean;
|
isBlocking: boolean;
|
||||||
isBlocked?: boolean;
|
isBlocked: boolean;
|
||||||
isMuted?: boolean;
|
isMuted: boolean;
|
||||||
isRenoteMuted?: boolean;
|
isRenoteMuted: boolean;
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
notify?: 'normal' | 'none';
|
notify: 'normal' | 'none';
|
||||||
withReplies?: boolean;
|
withReplies: boolean;
|
||||||
};
|
};
|
||||||
MeDetailedOnly: {
|
MeDetailedOnly: {
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
|
@ -4065,7 +4065,7 @@ export type components = {
|
||||||
hardMutedWords: string[][];
|
hardMutedWords: string[][];
|
||||||
mutedInstances: string[] | null;
|
mutedInstances: string[] | null;
|
||||||
notificationRecieveConfig: {
|
notificationRecieveConfig: {
|
||||||
note?: OneOf<[{
|
note: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4074,7 +4074,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
follow?: OneOf<[{
|
follow: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4083,7 +4083,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
mention?: OneOf<[{
|
mention: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4092,7 +4092,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
reply?: OneOf<[{
|
reply: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4101,7 +4101,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
renote?: OneOf<[{
|
renote: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4110,7 +4110,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
quote?: OneOf<[{
|
quote: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4119,7 +4119,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
reaction?: OneOf<[{
|
reaction: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4128,7 +4128,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
pollEnded?: OneOf<[{
|
pollEnded: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4137,7 +4137,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
receiveFollowRequest?: OneOf<[{
|
receiveFollowRequest: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4146,7 +4146,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
followRequestAccepted?: OneOf<[{
|
followRequestAccepted: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4155,7 +4155,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
roleAssigned?: OneOf<[{
|
roleAssigned: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4164,7 +4164,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
achievementEarned?: OneOf<[{
|
achievementEarned: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4173,7 +4173,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
app?: OneOf<[{
|
app: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4182,7 +4182,7 @@ export type components = {
|
||||||
/** Format: misskey:id */
|
/** Format: misskey:id */
|
||||||
userListId: string;
|
userListId: string;
|
||||||
}]>;
|
}]>;
|
||||||
test?: OneOf<[{
|
test: OneOf<[{
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'followingOrFollower' | 'never';
|
||||||
}, {
|
}, {
|
||||||
|
@ -4205,9 +4205,9 @@ export type components = {
|
||||||
usePasswordLessLogin: boolean;
|
usePasswordLessLogin: boolean;
|
||||||
/** @default false */
|
/** @default false */
|
||||||
securityKeys: boolean;
|
securityKeys: boolean;
|
||||||
email?: string | null;
|
email: string | null;
|
||||||
emailVerified?: boolean | null;
|
emailVerified: boolean | null;
|
||||||
securityKeysList?: {
|
securityKeysList: {
|
||||||
/**
|
/**
|
||||||
* Format: id
|
* Format: id
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
|
@ -4231,7 +4231,7 @@ export type components = {
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
name: string;
|
name: string;
|
||||||
userIds?: string[];
|
userIds: string[];
|
||||||
isPublic: boolean;
|
isPublic: boolean;
|
||||||
};
|
};
|
||||||
Ad: {
|
Ad: {
|
||||||
|
@ -4272,15 +4272,15 @@ export type components = {
|
||||||
needConfirmationToRead: boolean;
|
needConfirmationToRead: boolean;
|
||||||
silence: boolean;
|
silence: boolean;
|
||||||
forYou: boolean;
|
forYou: boolean;
|
||||||
isRead?: boolean;
|
isRead: boolean;
|
||||||
};
|
};
|
||||||
App: {
|
App: {
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
callbackUrl: string | null;
|
callbackUrl: string | null;
|
||||||
permission: string[];
|
permission: string[];
|
||||||
secret?: string;
|
secret: string;
|
||||||
isAuthorized?: boolean;
|
isAuthorized: boolean;
|
||||||
};
|
};
|
||||||
Note: {
|
Note: {
|
||||||
/**
|
/**
|
||||||
|
@ -4291,9 +4291,9 @@ export type components = {
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
deletedAt?: string | null;
|
deletedAt: string | null;
|
||||||
text: string | null;
|
text: string | null;
|
||||||
cw?: string | null;
|
cw: string | null;
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
userId: string;
|
userId: string;
|
||||||
user: components['schemas']['UserLite'];
|
user: components['schemas']['UserLite'];
|
||||||
|
@ -4301,23 +4301,23 @@ export type components = {
|
||||||
* Format: id
|
* Format: id
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
*/
|
*/
|
||||||
replyId?: string | null;
|
replyId: string | null;
|
||||||
/**
|
/**
|
||||||
* Format: id
|
* Format: id
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
*/
|
*/
|
||||||
renoteId?: string | null;
|
renoteId: string | null;
|
||||||
reply?: components['schemas']['Note'] | null;
|
reply: components['schemas']['Note'] | null;
|
||||||
renote?: components['schemas']['Note'] | null;
|
renote: components['schemas']['Note'] | null;
|
||||||
isHidden?: boolean;
|
isHidden: boolean;
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
visibility: 'public' | 'home' | 'followers' | 'specified';
|
visibility: 'public' | 'home' | 'followers' | 'specified';
|
||||||
mentions?: string[];
|
mentions: string[];
|
||||||
visibleUserIds?: string[];
|
visibleUserIds: string[];
|
||||||
fileIds?: string[];
|
fileIds: string[];
|
||||||
files?: components['schemas']['DriveFile'][];
|
files: components['schemas']['DriveFile'][];
|
||||||
tags?: string[];
|
tags: string[];
|
||||||
poll?: ({
|
poll: ({
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
expiresAt?: string | null;
|
expiresAt?: string | null;
|
||||||
multiple: boolean;
|
multiple: boolean;
|
||||||
|
@ -4327,15 +4327,15 @@ export type components = {
|
||||||
votes: number;
|
votes: number;
|
||||||
}[];
|
}[];
|
||||||
}) | null;
|
}) | null;
|
||||||
emojis?: {
|
emojis: {
|
||||||
[key: string]: string;
|
[key: string]: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* Format: id
|
* Format: id
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
*/
|
*/
|
||||||
channelId?: string | null;
|
channelId: string | null;
|
||||||
channel?: ({
|
channel: ({
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
color: string;
|
color: string;
|
||||||
|
@ -4343,7 +4343,7 @@ export type components = {
|
||||||
allowRenoteToExternal: boolean;
|
allowRenoteToExternal: boolean;
|
||||||
userId: string | null;
|
userId: string | null;
|
||||||
}) | null;
|
}) | null;
|
||||||
localOnly?: boolean;
|
localOnly: boolean;
|
||||||
/** @enum {string|null} */
|
/** @enum {string|null} */
|
||||||
reactionAcceptance: 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null;
|
reactionAcceptance: 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null;
|
||||||
reactionEmojis: {
|
reactionEmojis: {
|
||||||
|
@ -4355,11 +4355,11 @@ export type components = {
|
||||||
reactionCount: number;
|
reactionCount: number;
|
||||||
renoteCount: number;
|
renoteCount: number;
|
||||||
repliesCount: number;
|
repliesCount: number;
|
||||||
uri?: string;
|
uri: string;
|
||||||
url?: string;
|
url: string;
|
||||||
reactionAndUserPairCache?: string[];
|
reactionAndUserPairCache: string[];
|
||||||
clippedCount?: number;
|
clippedCount: number;
|
||||||
myReaction?: string | null;
|
myReaction: string | null;
|
||||||
};
|
};
|
||||||
NoteReaction: {
|
NoteReaction: {
|
||||||
/**
|
/**
|
||||||
|
@ -4620,13 +4620,13 @@ export type components = {
|
||||||
blurhash: string | null;
|
blurhash: string | null;
|
||||||
properties: {
|
properties: {
|
||||||
/** @example 1280 */
|
/** @example 1280 */
|
||||||
width?: number;
|
width: number;
|
||||||
/** @example 720 */
|
/** @example 720 */
|
||||||
height?: number;
|
height: number;
|
||||||
/** @example 8 */
|
/** @example 8 */
|
||||||
orientation?: number;
|
orientation: number;
|
||||||
/** @example rgb(40,65,87) */
|
/** @example rgb(40,65,87) */
|
||||||
avgColor?: string;
|
avgColor: string;
|
||||||
};
|
};
|
||||||
/** Format: url */
|
/** Format: url */
|
||||||
url: string;
|
url: string;
|
||||||
|
@ -4638,13 +4638,13 @@ export type components = {
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
*/
|
*/
|
||||||
folderId: string | null;
|
folderId: string | null;
|
||||||
folder?: components['schemas']['DriveFolder'] | null;
|
folder: components['schemas']['DriveFolder'] | null;
|
||||||
/**
|
/**
|
||||||
* Format: id
|
* Format: id
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
*/
|
*/
|
||||||
userId: string | null;
|
userId: string | null;
|
||||||
user?: components['schemas']['UserLite'] | null;
|
user: components['schemas']['UserLite'] | null;
|
||||||
};
|
};
|
||||||
DriveFolder: {
|
DriveFolder: {
|
||||||
/**
|
/**
|
||||||
|
@ -4660,9 +4660,9 @@ export type components = {
|
||||||
* @example xxxxxxxxxx
|
* @example xxxxxxxxxx
|
||||||
*/
|
*/
|
||||||
parentId: string | null;
|
parentId: string | null;
|
||||||
foldersCount?: number;
|
foldersCount: number;
|
||||||
filesCount?: number;
|
filesCount: number;
|
||||||
parent?: components['schemas']['DriveFolder'] | null;
|
parent: components['schemas']['DriveFolder'] | null;
|
||||||
};
|
};
|
||||||
Following: {
|
Following: {
|
||||||
/**
|
/**
|
||||||
|
@ -4676,8 +4676,8 @@ export type components = {
|
||||||
followeeId: string;
|
followeeId: string;
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
followerId: string;
|
followerId: string;
|
||||||
followee?: components['schemas']['UserDetailedNotMe'];
|
followee: components['schemas']['UserDetailedNotMe'];
|
||||||
follower?: components['schemas']['UserDetailedNotMe'];
|
follower: components['schemas']['UserDetailedNotMe'];
|
||||||
};
|
};
|
||||||
Muting: {
|
Muting: {
|
||||||
/**
|
/**
|
||||||
|
@ -4771,7 +4771,7 @@ export type components = {
|
||||||
eyeCatchingImage: components['schemas']['DriveFile'] | null;
|
eyeCatchingImage: components['schemas']['DriveFile'] | null;
|
||||||
attachedFiles: components['schemas']['DriveFile'][];
|
attachedFiles: components['schemas']['DriveFile'][];
|
||||||
likedCount: number;
|
likedCount: number;
|
||||||
isLiked?: boolean;
|
isLiked: boolean;
|
||||||
};
|
};
|
||||||
PageBlock: OneOf<[{
|
PageBlock: OneOf<[{
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -4819,9 +4819,9 @@ export type components = {
|
||||||
notesCount: number;
|
notesCount: number;
|
||||||
isSensitive: boolean;
|
isSensitive: boolean;
|
||||||
allowRenoteToExternal: boolean;
|
allowRenoteToExternal: boolean;
|
||||||
isFollowing?: boolean;
|
isFollowing: boolean;
|
||||||
isFavorited?: boolean;
|
isFavorited: boolean;
|
||||||
pinnedNotes?: components['schemas']['Note'][];
|
pinnedNotes: components['schemas']['Note'][];
|
||||||
};
|
};
|
||||||
QueueCount: {
|
QueueCount: {
|
||||||
waiting: number;
|
waiting: number;
|
||||||
|
@ -4875,8 +4875,8 @@ export type components = {
|
||||||
description: string | null;
|
description: string | null;
|
||||||
isPublic: boolean;
|
isPublic: boolean;
|
||||||
favoritedCount: number;
|
favoritedCount: number;
|
||||||
isFavorited?: boolean;
|
isFavorited: boolean;
|
||||||
notesCount?: number;
|
notesCount: number;
|
||||||
};
|
};
|
||||||
FederationInstance: {
|
FederationInstance: {
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
|
@ -4916,7 +4916,7 @@ export type components = {
|
||||||
latestRequestReceivedAt: string | null;
|
latestRequestReceivedAt: string | null;
|
||||||
isNSFW: boolean;
|
isNSFW: boolean;
|
||||||
rejectReports: boolean;
|
rejectReports: boolean;
|
||||||
moderationNote?: string | null;
|
moderationNote: string | null;
|
||||||
};
|
};
|
||||||
GalleryPost: {
|
GalleryPost: {
|
||||||
/**
|
/**
|
||||||
|
@ -4933,21 +4933,21 @@ export type components = {
|
||||||
user: components['schemas']['UserLite'];
|
user: components['schemas']['UserLite'];
|
||||||
title: string;
|
title: string;
|
||||||
description: string | null;
|
description: string | null;
|
||||||
fileIds?: string[];
|
fileIds: string[];
|
||||||
files?: components['schemas']['DriveFile'][];
|
files: components['schemas']['DriveFile'][];
|
||||||
tags?: string[];
|
tags: string[];
|
||||||
isSensitive: boolean;
|
isSensitive: boolean;
|
||||||
likedCount: number;
|
likedCount: number;
|
||||||
isLiked?: boolean;
|
isLiked: boolean;
|
||||||
};
|
};
|
||||||
EmojiSimple: {
|
EmojiSimple: {
|
||||||
aliases: string[];
|
aliases: string[];
|
||||||
name: string;
|
name: string;
|
||||||
category: string | null;
|
category: string | null;
|
||||||
url: string;
|
url: string;
|
||||||
localOnly?: boolean;
|
localOnly: boolean;
|
||||||
isSensitive?: boolean;
|
isSensitive: boolean;
|
||||||
roleIdsThatCanBeUsedThisEmojiAsReaction?: string[];
|
roleIdsThatCanBeUsedThisEmojiAsReaction: string[];
|
||||||
};
|
};
|
||||||
EmojiDetailed: {
|
EmojiDetailed: {
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
|
@ -4982,7 +4982,7 @@ export type components = {
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
visibility: 'private' | 'public';
|
visibility: 'private' | 'public';
|
||||||
likedCount: number | null;
|
likedCount: number | null;
|
||||||
isLiked?: boolean;
|
isLiked: boolean;
|
||||||
};
|
};
|
||||||
Signin: {
|
Signin: {
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -5288,7 +5288,7 @@ export type components = {
|
||||||
maxFileSize: number;
|
maxFileSize: number;
|
||||||
};
|
};
|
||||||
MetaDetailedOnly: {
|
MetaDetailedOnly: {
|
||||||
features?: {
|
features: {
|
||||||
registration: boolean;
|
registration: boolean;
|
||||||
emailRequiredForSignup: boolean;
|
emailRequiredForSignup: boolean;
|
||||||
localTimeline: boolean;
|
localTimeline: boolean;
|
||||||
|
@ -5299,7 +5299,7 @@ export type components = {
|
||||||
objectStorage: boolean;
|
objectStorage: boolean;
|
||||||
serviceWorker: boolean;
|
serviceWorker: boolean;
|
||||||
/** @default true */
|
/** @default true */
|
||||||
miauth?: boolean;
|
miauth: boolean;
|
||||||
};
|
};
|
||||||
proxyAccountName: string | null;
|
proxyAccountName: string | null;
|
||||||
/** @example false */
|
/** @example false */
|
||||||
|
@ -5329,10 +5329,10 @@ export type components = {
|
||||||
name: string;
|
name: string;
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
method: 'email' | 'webhook';
|
method: 'email' | 'webhook';
|
||||||
userId?: string;
|
userId: string;
|
||||||
user?: components['schemas']['UserLite'];
|
user: components['schemas']['UserLite'];
|
||||||
systemWebhookId?: string;
|
systemWebhookId: string;
|
||||||
systemWebhook?: components['schemas']['SystemWebhook'];
|
systemWebhook: components['schemas']['SystemWebhook'];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
responses: never;
|
responses: never;
|
||||||
|
|
Loading…
Add table
Reference in a new issue