lemmy-js-client 0.15.4-rc.1 → 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-rc.1",
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",