lemmy-js-client 0.15.0-rc.33 → 0.15.0-rc.34
Sign up to get free protection for your applications and to get access to all the features.
@@ -51,6 +51,9 @@ export interface BanFromCommunity {
|
|
51
51
|
*/
|
52
52
|
remove_data?: boolean;
|
53
53
|
reason?: string;
|
54
|
+
/**
|
55
|
+
* The expire time in Unix seconds
|
56
|
+
*/
|
54
57
|
expires?: number;
|
55
58
|
auth: string;
|
56
59
|
}
|
@@ -91,6 +94,9 @@ export interface RemoveCommunity {
|
|
91
94
|
community_id: number;
|
92
95
|
removed: boolean;
|
93
96
|
reason?: string;
|
97
|
+
/**
|
98
|
+
* The expire time in Unix seconds
|
99
|
+
*/
|
94
100
|
expires?: number;
|
95
101
|
auth: string;
|
96
102
|
}
|
package/package.json
CHANGED