1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-17 21:55:31 +02:00

Merge branch 'develop' into copilot/add-user-mute-settings

This commit is contained in:
かっこかり
2025-11-09 13:05:32 +09:00
committed by GitHub
18 changed files with 2256 additions and 2486 deletions

View File

@@ -7,16 +7,16 @@
"generate": "tsx src/generator.ts && eslint ./built/**/*.ts --fix"
},
"devDependencies": {
"@readme/openapi-parser": "5.0.2",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@readme/openapi-parser": "5.2.0",
"@types/node": "24.9.2",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"openapi-types": "12.1.3",
"openapi-typescript": "7.9.1",
"openapi-typescript": "7.10.1",
"ts-case-convert": "2.1.0",
"tsx": "4.20.6",
"typescript": "5.9.3",
"eslint": "9.27.0"
"eslint": "9.39.0"
},
"files": [
"built"

View File

@@ -37,12 +37,12 @@
"directory": "packages/misskey-js"
},
"devDependencies": {
"@microsoft/api-extractor": "7.53.1",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@microsoft/api-extractor": "7.53.3",
"@types/node": "24.9.2",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"@vitest/coverage-v8": "3.2.4",
"esbuild": "0.25.10",
"esbuild": "0.25.11",
"execa": "9.6.0",
"glob": "11.0.3",
"ncp": "2.0.0",

View File

@@ -36648,9 +36648,11 @@ export interface operations {
/** @default 10 */
limit?: number;
page?: number;
/** @default [
/**
* @default [
* "-id"
* ] */
* ]
*/
sortKeys?: ('+id' | '-id' | '+updatedAt' | '-updatedAt' | '+name' | '-name' | '+host' | '-host' | '+uri' | '-uri' | '+publicUrl' | '-publicUrl' | '+type' | '-type' | '+aliases' | '-aliases' | '+category' | '-category' | '+license' | '-license' | '+isSensitive' | '-isSensitive' | '+localOnly' | '-localOnly' | '+roleIdsThatCanBeUsedThisEmojiAsReaction' | '-roleIdsThatCanBeUsedThisEmojiAsReaction')[];
};
};