lemmy-js-client 0.20.0-private-community.6 → 0.20.0-private-community.9
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,9 @@
|
|
1
|
+
import type { Community } from "./Community";
|
1
2
|
import type { Person } from "./Person";
|
3
|
+
import type { SubscribedType } from "./SubscribedType";
|
2
4
|
export interface PendingFollow {
|
3
5
|
person: Person;
|
6
|
+
community: Community;
|
4
7
|
is_new_instance: boolean;
|
8
|
+
subscribed: SubscribedType;
|
5
9
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
3
|
"description": "A javascript / typescript client for Lemmy",
|
4
|
-
"version": "0.20.0-private-community.
|
4
|
+
"version": "0.20.0-private-community.9",
|
5
5
|
"author": "Dessalines <tyhou13@gmx.com>",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"main": "./dist/index.js",
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"typescript": "^5.5.4",
|
36
36
|
"typescript-eslint": "^8.7.0"
|
37
37
|
},
|
38
|
-
"packageManager": "pnpm@9.12.
|
38
|
+
"packageManager": "pnpm@9.12.3",
|
39
39
|
"types": "./dist/index.d.ts",
|
40
40
|
"lint-staged": {
|
41
41
|
"*.{ts,tsx,js}": [
|