lemmy-js-client 0.15.1-rc.1 → 0.15.4-rc.3

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 {
@@ -53,6 +53,7 @@ export interface Site {
53
53
  require_application: boolean;
54
54
  application_question?: string;
55
55
  private_instance: boolean;
56
+ default_theme: string;
56
57
  }
57
58
  export interface PrivateMessage {
58
59
  id: number;
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.1-rc.1",
4
+ "version": "0.15.4-rc.3",
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.8",
19
+ "@types/node": "^17.0.10",
20
20
  "@types/node-fetch": "^3.0.3",
21
- "@typescript-eslint/eslint-plugin": "^5.9.1",
22
- "@typescript-eslint/parser": "^5.9.1",
23
- "eslint": "^8.6.0",
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.1.7",
27
- "node-fetch": "^3.1.0",
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",