RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
lemmy-js-client
Versions diffs
0.19.2-alpha.1 → 0.19.2-alpha.3
lemmy-js-client 0.19.2-alpha.1 → 0.19.2-alpha.3
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (4)
hide
show
package/dist/types/CommunityAggregates.d.ts
+1
-0
package/dist/types/CreateCommunity.d.ts
+1
-0
package/dist/types/EditCommunity.d.ts
+1
-0
package/package.json
+1
-1
package/dist/types/CommunityAggregates.d.ts
CHANGED
Viewed
@@ -9,4 +9,5 @@ export interface CommunityAggregates {
9
9
users_active_week: number;
10
10
users_active_month: number;
11
11
users_active_half_year: number;
12
+
subscribers_local: number;
12
13
}
package/dist/types/CreateCommunity.d.ts
CHANGED
Viewed
@@ -8,4 +8,5 @@ export interface CreateCommunity {
8
8
nsfw?: boolean;
9
9
posting_restricted_to_mods?: boolean;
10
10
discussion_languages?: Array<LanguageId>;
11
+
local_only?: boolean;
11
12
}
package/dist/types/EditCommunity.d.ts
CHANGED
Viewed
@@ -9,4 +9,5 @@ export interface EditCommunity {
9
9
nsfw?: boolean;
10
10
posting_restricted_to_mods?: boolean;
11
11
discussion_languages?: Array<LanguageId>;
12
+
local_only?: boolean;
12
13
}
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "lemmy-js-client",
3
-
"version": "0.19.2-alpha.
1
",
3
+
"version": "0.19.2-alpha.
3
",
4
4
"description": "A javascript / typescript client for Lemmy",
5
5
"repository": "https://github.com/LemmyNet/lemmy-js-client",
6
6
"license": "AGPL-3.0",