chore: bump version to 2.1

autogen: api types
This commit is contained in:
아르페 2024-02-17 20:44:51 +09:00
parent 699243d440
commit 8d4c296f44
2 changed files with 11 additions and 6 deletions

View file

@ -1,8 +1,8 @@
{
"name": "lycheebridge",
"version": "2024.2.0-beta.1",
"version": "2024.2.1-lyc.0",
"basedCherryPickVersion": "4.7.0-beta.2",
"basedMisskeyVersion": "2024.2.0-beta.10",
"basedMisskeyVersion": "2024.2.0",
"codename": "nasubi",
"repository": {
"type": "git",

View file

@ -4034,10 +4034,6 @@ export type components = {
/** Format: misskey:id */
userListId: string;
}]>;
groupInvited?: {
/** @enum {string} */
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'list' | 'never';
};
quote?: OneOf<[{
/** @enum {string} */
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'never';
@ -4083,6 +4079,15 @@ export type components = {
/** Format: misskey:id */
userListId: string;
}]>;
groupInvited?: OneOf<[{
/** @enum {string} */
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'never';
}, {
/** @enum {string} */
type: 'list';
/** Format: misskey:id */
userListId: string;
}]>;
roleAssigned?: OneOf<[{
/** @enum {string} */
type: 'all' | 'following' | 'follower' | 'mutualFollow' | 'never';