add url to reaction entity

This commit is contained in:
ThatOneCalculator 2023-03-24 12:42:17 -07:00 committed by Laura Hausmann
parent 5931afd048
commit ee8d042bb8
Signed by: zotan
GPG key ID: D044E84C5BE01605
4 changed files with 7 additions and 1 deletions

4
megalodon/.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,4 @@
{
"editor.tabCompletion": "on",
"diffEditor.codeLens": true
}

View file

@ -1,7 +1,7 @@
{ {
"name": "@calckey/megalodon", "name": "@calckey/megalodon",
"private": false, "private": false,
"version": "5.1.22", "version": "5.1.23",
"description": "Mastodon+Calckey API client for node.js and browser", "description": "Mastodon+Calckey API client for node.js and browser",
"main": "./lib/src/index.js", "main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts", "typings": "./lib/src/index.d.ts",

View file

@ -5,6 +5,7 @@ namespace Entity {
count: number count: number
me: boolean me: boolean
name: string name: string
url?: string
accounts?: Array<Account> accounts?: Array<Account>
} }
} }

View file

@ -5,6 +5,7 @@ namespace MisskeyEntity {
id: string id: string
createdAt: string createdAt: string
user: User user: User
url?: string
type: string type: string
} }
} }