lemmy-js-client 1.0.0-site-person-ban.0 → 1.0.0-site-person-ban.1
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/types/CommentReplyView.d.ts +1 -0
- package/dist/types/CommentSlimView.d.ts +1 -0
- package/dist/types/CommentView.d.ts +1 -0
- package/dist/types/PersonCommentMentionView.d.ts +1 -0
- package/dist/types/PersonPostMentionView.d.ts +1 -0
- package/dist/types/PersonView.d.ts +1 -0
- package/dist/types/PostView.d.ts +1 -0
- package/dist/types/SiteView.d.ts +2 -0
- package/package.json +1 -1
@@ -21,6 +21,7 @@ export type CommentReplyView = {
|
|
21
21
|
comment_actions?: CommentActions;
|
22
22
|
person_actions?: PersonActions;
|
23
23
|
instance_actions?: InstanceActions;
|
24
|
+
home_instance_actions?: InstanceActions;
|
24
25
|
creator_community_actions?: CommunityActions;
|
25
26
|
creator_is_admin: boolean;
|
26
27
|
can_mod: boolean;
|
@@ -18,6 +18,7 @@ export type CommentView = {
|
|
18
18
|
comment_actions?: CommentActions;
|
19
19
|
person_actions?: PersonActions;
|
20
20
|
instance_actions?: InstanceActions;
|
21
|
+
home_instance_actions?: InstanceActions;
|
21
22
|
creator_community_actions?: CommunityActions;
|
22
23
|
creator_is_admin: boolean;
|
23
24
|
can_mod: boolean;
|
@@ -21,6 +21,7 @@ export type PersonCommentMentionView = {
|
|
21
21
|
comment_actions?: CommentActions;
|
22
22
|
person_actions?: PersonActions;
|
23
23
|
instance_actions?: InstanceActions;
|
24
|
+
home_instance_actions?: InstanceActions;
|
24
25
|
creator_community_actions?: CommunityActions;
|
25
26
|
creator_is_admin: boolean;
|
26
27
|
can_mod: boolean;
|
@@ -21,6 +21,7 @@ export type PersonPostMentionView = {
|
|
21
21
|
person_actions?: PersonActions;
|
22
22
|
post_actions?: PostActions;
|
23
23
|
instance_actions?: InstanceActions;
|
24
|
+
home_instance_actions?: InstanceActions;
|
24
25
|
creator_community_actions?: CommunityActions;
|
25
26
|
creator_is_admin: boolean;
|
26
27
|
can_mod: boolean;
|
package/dist/types/PostView.d.ts
CHANGED
@@ -18,6 +18,7 @@ export type PostView = {
|
|
18
18
|
person_actions?: PersonActions;
|
19
19
|
post_actions?: PostActions;
|
20
20
|
instance_actions?: InstanceActions;
|
21
|
+
home_instance_actions?: InstanceActions;
|
21
22
|
creator_community_actions?: CommunityActions;
|
22
23
|
creator_is_admin: boolean;
|
23
24
|
can_mod: boolean;
|
package/dist/types/SiteView.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import type { Instance } from "./Instance";
|
1
2
|
import type { LocalSite } from "./LocalSite";
|
2
3
|
import type { LocalSiteRateLimit } from "./LocalSiteRateLimit";
|
3
4
|
import type { Site } from "./Site";
|
@@ -8,4 +9,5 @@ export type SiteView = {
|
|
8
9
|
site: Site;
|
9
10
|
local_site: LocalSite;
|
10
11
|
local_site_rate_limit: LocalSiteRateLimit;
|
12
|
+
instance: Instance;
|
11
13
|
};
|
package/package.json
CHANGED