RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
lemmy-js-client
Versions diffs
0.19.4 → 0.20.0-alpha.1
lemmy-js-client 0.19.4 → 0.20.0-alpha.1
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (3)
hide
show
package/dist/types/BanFromCommunity.d.ts
+1
-1
package/dist/types/BanPerson.d.ts
+1
-1
package/package.json
+1
-1
package/dist/types/BanFromCommunity.d.ts
CHANGED
Viewed
@@ -4,7 +4,7 @@ export interface BanFromCommunity {
4
4
community_id: CommunityId;
5
5
person_id: PersonId;
6
6
ban: boolean;
7
-
remove_data
?: boolean;
7
+
remove_or_restore_data
?: boolean;
8
8
reason?: string;
9
9
expires?: number;
10
10
}
package/dist/types/BanPerson.d.ts
CHANGED
Viewed
@@ -2,7 +2,7 @@ import type { PersonId } from "./PersonId";
2
2
export interface BanPerson {
3
3
person_id: PersonId;
4
4
ban: boolean;
5
-
remove_data
?: boolean;
5
+
remove_or_restore_data
?: boolean;
6
6
reason?: string;
7
7
expires?: number;
8
8
}
package/package.json
CHANGED
Viewed
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "lemmy-js-client",
3
3
"description": "A javascript / typescript client for Lemmy",
4
-
"version": "0.
19
.
4
",
4
+
"version": "0.
20
.
0-alpha.1
",
5
5
"author": "Dessalines <tyhou13@gmx.com>",
6
6
"license": "AGPL-3.0",
7
7
"main": "./dist/index.js",