lemmy-js-client 0.19.0-rc.3 → 0.19.0-rc.7
Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts
CHANGED
@@ -194,6 +194,7 @@ export { PostFeatureType } from "./types/PostFeatureType";
|
|
194
194
|
export { PostId } from "./types/PostId";
|
195
195
|
export { PostJoin } from "./types/PostJoin";
|
196
196
|
export { PostJoinResponse } from "./types/PostJoinResponse";
|
197
|
+
export { PostListingMode } from "./types/PostListingMode";
|
197
198
|
export { PostOrCommentId } from "./types/PostOrCommentId";
|
198
199
|
export { PostReport } from "./types/PostReport";
|
199
200
|
export { PostReportId } from "./types/PostReportId";
|
package/dist/types/AddAdmin.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import type { ListingType } from "./ListingType";
|
2
2
|
import type { LocalUserId } from "./LocalUserId";
|
3
3
|
import type { PersonId } from "./PersonId";
|
4
|
+
import type { PostListingMode } from "./PostListingMode";
|
4
5
|
import type { SortType } from "./SortType";
|
5
6
|
export interface LocalUser {
|
6
7
|
id: LocalUserId;
|
@@ -26,4 +27,5 @@ export interface LocalUser {
|
|
26
27
|
auto_expand: boolean;
|
27
28
|
infinite_scroll_enabled: boolean;
|
28
29
|
admin: boolean;
|
30
|
+
post_listing_mode: PostListingMode;
|
29
31
|
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export type PostListingMode = "List" | "Card" | "SmallCard";
|