lemmy-js-client 0.15.0 → 0.15.4-rc.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -69,6 +69,7 @@ export interface CreateSite {
|
|
69
69
|
require_application?: boolean;
|
70
70
|
application_question?: string;
|
71
71
|
private_instance?: boolean;
|
72
|
+
default_theme?: string;
|
72
73
|
auth: string;
|
73
74
|
}
|
74
75
|
export interface EditSite {
|
@@ -85,6 +86,7 @@ export interface EditSite {
|
|
85
86
|
require_application?: boolean;
|
86
87
|
application_question?: string;
|
87
88
|
private_instance?: boolean;
|
89
|
+
default_theme?: string;
|
88
90
|
auth: string;
|
89
91
|
}
|
90
92
|
export interface GetSite {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
3
|
"description": "A javascript / typescript client for Lemmy",
|
4
|
-
"version": "0.15.
|
4
|
+
"version": "0.15.4-rc.2",
|
5
5
|
"author": "Dessalines <tyhou13@gmx.com>",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"main": "./dist/index.js",
|
@@ -16,15 +16,15 @@
|
|
16
16
|
},
|
17
17
|
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
18
18
|
"devDependencies": {
|
19
|
-
"@types/node": "^17.0.
|
19
|
+
"@types/node": "^17.0.10",
|
20
20
|
"@types/node-fetch": "^3.0.3",
|
21
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
22
|
-
"@typescript-eslint/parser": "^5.
|
23
|
-
"eslint": "^8.
|
21
|
+
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
22
|
+
"@typescript-eslint/parser": "^5.10.0",
|
23
|
+
"eslint": "^8.7.0",
|
24
24
|
"eslint-plugin-prettier": "^4.0.0",
|
25
25
|
"husky": "^7.0.4",
|
26
|
-
"lint-staged": "^12.
|
27
|
-
"node-fetch": "^3.1.
|
26
|
+
"lint-staged": "^12.2.2",
|
27
|
+
"node-fetch": "^3.1.1",
|
28
28
|
"prettier": "^2.5.0",
|
29
29
|
"prettier-plugin-import-sort": "^0.0.7",
|
30
30
|
"prettier-plugin-organize-imports": "^2.3.4",
|