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