lemmy-js-client 0.19.5-alpha.1 → 0.20.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts
CHANGED
@@ -111,7 +111,6 @@ export { GetUnreadCountResponse } from "./types/GetUnreadCountResponse";
|
|
111
111
|
export { GetUnreadRegistrationApplicationCountResponse } from "./types/GetUnreadRegistrationApplicationCountResponse";
|
112
112
|
export { HideCommunity } from "./types/HideCommunity";
|
113
113
|
export { HidePost } from "./types/HidePost";
|
114
|
-
export { ImageDetails } from "./types/ImageDetails";
|
115
114
|
export { Instance } from "./types/Instance";
|
116
115
|
export { InstanceBlockView } from "./types/InstanceBlockView";
|
117
116
|
export { InstanceId } from "./types/InstanceId";
|
package/dist/types/PostView.d.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import type { Community } from "./Community";
|
2
|
-
import type { ImageDetails } from "./ImageDetails";
|
3
2
|
import type { Person } from "./Person";
|
4
3
|
import type { Post } from "./Post";
|
5
4
|
import type { PostAggregates } from "./PostAggregates";
|
@@ -8,7 +7,6 @@ export interface PostView {
|
|
8
7
|
post: Post;
|
9
8
|
creator: Person;
|
10
9
|
community: Community;
|
11
|
-
image_details?: ImageDetails;
|
12
10
|
creator_banned_from_community: boolean;
|
13
11
|
banned_from_community: boolean;
|
14
12
|
creator_is_moderator: boolean;
|
package/package.json
CHANGED