lemmy-js-client 0.17.0-rc.44 → 0.17.0-rc.45
Sign up to get free protection for your applications and to get access to all the features.
@@ -74,6 +74,7 @@ export declare class CreateSite {
|
|
74
74
|
private_instance: Option<boolean>;
|
75
75
|
default_theme: Option<string>;
|
76
76
|
default_post_listing_type: Option<string>;
|
77
|
+
application_email_admins: Option<boolean>;
|
77
78
|
hide_modlog_mod_names: Option<boolean>;
|
78
79
|
auth: string;
|
79
80
|
constructor(init: CreateSite);
|
@@ -95,6 +96,7 @@ export declare class EditSite {
|
|
95
96
|
default_theme: Option<string>;
|
96
97
|
legal_information: Option<string>;
|
97
98
|
default_post_listing_type: Option<string>;
|
99
|
+
application_email_admins: Option<boolean>;
|
98
100
|
hide_modlog_mod_names: Option<boolean>;
|
99
101
|
auth: string;
|
100
102
|
constructor(init: EditSite);
|
@@ -428,7 +428,7 @@ var CreateSite = /** @class */ (function () {
|
|
428
428
|
return (0, utils_1.toUndefined)(value);
|
429
429
|
}, { toPlainOnly: true }),
|
430
430
|
(0, class_transformer_1.Expose)()
|
431
|
-
], CreateSite.prototype, "
|
431
|
+
], CreateSite.prototype, "application_email_admins", void 0);
|
432
432
|
return CreateSite;
|
433
433
|
}());
|
434
434
|
exports.CreateSite = CreateSite;
|
@@ -622,7 +622,7 @@ var EditSite = /** @class */ (function () {
|
|
622
622
|
return (0, utils_1.toUndefined)(value);
|
623
623
|
}, { toPlainOnly: true }),
|
624
624
|
(0, class_transformer_1.Expose)()
|
625
|
-
], EditSite.prototype, "
|
625
|
+
], EditSite.prototype, "application_email_admins", void 0);
|
626
626
|
return EditSite;
|
627
627
|
}());
|
628
628
|
exports.EditSite = EditSite;
|
package/package.json
CHANGED