merge develop and fix conflicts.
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
"strictFunctionTypes": true,
|
||||
"strictNullChecks": true,
|
||||
"esModuleInterop": true,
|
||||
"incremental": true,
|
||||
"lib": [
|
||||
"esnext",
|
||||
]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "module",
|
||||
"name": "misskey-js",
|
||||
"version": "2025.4.2-rc",
|
||||
"version": "2025.5.0-dev",
|
||||
"description": "Misskey SDK for JavaScript",
|
||||
"license": "MIT",
|
||||
"main": "./built/index.js",
|
||||
|
||||
@@ -3840,7 +3840,7 @@ declare module '../api.js' {
|
||||
/**
|
||||
* No description provided.
|
||||
*
|
||||
* **Credential required**: *Yes* / **Permission**: *read:account*
|
||||
* **Credential required**: *No*
|
||||
*/
|
||||
request<E extends 'notes/polls/recommendation', P extends Endpoints[E]['req']>(
|
||||
endpoint: E,
|
||||
|
||||
@@ -3317,7 +3317,7 @@ export type paths = {
|
||||
* notes/polls/recommendation
|
||||
* @description No description provided.
|
||||
*
|
||||
* **Credential required**: *Yes* / **Permission**: *read:account*
|
||||
* **Credential required**: *No*
|
||||
*/
|
||||
post: operations['notes___polls___recommendation'];
|
||||
};
|
||||
@@ -5295,6 +5295,7 @@ export type components = {
|
||||
rejectReports: boolean;
|
||||
rejectQuotes: boolean;
|
||||
moderationNote?: string | null;
|
||||
isBubbled: boolean;
|
||||
};
|
||||
GalleryPost: {
|
||||
/**
|
||||
@@ -11210,6 +11211,7 @@ export type operations = {
|
||||
}]>;
|
||||
};
|
||||
isModerator: boolean;
|
||||
isAdministrator: boolean;
|
||||
isSystem: boolean;
|
||||
isSilenced: boolean;
|
||||
isSuspended: boolean;
|
||||
@@ -12919,6 +12921,9 @@ export type operations = {
|
||||
content: {
|
||||
'application/json': {
|
||||
uri: string;
|
||||
expandCollectionItems?: boolean;
|
||||
expandCollectionLimit?: number | null;
|
||||
allowAnonymous?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -27495,7 +27500,7 @@ export type operations = {
|
||||
* notes/polls/recommendation
|
||||
* @description No description provided.
|
||||
*
|
||||
* **Credential required**: *Yes* / **Permission**: *read:account*
|
||||
* **Credential required**: *No*
|
||||
*/
|
||||
notes___polls___recommendation: {
|
||||
requestBody: {
|
||||
@@ -27507,6 +27512,10 @@ export type operations = {
|
||||
offset?: number;
|
||||
/** @default false */
|
||||
excludeChannels?: boolean;
|
||||
/** @default null */
|
||||
local?: boolean | null;
|
||||
/** @default false */
|
||||
expired?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"esModuleInterop": true,
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"skipLibCheck": true,
|
||||
"incremental": true,
|
||||
"typeRoots": [
|
||||
"./node_modules/@types"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user