lemmy-js-client 0.20.0-remove-aggregate-tables.3 → 0.20.0-remove-aggregate-tables.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
@@ -184,7 +184,6 @@ export { LocalSiteUrlBlocklist } from "./types/LocalSiteUrlBlocklist";
|
|
184
184
|
export { LocalUser } from "./types/LocalUser";
|
185
185
|
export { LocalUserId } from "./types/LocalUserId";
|
186
186
|
export { LocalUserView } from "./types/LocalUserView";
|
187
|
-
export { LocalUserVoteDisplayMode } from "./types/LocalUserVoteDisplayMode";
|
188
187
|
export { LockPost } from "./types/LockPost";
|
189
188
|
export { Login } from "./types/Login";
|
190
189
|
export { LoginResponse } from "./types/LoginResponse";
|
@@ -1,11 +1,9 @@
|
|
1
1
|
import type { LocalUser } from "./LocalUser";
|
2
|
-
import type { LocalUserVoteDisplayMode } from "./LocalUserVoteDisplayMode";
|
3
2
|
import type { Person } from "./Person";
|
4
3
|
/**
|
5
4
|
* A local user view.
|
6
5
|
*/
|
7
6
|
export type LocalUserView = {
|
8
7
|
local_user: LocalUser;
|
9
|
-
local_user_vote_display_mode: LocalUserVoteDisplayMode;
|
10
8
|
person: Person;
|
11
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-remove-aggregate-tables.
|
4
|
+
"version": "0.20.0-remove-aggregate-tables.4",
|
5
5
|
"author": "Dessalines",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"main": "./dist/index.js",
|